/* General Styles */
body {
   

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    font-family: "Raleway", sans-serif;
    
    background-color: rgb(244,245,255);
   
}
.raleway-unique {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600; /* Example weight, you can change it as needed */
    font-style: normal;
  }

a {
    text-decoration: none;
    color: inherit;
}
 p{
    font-size: 20px;
 }


.navbar {
    background-color: #fdfeff;
    color: rgb(5, 5, 5);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 999;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    font-size: large;
    font-weight: 500;
    font-family: "Raleway", sans-serif;
    color: #060606;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #e87a05;
}

/* Add caret to dropdown */
.navbar ul li.dropdown > a::after {
    content: '\f0d7'; /* Font Awesome down arrow (caret) */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
}

.navbar ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fbfcfd;
    display: none;
    list-style: none;
    z-index: 998;
}

.navbar ul li:hover ul {
    display: block;
}

.navbar ul li ul li a {
    padding: 0.5rem 1rem;
    width: 200px;
    text-align: left;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgb(12, 12, 12);
}

@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column; /* Keep this to stack items vertically */
        position: absolute;
        top: 70%;
        left: 0;
        background-color: #fdfefe;
        color: #000;
        width: 100%;
    
        display: none;
        z-index: 100;
        padding: 1rem 0; /* Add padding for better spacing */
    }

    .navbar ul.active {
        display: flex;
        flex-direction: column; /* Ensure items stack vertically */
        align-items: flex-start; /* Align items to the left */
    }

    .navbar ul li {
        width: 100%; /* Make each item full width */
    }

    .navbar ul li a {
        width: 100%; /* Make links full width for easier clicking */
        text-align: left; /* Align text to the left */
    }

    .navbar ul li ul {
        position: static; /* Ensure dropdowns are aligned properly */
    }

    .navbar ul li ul li a {
        padding: 0.5rem 1rem; /* Keep padding for dropdowns */
    }

    .menu-toggle {
        display: block;
    }
}


.section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f50;
    padding: 10px;
}
.text {
    color: white;
    font-size: 20px;
    margin-right: 20px;
}
.button {
    background-color: white;
    color: #f50;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #ff7043;
}
@media (max-width: 600px) {
    .text {
        font-size: 16px;
    }
    .button {
        font-size: 16px;
        padding: 8px 16px;
    }
}

/* Navbar Styles */

/* Hero Section Styles */

.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Green overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(78,90,246, 0.8); /* Semi-transparent green overlay */
    z-index: 0;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
}

.btn {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #ff6347;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff4500;
}

/* Responsive Design */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .btn {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}




@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    
    .hero-content h1 {
        transform: translateY(-20px);
        font-size: 2.5em;
    }
    .hero-content p {
        transform: translateY(-20px);
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .hero-section{
        min-height: 50vh;
    }
    .hero{
        height: 30vh;
    }
    .hero-content h1 {
        transform: translateY(-40px);
        font-size: 2em;
    }
    .hero-content p {
        transform: translateY(-40px);
        font-size: 1.1em;
    }
    .hero-content button {
        transform: translateY(-40px);
        padding: 10px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero-section{
        min-height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 1.8em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .hero-content button {
        padding: 8px 20px;
        font-size: 0.9em;
    }
}

  













/* Responsive Styles */

/* Animation Styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Styles */

/* Tablets (Portrait, 768px and up) */
/* Tablets (Portrait, 768px and up) */
@media (max-width: 768px) {
    
    *, *::before, *::after {
        box-sizing: border-box;
      } /* for removing sidebar scrolling*/
}
/* Mobile Devices (Portrait, 480px and up) */
@media (max-width: 480px) {
    *, *::before, *::after {
        box-sizing: border-box;
      } /* for removing sidebar scrolling*/
  
    .hero{
        margin-bottom: 270px;
    }
    .hero-section{
        height: 30vh;
        display: flex;  
        flex-direction: column;  
        justify-content: flex-start;
       
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-content {
        margin-top: 150px;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero-image {
        height: 200px;
    }
    .a{
        margin-top: 40px;
    }}


    /* first section */

    .cs {
        width: 100%;
        margin: 50px auto;
        box-sizing: border-box;
    }
    
    .company-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
     
        padding: 20px;
        gap: 0; /* Ensure no space between image and text */
        flex-wrap: wrap;
    }
    
    .text-container {
        flex: 1;
        padding-right: 20px; /* Some padding on the right to create space between text and image */
    }
    
    .text-container h2 {
        font-size: 25px;
        color: rgb(254, 74, 10);
        font-family: "Raleway", sans-serif;
        margin-bottom: 15px;
        font-weight: bold;
    }
    
    .text-container p {
        text-align: justify;
        font-size: 28px;
        font-family: "Raleway", sans-serif;
        margin-bottom: 20px;
    }
    
    .image-container {
        flex: 1;
        text-align: right;
    }
    
    .image-container img {
        width: 60%; /* Ensure the image takes up the full width of its container */
        height: auto; /* Maintain the aspect ratio */
        object-fit: cover; /* Ensures the image covers the container completely */
        margin: 0; /* No margin on the image */
        padding: 0; /* No padding on the image */
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .company-section {
            flex-direction: column;
            align-items: flex-start;
        }
    
        .text-container {
            text-align: center;
            padding-right: 0;
        }
    
        .image-container {
            text-align: center;
        }
    
        .image-container img {
            width: 100%;
            max-width: 600px;
        }
    }
    
    @media (max-width: 768px) {
        .text-container h2 {
            font-size: 22px;
        }
    
        .text-container p {
            font-size: 16px;
        }
    
        .image-container img {
            width: 100%;
            max-width: 100%;
        }
    }
    
    @media (max-width: 480px) {
        .text-container h2 {
            font-size: 20px;
        }
    
        .text-container p {
            font-size: 14px;
        }
    
        .company-section {
            padding: 15px;
        }
    
        .image-container img {
            width: 100%;
            max-width: 100%;
        }
    }
    
    
  
  .company-section {
    margin: 10% auto 5%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 50px auto;
    width: 90%;
    max-width: 1200px;
  
    gap: 20px;
    flex-wrap: wrap;
}

.benefits-section {
    flex: 1;
}

.image-container {
    flex: 1;
    max-width: 100%;
}

.image-container img {
    width: 100%; /* Set to 100% to fill the container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px;
}

.text-container h2 {
    font-family: "Raleway", sans-serif;
    font-size: 25px;
    margin: 30px auto;
    color: rgb(254, 74, 10);
    font-weight: bold;
}

.benefits-list {
    list-style: none;
    padding: 0;
    font-size: 16px;
    text-align: left;
}

.benefits-list li {
    font-weight: 500;
    font-family: "Raleway", sans-serif;
    color: #000;
    margin-bottom: 10px;
    font-size: 19px;
}

.benefit-title {
    font-weight: bold;
    color: rgb(254, 74, 10);
}

/* Responsive Styling */
@media (max-width: 768px) {
    .company-section {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
        text-align: center;
    }

    .benefits-section,
    .image-container {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .image-container img {
        width: 100%; /* Full width for mobile screens */
        height: auto; /* Maintain aspect ratio */
        border-radius: 5px;
    }

    .text-container h2 {
        font-size: 24px; /* Adjust font size for better readability */
    }

    .text-container p {
        font-size: 18px; /* Adjust paragraph font size for mobile */
    }
}




.one{
    width: 78%;
  
    margin: 20px auto;
    padding-top: 40px ;
}
.section-heading {
    text-align: center;
    font-family: "Raleway", sans-serif;
    font-size: 25px;
    color: #fe4a0a; 
    /* Adjust the color to match your theme */
    margin-bottom: 20px;

    font-weight: bold;
}

 
.stats-container {
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
}

.stat-module {
    flex: 1 1 calc(25% - 20px); /* Adjusts width for four modules per row */
    background-color: rgb(244,245,255);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.stat-module:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #fe4a0a;
    margin-bottom: 5px;
}


.stat-number img{


    height: 50px;
    width: 50px;
}
.stat-label {
    display: block;
    font-size: 19px;
    color: #0a0a0a;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .stat-module {
        flex: 1 1 calc(33.33% - 20px); /* Adjusts to three modules per row */
    }
}

@media (max-width: 768px) {
    .stat-module {
        flex: 1 1 calc(50% - 20px); /* Adjusts to two modules per row */
    }
}

@media (max-width: 480px) {
    .stat-module {
        flex: 1 1 100%; /* Full width for smaller screens */
    }
}



/* Main section styling */
/* Main section styling */
.kinetech-process {
    padding: 20px;
    margin: 50px 0;
    width: 80%;
}

/* Container for text and circles */
.process-content {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    background-color: #e1e1ff;
    margin: 50px auto;
}

/* Text container styling */
.text-container {
    flex: 1;
    max-width: 400px;
}

.text-container h1 { font-weight: 600;
    font-family: "Raleway", sans-serif;
    font-size: 25px;
    color: #fe4a0a;
    font-weight: bold;
    margin-bottom: 10px;
}

.text-container p {
    font-size: 15px;
    color: rgb(8, 8, 8);
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
}

/* Circle module styling */
.process-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center; /* Centering modules */
    flex: 2;
}

.process-module {
    background-color: rgb(254, 74, 10);
    border-radius: 50%;
    padding: 20px;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: white;
}

.module-number {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.process-module p {
    font-size: 13px;
    text-align: center;
    font-weight: 400;
font-family: "Raleway", sans-serif;
}

/* Responsive design for tablets and smaller screens */
@media (max-width: 1024px) {
    .process-content {
        flex-direction: column;
        margin: 30px auto;
        align-items:flex-start;
    }

    .text-container {
        text-align:left;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .process-modules {
        justify-content: center;
    }
}

/* Responsive design for mobile screens */
@media (max-width: 600px) {
    .process-module {
        width: 150px;
        height: 150px;
        padding: 15px;
        
        
    }

    .module-number {
        font-size: 28px;
    }

    .process-module p {
        font-size: 12px;
    }

    .text-container p {
        font-size: 14px;
    }
}


/* Main section styling */
.expertise-section {
    width: 76%;
    margin: 50px auto;
    padding: 40px 20px;
   
}

/* Container for the heading and subheadings */
.expertise-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Main heading styling */
.main-heading {
    font-family: "Raleway", sans-serif;
    font-size: 38px;
    font-weight: bold;
    color: #fe4a0a; /* Highlight color for the heading */
    margin-bottom: 30px;
}

/* Subheadings container */
.subheadings-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}

/* Subheading item styling */
.subheading-item {
    flex: 1 1 calc(50% - 40px); /* Each item takes half the width, minus the gap */
    min-width: 280px; /* Minimum width for smaller screens */
   
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.subheading-item:hover {
    transform: translateY(-10px); /* Hover effect for interactivity */
}

.subheading-item h3 {
    font-size: 25px;
    margin-bottom: 10px;
    color: #333; 
    font-weight: 600;
    font-family: "Raleway", sans-serif;
}

.subheading-item p {
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-size: 24px;
    color: #050505;
    line-height: 1.5;
}

/* Responsive design for tablets and smaller screens */
@media (max-width: 1024px) {
    .subheading-item {
        flex: 1 1 calc(100% - 20px); /* Each item takes full width on tablets */
    }

    .main-heading {
        font-size: 28px;
    }
}

/* Responsive design for mobile screens */
@media (max-width: 600px) {
    .expertise-section {
        padding: 20px; /* Reduce padding on mobile */
        width: 90%; /* Make section width 90% for better alignment */
    }

    .subheading-item {
        flex: 1 1 100%; /* Each item takes full width on mobile */
        padding: 15px; /* Maintain padding */
    }

    .subheading-item h3 {
        font-size: 18px;
    }

    .subheading-item p {
        font-size: 16px; /* Adjust font size for better readability */
    }

    .main-heading {
        font-size: 24px; /* Adjust main heading size for mobile */
    }
}




















.solution-section {
    padding: 50px 20px;
   
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

.solution-section h2 {
    font-size: 25px;
    color:rgb(254,74,10);
    font-weight: 600;
    
    font-family: "Raleway", sans-serif;
    margin: 50px auto;
}

.solution-section p {
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

/* Grid layout for solutions */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns by default */
    gap: 30px;
    justify-items: center;
}

/* Solution box styles */
.solution-box {
  
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.solution-box i {
    font-size: 40px;
    color: rgba(78,90,246,0.7); /* Icon color */
    margin-bottom: 15px;
}

.solution-box h3 {
    font-size: 20px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    color: #333;
    margin: 50px auto;
  
}

.solution-box p {
    font-weight: 400;

    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles */

/* For large tablets (below 1024px) */
@media (max-width: 1024px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }

    .solution-section h2 {
        font-size: 24px;
    }

    .solution-section p {
        font-size: 15px;
    }
}

/* For small tablets and mobile (below 768px) */
@media (max-width: 768px) {
    .solution-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
    }

    .solution-section h2 {
        font-size: 22px;
    }

    .solution-section p {
        font-size: 14px;
    }
}



/* Main section styling */
/* General Styling */
.content-section {
    padding: 40px 20px;
  
    width: 76%;
    margin: 50px auto;
}

/* Container for text and image */
.content-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* Text container styling */
.text-container {
    flex: 1;
    min-width: 280px; /* Minimum width to ensure readability on small screens */
}

/* Main heading styling */
.main-heading {
    font-family: "Raleway", sans-serif;
    font-weight: bold;
    font-size: 25px;
    color: #fe4a0a; /* Accent color */
    margin-bottom: 15px;
}

/* Subheading styling */
.sub-heading {
    font-size: 25px;
    line-height: 1.5;
    color: #0e0e0e;
    margin-bottom: 20px;
}

/* Paragraph styling */
.description {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #080808;
    text-align: justify;
}

.description p {
    font-size: 1.2rem;
}

/* Image container styling */
.image-container {
    flex: 1;
    min-width: 280px;
}

/* Image styling */
.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Responsive Adjustments */

/* For tablets and smaller desktops */
@media (max-width: 1024px) {
    .main-heading {
        font-size: 26px;
    }

    .sub-heading {
        font-size: 20px;
    }

    .description {
        font-size: 1.1rem;
    }
}

/* For mobile devices (up to 768px) */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column; /* Stacks text and image on smaller screens */
    }

    .text-container {
        order: 1; /* Ensures the text appears above the image */
    }

    .image-container {
        order: 2;
        margin-top: 20px;
    }

    .main-heading {
        font-size: 24px;
    }

    .sub-heading {
        font-size: 18px;
    }

    .description {
        font-size: 1rem;
    }
}

/* For small mobile devices (up to 480px) */
@media (max-width: 480px) {
    .content-section {
        width: 90%;
        padding: 20px 10px;
        margin: 30px auto;
    }

    .main-heading {
        font-size: 22px;
    }

    .sub-heading {
        font-size: 16px;
    }

    .description {
        font-size: 14px;
        line-height: 1.4;
    }

    .image-container {
        margin-top: 15px;
    }
}

/* For very small mobile devices (up to 320px) */
@media (max-width: 320px) {
    .content-section {
        width: 95%;
        padding: 15px 5px;
        margin: 20px auto;
    }

    .main-heading {
        font-size: 20px;
    }

    .sub-heading {
        font-size: 14px;
    }

    .description {
        font-size: 12px;
        line-height: 1.3;
    }

    .image-container {
        margin-top: 10px;
    }
}

.value-proposition-section {
    margin: 20px auto;
     
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    width: 73%;
   
}

.image-content1 img {
    
    max-width: 550px;
    width: 100%;
    height: auto;
    background-color: #ccc;
    margin-right: 20px;
}

.text-content {
    flex: 1;
    padding-right: 30px;
}

.text-content h1 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
    color: rgb(254,74,10);
    font-weight: 600;
    font-family: "Raleway", sans-serif;
}

.text-content p {
    font-size: 1rem;
    text-align: justify;
    line-height: 1.6;
    color: #0b0b0b;
    font-size: 1.2rem;
    margin-bottom: 20px; font-weight: 400;
    font-family: "Raleway", sans-serif;
}

.contact-info {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-content img {
    
    max-width: 300px;
    height: auto;
    background-color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .value-proposition-section {
        flex-direction: column;
        width: 80%;
        text-align: center;
        justify-content: center;
       margin: 40px auto;
       
       
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .image-content img {
        max-width: 300px;
    }
    .image-content1 img {
    
        max-width: 250px;
        
    }
}

@media (max-width: 480px) {
    .text-content h1 {
        margin-top: 10px;
        font-size: 1.2rem;
    }

    .text-content p {
        font-size: 0.95rem;
    }

    .image-content img {
        max-width: 100%;
    }
}




/* Main section styling */
.interactive-section {
    padding: 40px 20px;

    width: 76%;
    margin: 50px auto;
}

/* Wrapper for the bullet sections */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* Styling for individual bullet sections */
.bullet-section {
    flex: 1;
    min-width: 280px;
    padding: 20px;
    background-color: rgb(244, 245, 255);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Heading styling */
.bullet-section h2 {
    font-size: 25px;
    color: rgb(254, 74, 10);
    margin-bottom: 15px;
    text-align: left;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
}

/* Bullet list styling */
.bullet-list {
    list-style: disc;
    padding-left: 20px;
}

.bullet-list li {
    margin-bottom: 10px;
    font-size: 20px;
    color: #060606;
    line-height: 1.5;
    font-weight: 500;
}

/* Hover effect for interactivity */
.bullet-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for tablets (max-width 1024px) */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .bullet-section {
        max-width: 600px;
    }
}

/* Responsive adjustments for mobile devices (max-width 600px) */
@media (max-width: 600px) {
    .interactive-section {
        width: 90%;
        padding: 20px;
        margin: 30px auto;
    }

    .bullet-section {
        padding: 15px;
    }

    .bullet-section h2 {
        font-size: 18px;
    }

    .bullet-list li {
        font-size: 16px;
    }
}

/* Responsive adjustments for very small mobile devices (max-width 480px) */
@media (max-width: 480px) {
    .interactive-section {
        width: 95%;
        padding: 15px;
        margin: 20px auto;
    }

    .bullet-section h2 {
        font-size: 16px;
    }

    .bullet-list li {
        font-size: 14px;
        line-height: 1.4;
    }
}

.careers {
    background-color:rgb(254,74,10);
    color: #fdfcfc; 
    ;
    margin-bottom: 10%;
    margin-top: 10%;/* Light background color for better readability */
    padding: 20px; /* Default padding */
    text-align: center; /* Center-align the content */
    }
    
    .careers p{
    color: #fefdfd;
    }
    
    /* Content container within the careers section */
    .careers .content {
    max-width: 800px; /* Limit max width for better readability */
    margin: 0 auto; /* Center the content horizontally */
    padding: 10px 20px; /* Add some padding for internal spacing */
    }
    
    /* Paragraph styling for better text appearance */
    .careers p {
    font-size: 16px; /* Default font size */
    line-height: 1.6; /* Comfortable line height for readability */
    color: #fcfcfc;
    font-family: "Roboto", system-ui;
    font-weight: 400;
    font-style: normal; /* Dark color for contrast */
    }
    
    /* Button styling for contact */
    .view-careers-btn {
    display: inline-block; /* Display as block for easier alignment */
    margin-top: 15px; /* Space above the button */
    padding: 10px 20px; /* Button padding */
    font-size: 16px; /* Button text size */
    color: #fff; /* Text color */
    background-color: #4e5af6; /* Primary color */
    border: none; /* No borders */
    border-radius: 25px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s ease; /* Smooth transition on hover */
    }
    
    /* Button hover effect */
    .view-careers-btn:hover {
    background-color: #0056b3; /* Darker shade on hover */
    }
    
    /* Responsive adjustments for tablets and smaller devices */
    @media (max-width: 768px) {
    .careers {
    padding: 15px; /* Reduce padding for smaller screens */
    }
    
    .careers p {
    font-size: 14px; /* Adjust text size for better fit */
    }
    
    .view-careers-btn {
    font-size: 14px; /* Adjust button text size */
    padding: 8px 16px; /* Adjust padding for smaller buttons */
    }
    }
    
    /* Further adjustments for small mobile screens */
    @media (max-width: 480px) {
    .careers .content {
    padding: 10px; /* Further reduce padding */
    }
    
    .careers p {
    font-size: 13px; /* Smaller text size for tiny screens */
    }
    
    .view-careers-btn {
    font-size: 13px; /* Button font size adjustment */
    padding: 8px 14px; /* Narrow padding for small screens */
    }
    }
    
    
    
    
    
    







  




/*footer*/



