/**
* Template Name: QuickStart
* Template URL: https://bootstrapmade.com/quickstart-bootstrap-startup-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
/* Fonts */
:root {
    --default-font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "DM Sans", sans-serif;
    --nav-font: "DM Sans", sans-serif;
}

  
  /* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
  :root { 
    --background-color: #F3F5FC; /* Background color for the entire website, including individual sections */
    --default-color: #828284; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #050509; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #388da8; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  }
  
  /* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
  :root {
    --nav-color: #313336;  /* The default color of the main navmenu links */
    --nav-hover-color: #77b6ca; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #313336; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #77b6ca; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  }

  
  
  /* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
  
  

  .light-background {
    --background-color: #f8fbfc;
    --surface-color: #ffffff;
  }
  
  .dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
  }

  
  
  /* Smooth scroll */
  :root {
    scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   }

  body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
  }

  

  .alert-success {
    --bs-alert-color: white;
    --bs-alert-bg: #198754;
    --bs-alert-border-color: var(--bs-success-border-subtle);
    --bs-alert-link-color: var(--bs-success-text-emphasis);
}

  .section-label {
    font-size: 18px;
    color: #828284;
    margin-bottom: 1rem;
    letter-spacing: 15%;
    font-weight: 500;
    line-height: 20.4px;
}
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
  }
  
/*--------------------------------------------------------------
 Global Header
--------------------------------------------------------------*/
/* ============================= */
/*  Header Styles */
/* ============================= */
header {
    background-color: var(--background-color);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ============================= */
/* Brand Logo & Text */
/* ============================= */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: 40px;
    height: auto;
}

.brand-text {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

/* ============================= */
/*  Navbar Links */
/* ============================= */
.navbar-nav .nav-link {
    color: #666;
    font-size: 16px;
    padding: 10px 20px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #40A7FF;
}

/* ============================= */
/*  Dropdown Styles */
/* ============================= */

/* Removes default dropdown arrow */
.dropdown-toggle::after {
    content: none;
}

/* Services Dropdown Text & Icon Alignment */
.nav-item.dropdown {
    position: relative;
}

.nav-link.services {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Dropdown Icon */
.nav-link.services i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Rotate icon when dropdown is open */
.nav-item.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 220px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Items */
.dropdown-item {
    color: #666;
    padding: 8px 20px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    color: #40A7FF;
    background-color: #f8f9fa;
}

/* ============================= */
/* Contact Button */
/* ============================= */
.contact-button-header {
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 16px;
    display: inline-block;
}

.contact-button-header:hover {
    background-color: #333;
    color: #fff;
}

/* ============================= */
/*  Responsive Styles */
/* ============================= */
@media (max-width: 991px) {
    /* Navbar Collapse (Mobile Menu) */
    .navbar-collapse {
        background-color: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }

    /* Dropdown Menu (Mobile) */
    .dropdown-menu {
        box-shadow: none;
        border: none;
        padding-left: 20px;
    }

    /* Contact Button (Mobile) */
    .contact-button-header {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
}

  /*--------------------------------------------------------------
 Banner Page Of Index 
--------------------------------------------------------------*/
.hero-section {
    position: relative;
    overflow: hidden;
    margin-top: -4%;
}

.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #58585B;
    font-size: 17px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.para-elev{
    color: #050509;
    font-size: 14px;
    line-height: 22.4px;
    font-weight: 500;
}

.main-heading-banner {
    font-size: 50px;
    font-weight: 700;
    color: #050509;
    line-height: 67.2px;
    margin-bottom: 1.5rem;
}

.description {
    color: #050509;
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.stats-card {
    background-color: var(--primary-blue);
    color: white;
    border-radius: 1rem;
    margin-top: 180px;
    overflow: hidden;
}

.growth-rate {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.banner-image{
    margin-top: -380px;
    margin-left: 224px;
}

.testimonial-card {
    background: white;
    border-radius: 0px 80px 80px 0px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: absolute;
    bottom: 2rem;
    max-width: 334px;
}

.star-rating-index {
    color: #FFD700;
    margin-top: -19px;
}

.cta-button {
    display: block;  /* Makes the <a> tag a block-level element */
}

.phone-number {
    display: block;  /* Forces the phone number to a new line */
    margin-top: -13px;  /* Adds some space above the phone number */
   
}
.cta-line{
    color: #ffffff;
   margin-top: 10px;
}
.cta-button {
    background-color: #002244;
    color: white;
    border-radius: 2rem;  /* Reduced the border radius further */
    padding: 0.5rem 1.5rem;  /* Reduced the padding to make the button smaller */
    text-decoration: none;
    display: block;  /* Ensures the button stays block-level */
    align-items: center;
    width: fit-content;  /* Ensures button width adjusts to content */
    transition: all 0.3s ease;
    font-size: 0.875rem;  /* Smaller font size */
}

.cta-button:hover {
    background-color: #90acc9;
    color: white;
}
@media screen and (min-width: 320px) and (max-width: 380px) {

    .secure-badge {
       margin-top: 3%;
    }

    .testimonial-card {
        bottom: 1rem;   
    }
    .brand-text{
        font-size: 18px;
    }

    .banner-image{
        margin-top: 26px;
        margin-left: -13px;
    }

    .fun-fact-section {
        padding: 62px 0px;
        margin-top: 65px;
    }
    
    .copy-para {
        text-align: left !important;
    }

    .stats-card {
        margin-top: 47px;
        display: none;
    }

    .hero-section{
        margin-top: 41px;
    }
}
 /*--------------------------------------------------------------
 FUN FACT of index 
--------------------------------------------------------------*/

.fun-fact-section {
    background-color: #003366;
    padding: 90px 0;
    color: white;
    margin-top: 120px;
}

.fun-fact-divider {
    width: 1px;
    height: 75px;
    background-color: #EAEEFF;
}

.fun-fact-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.fun-fact-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .fun-fact-divider {
        height: 1px;
        width: 100%;
        margin: 2rem 0;
    }
    
    .fun-fact-item {
        text-align: center;
    }
}

 /*--------------------------------------------------------------
 Banner of About Us
--------------------------------------------------------------*/

.about-section-banner {
    padding: 100px 0;
    background-color: var(--background-color);
    position: relative;
    margin-top: 43px;
    overflow: hidden;
}

#more-values {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out; /* Adjust the timing for the effect */
}

#more-values.show {
    max-height: 1000px; /* Set a large enough value to reveal the content */
}

.nav-link-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 31%; /* Adjust the size of the circle */
    height: 46px; /* Adjust the size of the circle */
    border: 2px solid #121213; /* Border color */
    background: #000;
    border-radius: 50px; /* Makes it a circle */
    text-align: center;
    padding: 12px 24px;
    margin-top: 3%;
    color: #fff;
}

 .dropdown-menu-about{
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 220px;
    display: none;
    position: absolute;
    top: 88%;
    left: 276px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}

.decorative-line {
    width: 406px;
    height: 1px;
    background-color: #D0DBFF;
    opacity: 0.3;
    margin-left: 13px;
}

.about-heading {
    color: #002B5B;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: -36px;
    line-height: 67.2px;
    text-align: center;
    margin-left: 35px;
    position: relative;
}

.about-text {
    color: #828284;
    font-size: 18px;
    line-height: 28.8px;
    font-weight: 400;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}
.section-heading-vision {
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    color: #003061;
}

@media screen and (min-width: 320px) and (max-width: 375px) {

    .decorative-line {
       display: none;
    }

    /* .about-heading{
        margin-left: -58px;
    } */

    .about-section-banner{
        margin-top: 0;
    }

    .nav-link-circle{
        width: 95%;
        margin-top: 8%;
        margin-bottom: 8%;
    }

    .dropdown-menu-about{
        left: 90px;
    }
}


 /*--------------------------------------------------------------
 About Us
--------------------------------------------------------------*/

.about-section {
    padding: 5rem 0;
    background-color: #fff;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 450px;
}

.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.image-grid-left {
    grid-row: 1 / 3;
}

.section-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-description {
    color: #828284;
    font-size: 18px;
    line-height: 28.8px;
    font-weight: 400;
    letter-spacing: -3%;
}

.learn-more-btn {
    background-color: #050509;
    color: #fff;
    padding: 20px 30px 20px 30px ;
    border-radius: 99px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #333;
    color: #fff;
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 2.5rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .image-grid-left {
        grid-row: auto;
    }
}


/*--------------------------------------------------------------
 Service Start
--------------------------------------------------------------*/

.services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title-service {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 48px;
}

.service-card {
    background-color: #F8F9FE;
    padding: 32px;
    border-radius: 10px;
    margin-bottom: 24px;
    height: 206px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    border: 1px solid #ddd;  /* Adding a stroke/border */
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);  /* Adding box shadow */
}

.service-icon {
    background-color: #002B5B;
    width: 80px;
    height: 92px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.service-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-content p {
    color: #666;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

.center-card {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

@media screen and (max-width: 768px) {
    .service-icon {
        display: none;
    }
}

/*--------------------------------------------------------------
 Why Choose Us Start
--------------------------------------------------------------*/
.why-choose-section {
    background-color: #003366;
    color: white;
    padding: 6rem 0;
    display: flex;
}

.section-label-why {
    font-size: 18px;
    color: #828284;
    margin-bottom: 1rem;
    letter-spacing: 15%;
    font-weight: 500;
    line-height: 20.4px;
    color: #EAEEFF;
}

.section-heading-why {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 57.6px;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    background-color: #000;
    width: 80px;
    height: 92px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-content h3 {
    font-size: 24px;
    line-height: 28.8px;
    font-weight: 700;
    color: #ffffff;
}

.why-image {
    width: 520px !important;
    height: 600px !important;
    object-fit: cover !important; /* Ensures the image covers the area without distortion */
    margin-top: 50px;
}


.feature-content p {
    color: #9F9F9F;
    line-height: 25.6px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -3%;
}

.image-wrapper {
    position: relative;
    margin-left: 5rem;
}

.satisfaction-card {
    position: absolute;
    top: 150px;
    left: -3rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0px 80px 80px 0px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.satisfaction-number {
    font-size: 2rem;
    font-weight: 700;
    color: #47A7E5;
}

.satisfaction-text {
    font-size: 0.9rem;
}

.star-rating {
    color: #FFD700;
}

/* For Very Small Screens (max-width: 480px) */
@media screen and (max-width: 480px) {
    .why-image {
        width: 90% !important;
        height: auto !important;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 2.5rem;
    }
    
    .satisfaction-card {
        position: static;
        margin-bottom: 2rem;
    }
}
   /*--------------------------------------------------------------
How its Work Start
--------------------------------------------------------------*/

.process-section {
    padding: 5rem 0;
    background-color: #ffff;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4rem;
}
.work-hr{
    width: 25%;
    margin-top: 4%;
}
.process-step {
    margin-bottom: 4rem;
}

.step-number {
    font-size: 40px;
    font-weight: 700;
    color: #D0DBFF;
    margin-bottom: 1rem;
    line-height: 48px;
  margin-left: 2rem;
  margin-top: 10px;
}

.step-item-left{
    margin-bottom: 1.5rem;
    margin-left: 1rem; 
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
}

.curly-arrow {
    font-size: 20px; /* Adjust size */
    transform: rotate(90deg); /* Custom rotation */
    color: #003061;
   
}
.arrow-icon {
    color: #003061;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.step-item {
    margin-bottom: 1.5rem;
    margin-left: 5rem;
}

.step-item-community {
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.curly-arrow-community {
    font-size: 20px; /* Adjust size */
    transform: rotate(90deg); /* Custom rotation */
    color: #003061;
    margin-top: -29px;   
}

.step-item-title {
    font-weight: 400;
    margin-bottom: 0.5rem;
    margin-top: 7px;
    font-size: 18px;
    letter-spacing: -3%;
    line-height: 28.8px;
}

.step-item-description {
    color: #828284;
    font-size: 14px;
    font-weight: 500;
    line-height: 22.4px;
    margin-left: 2.7rem ;
    letter-spacing: -3%;
}

.process-image {
    border-radius: 1rem;
    overflow: hidden;
}

.process-image img {
    width: 520px;
    height: 296px;
    border-radius: 10px;
    object-fit: cover;
}

 /* Divider Line Styles */
 .divider-line {
    width: 28%;
    height: 1px;
    background-color: #e5e7eb;
    margin: 2rem 0;

}

.get-started-btn {
    background-color: #050509;
    color: #fff;
    border: none;
    padding: 20px 30px 20px 30px;
    border-radius: 99px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.get-started-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .process-image {
        margin-bottom: 2rem;
    }

    .step-item {
        margin-bottom: 1.5rem;
        margin-left: 2rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
}

/*--------------------------------------------------------------
Testimonials Start
--------------------------------------------------------------*/
        .testimonials-section {
            padding: 5rem 0;
            background-color: #F3F5FC;
        } 

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 3rem;
        }

        .section-heading {
            font-size: 48px;
            font-weight: 700;
            line-height: 57.6px;
            margin: 0;
        }

        .see-all-link {
            color: #47A7E5;
            text-decoration: none;
            font-size: 1.1rem;
        }

        .testimonial-main-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            height: 288px;
            width: 364px
        }

        .test-hr{
            border: 1px;
        }
        .testimonial-main-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .profile-image {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }

        .client-info {
            flex-grow: 1;
        }

        .client-name {
            font-weight: 600;
            margin: 0;
        }

        .star-rating {
            color: #FFD700;
            font-size: 1.25rem;
        }

        .testimonial-main-text {
            color: #666;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .read-more {
            color: #47A7E5;
            text-decoration: none;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .testimonial-main-card {
                background: white;
                border-radius: 10px;
                padding: 1rem;
                height: 287px;
                width: 308px;
            }
            
            .section-heading {
                font-size: 2.5rem;
            }
            
            .testimonial-card {
                margin-bottom: 1.5rem;
            }
        }
        /*--------------------------------------------------------------
Contact us Start
--------------------------------------------------------------*/
.contact-section {
    padding: 38px 0;
    background-color: #ffffff;
}

.contact-heading {
    display: inline-block;
    position: relative;
}

.contact-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; /* Adjust position */
    width: 0%;
    height: 8px;
    background-color: #003366; /* Adjust color */
    transition:  3s ease-in-out; /* Smooth animation */
}

.contact-heading.animated::after {
    width: 80%; /* Expands fully when in viewport */
}


.fun-fact-section-contact{
    margin-top: 0;
    background-color: #003366;
    padding: 90px 0;
    color: white;
}

.contact-heading {
    font-size: 48px;
    font-weight: 400;
    margin-top: 45%;
    margin-left: 0;
    margin-bottom: 40px;
    line-height: 57.6px;
}
.contact-sub-title {
    font-size: 24px;
    font-weight: 700 ;
    line-height: 28.8px ;
}

.contact-info {
    margin-bottom: 30px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: #003061;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.icon-box img {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

.contact-form {
    background-color: #042352;
    padding: 52px 55px 60px 80px;
    border-radius: 0px;
    color: #828284;
    
}

.profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.profile-text {
    background-color: transparent;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 300;
    border: 1px solid #ffffff; /* Add a solid white border */
    font-size: 14px;
    color: #ffffff;
    /* font-family: Lexend Deca; */
}

.form-control {
    background-color: white;
    border: none;
    padding: 12px;
    margin-bottom: 20px;
}

.form-label {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    line-height: 21px;
}

.submit-btn {
    width: 223px;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 12px;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #003061;
    color: white;
}

@media screen and (min-width: 320px) and (max-width: 375px) {
    .contact-form{
        padding: 36px 34px 50px 42px;
    }
}

   /*--------------------------------------------------------------
Mision Start
--------------------------------------------------------------*/

.mission-section {
    padding: 80px 0;
    overflow: hidden;
    background-color: #fff;
}

.section-subtitle-mission {
    color: #4A4A4A;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.section-title-mission {
    font-size: 48px;
    font-weight: 400;
    line-height: 57.6px;
    margin-bottom: 48px;
    max-width: 500px;
    color: #050509;
}

.mission-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-point {
    margin-bottom: 40px;
    padding-right: 40px;
}

.point-number-mission {
    color: #003061;
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    margin-bottom: 16px;
}

.point-title-mission {
    color: #003061;
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    margin-bottom: 12px;
    margin-left: 50px;
}

.point-description-mission {
    color: #828284;
    font-size: 16px;
    margin-left: 80px;
    line-height: 25.6px;
    font-weight: 500;
 
}

.hr-mission{
    margin: 3rem 40px;
    color: #b1b5ca;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
}
    

.image-stack {
    height: 100%;
    /* min-height: 500px; */
}

.image-stack__item {
    /* position: absolute; */
    border-radius: 24px;
    overflow: hidden;
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.1);
} */
}

@media screen and (min-width: 320px) and (max-width: 375px) {
    .image-stack {
        display: none;
    }
}

  /*--------------------------------------------------------------
Recognition Section
--------------------------------------------------------------*/
        .recognitions-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .section-title-recog {
            font-size: 48px;
            font-weight: 500;
            color: #050509;
            margin-bottom: 50px;
            line-height: 55px;
        }

        .medal-image {
            width: 100%;
            max-width: 450px;
            height: auto;
            object-fit: cover;
        }

        .achievement-number {
            color: #003061;
            font-size: 24px;
            font-weight: 400;
            margin-right: 15px;
            min-width: 40px;
            line-height: 28.8px;
            display: inline-block;
        }

        .achievement-title {
            font-size: 27px;
            font-weight: 600;
            color: #050509;
            margin-bottom: 10px;
            line-height: 32.4px;
        }

        .achievement-description {
            color: #828284;
            font-size: 16px;
            line-height: 27.5px;
            font-weight: 400;
            margin-left: 55px;
        }

        .achievement-item {
            margin-bottom: 40px;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 32px;
                margin-bottom: 30px;
            }

            .medal-image {
                margin-bottom: 40px;
            }

            .achievement-title {
                font-size: 20px;
            }

            .achievement-number {
                font-size: 20px;
            }
        }

  /*--------------------------------------------------------------
Our Story Start
--------------------------------------------------------------*/

.story-section {
    background-color: #003061;
    color: white;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.story-hr{
    margin-top: -1%;
    width: 25%;
}


.section-subtitle-story {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.section-title-story {
    font-size: 48px;
    font-weight: 400;
    line-height: 57.6px;
    margin-bottom: 64px;
    max-width: 600px;
    color: #fff;
}

.story-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    
}

.story-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
    width: 360px;
    height: 240px;
}

.story-card img {
    width: 360px;
    height: 240px;
    object-fit: cover;
}

.story-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
}

.story-card-title {
    font-size: 20px;
    font-weight: 500;
}

.play-button {
    width: 50px;
    height: 50px;
    background-color: #3AA9E9;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    align-self: flex-end;
}

.story-get-started-btn {
    background-color: black;
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    margin-left: 394px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.get-started-btn:hover {
    background-color: #333;
    color: white;
}

.story-description{
    font-size: 18px;
    font-weight: 400;
    color: #9F9F9F;
    line-height: 28.8px;
}

@media screen and (min-width: 320px) and (max-width: 375px) {
    .story-card{
        width: 297px;
    }

    .story-hr{
        display: none;
    }

    .story-get-started-btn{
        display: none;

    }
}
@media (max-width: 768px) {
    .story-cards {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 36px;
    }

   
}

  /*--------------------------------------------------------------
Value Start
--------------------------------------------------------------*/

.values-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title-value {
    color: #000;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 60px;
    line-height: 57.6px;
}

.hr-value{
    width: 10%;
    color: #D0DBFF;
    
}

.value-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 30px;
    margin-top: 6%;
}

.value-name {
    color: #003061;
    font-size: 24px;
    font-weight: 400;
    width: 120px;
    flex-shrink: 0;
    padding-top: -5px;
}

.value-image {
    width: 320px;
    height: 215px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    margin-left: 8%;
}

.hr-sec-value{
    color: #b1b3be;
}

.value-description {
    color: #828284;
    font-size: 16px;
    line-height: 1.6;
    margin-left: 6%;
    padding-top: 10px;
    flex-grow: 1;
}

.show-more-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
    border-radius: 5px;
}

.show-more-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 992px) {
    .value-item {
        flex-direction: column;
        gap: 20px;
    }

    .value-name {
        width: 100%;
        padding-top: 0;
    }

    .value-image {
        width: 100%;
        height: 250px;
    }

    .value-description {
        padding-top: 0;
    }
}

@media screen and (min-width: 320px) and (max-width: 380px) {
    .value-image{
        width: 87%;
    }
    .hr-value {
        display: none;
    }
}

  /*--------------------------------------------------------------
Our Founder Start
--------------------------------------------------------------*/
.founder-section{
    background-color: #F3F5FC;
    margin-top: 7%;
}
.section-title-founder {
    position: relative;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5rem;
    line-height: 57.6px;
}

.section-title-founder::before {
    content: '';
    position: absolute;
    left: 2%;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: #c2cfdb;
}

.founder-image {
    width: 360px;
    height: 400px;
    aspect-ratio: 1;
    margin-left: 12%;
    background-color: #D3D3D3;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.founder-image img {
    width: 114%;
    height: 111%;
    object-fit: cover;
    
}

.founder-info {
    background-color: white;
    padding: 1.5rem;
    margin-top: -3rem;
    margin-left: 1rem;
    margin-right: 1rem;
    position: relative;
}

.founder-name {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.founder-title {
    color: #828284;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
}

.founder-bio {
    color: #828284;
    line-height: 28.8px;
    font-size: 18px;
    margin-top: 1.5rem;
    font-weight: 400;
}

.read-more {
    color: #3AA9E9;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

@media (min-width: 992px) {
    .founder-content {
        padding-left: 2rem;
    }
    .founder-info {
        margin:-132px -4px;
        background: none;
    }
    
}


@media screen and (min-width: 320px) and (max-width: 380px) {
    .founder-image{
        width: 260px;
        margin-left: 4%;
    }

    .section-title-founder::before {
        content: none;
        display: none;
    }

    .founder-info {
        background-color: white;
        padding: 1.5rem;
        margin-top: -10rem;
        margin-left: 0rem;
        margin-right: 0rem;
        position: relative;
    }
}

  /*--------------------------------------------------------------
Get Start IMf Start
--------------------------------------------------------------*/
.get-started-section {
    padding: 6rem 0;
    background-color: #ffff;
}

.section-image-get-started {
    /* width: 520px; */
    height: 505px;
    border-radius: 16px;
    overflow: hidden;
}

.section-image-get-started img {
    width: 520px;
   border-radius: 10px;
    height: auto;
    object-fit: cover;
}

.section-content {
    padding-left: 2rem;
}

.small-heading {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1rem;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.company-name {
    font-weight: 500;
    color: #333;
}

.cta-button-abtus {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button-abtus:hover {
    background-color: #333;
    color: #fff;
}

@media (max-width: 991px) {
    .section-content {
        padding-left: 0;
        padding-top: 2rem;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
}
@media screen and (min-width: 320px) and (max-width: 380px) {
.section-image-get-started img{
   width: 290px
}
}

/*--------------------------------------------------------------
Our Partner
--------------------------------------------------------------*/
.our-partner{
    background-color: white;
    
}

.section-title-partner {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 3rem;
    padding-top: 6%;
    line-height: 57.6px;
}

.partner-card {
    background-color: #003061;
    color: white;
    border-radius: 8px;
    padding: 20px 30px 20px 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.partner-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}


  /*--------------------------------------------------------------
Service Details Banneer
--------------------------------------------------------------*/

.service-section {
    background-color: #F8F9FF;
    padding: 5rem 0;
    position: relative;
}

.fun-fact-section-service{
    background-color: #003366;
    padding: 90px 0;
    color: white;
}

.section-title {
    position: relative;
    color: #002B5B;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-title::before {
    content: '';
    position: absolute;
    left: -4rem;
    top: 50%;
    width: 100px;
    height: 1px;
    background-color: #dee2e6;
}

@media screen and (min-width: 320px) and (max-width: 380px) {
    .decorative-line-service-details {
       display: none;
       
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-title::before {
        left: -2rem;
        width: 50px;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}
  /*--------------------------------------------------------------
  Service Testimonial
--------------------------------------------------------------*/

.service-testimonial-section {
    position: relative;
    background-size: cover;
    /* background-image: url('{{ $insurance["backgroundImageUrl"] }}'); */
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
}

/* .service-testimonial-content {
    padding: 2rem 0;
} */

.service-testimonial-quote {
    font-size: 32px;
    font-weight: 500;
    line-height: 38.4px;
    margin-bottom: 2rem;
    position: relative;
}
.service-testimonial-content{
    margin-top: 14%;
    margin-left: 8%;
}

/* .service-testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    line-height: 0;
    position: absolute;
    left: -2rem;
    top: 1rem;
    opacity: 0.7;
} */

.service-testimonial-author {
    color: #3AA9E9;
    font-size: 32px;
    font-weight: 500;
    line-height: 38.4px;
    margin-bottom: 0.5rem;
}

.service-testimonial-position {
    color: #9F9F9F;
    font-size: 18px;
    font-weight: 400;

}

@media (max-width: 768px) {
    .testimonial-quote {
        font-size: 1.5rem;
    }
    
    .testimonial-author {
        font-size: 1.25rem;
    }
    
    .testimonial-content {
        padding: 3rem 1rem;
    }
}

  /*--------------------------------------------------------------
Service Insurance Start
--------------------------------------------------------------*/
        .insurance-section {
            padding: 5rem 0;
            background-color: #fff;
        }

        /* banner image of service*/
        .decorative-line-service-details{ 
            width: 350px;
            height: 1px;
            background-color: #D0DBFF;
            opacity: 0.3;
            margin-left: 13px;
        }
        
        .section-title-insuarnce {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            padding-top: 2rem;
            line-height: 43.2px;
            margin-left: 8%;
        }
/*         
        .section-title-insurance::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100px;
            height: 1px;
            background-color: #dee2e6;
        } */
        
        .description-insurance {
            color: #828284;
            line-height: 28.8px;
            margin-bottom: 3rem;
            font-size: 18px;
            font-weight: 400;
        }
        
        .insurance-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 4rem;
        }

        .hr-insurance{
            color: #3B82F6;
            width: 21%;
            margin-top: 4%;
        }

        .hr-insurance-type{
            color: #3B82F6;
            width: 13%;
            margin-top: 2%;
        }
        
        .insurance-image img {
            width: 482px;
            height: 290px;
            margin-left: 12%;
            border-radius: 10px;
            object-fit: cover;
        }
        
        .types-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 2rem;
            margin-left: 2.5%;

        }
        
        .type-image {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 2rem;
        }
        
        .type-image img {
            width: 482px;
            height: 350px;
            object-fit: cover;
        }

        .type-content-right h3{
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #050509;
            /* margin-left: 1%;  */
        }
        
        .type-content-right p {
            color: #828284;
            line-height: 28.8px;
            font-size: 18px;
            font-weight: 400; 
            /* margin-left: 1%; */
        }

        
        .type-content h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #050509;
            margin-left: 6%;
        }
        
        .type-content p {
            color: #828284;
            line-height: 28.8px;
            font-size: 18px;
            font-weight: 400; 
            margin-left: 6%;
        }
        
        @media (max-width: 768px) {
            .insurance-section {
                padding: 3rem 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .types-title {
                font-size: 1.75rem;
            }
        }

 /*--------------------------------------------------------------
 Benefit Coverage
--------------------------------------------------------------*/
.coverage-section{
    background-color: #ffff;
}
        .benefit-card {
            background-color: #F3F5FC;
            border-radius: 1rem;
            padding: 2rem;
            height: 100%;
            transition: transform 0.2s;
        }
        .benefit-card:hover {
            transform: translateY(-5px);
        }
        .benefit-icon {
            background-color: #002B5B;
            color: white;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .benefit-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .benefit-description {
            color: #6B7280;
            line-height: 1.6;
        }
  
 /*--------------------------------------------------------------
FAQ Start
--------------------------------------------------------------*/

        .faq-section {
            padding: 5rem 0;
            background-color: #F3F5FC;
        }
        
        .faq-section-label {
            color: #666;
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        
        .faq-section-title {
            font-size: 3rem;
            font-weight: 700;
            color: #002B5B;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .faq-section-title::before {
            content: '';
            position: absolute;
            left: -4rem;
            top: 50%;
            width: 100px;
            height: 1px;
            background-color: #dee2e6;
        }
        
        .faq-accordion-item {
            background: transparent;
            margin-bottom: 40px;
            
        }
        
        .faq-accordion-button {
            background-color: transparent;
            border-radius: 10px !important;
            box-shadow: 0 1px 2px 0 rgba(46, 50, 60, 0.09);
            padding: 20px 30px;
            font-size: 24px;
            color: #002B5B;
            font-weight: 700;
        }
        
        .faq-accordion-button::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%233B82F6' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' stroke='%233B82F6' stroke-width='2' fill='none'/%3E%3Cpath d='M12 8v8m-4-4h8' stroke='%233B82F6' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
            width: 24px;
            height: 24px;
            background-size: contain;
            background-repeat: no-repeat;
            transition: transform 0.2s ease;
        }
        
        .faq-accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
        }
        
        .faq-accordion-button:not(.collapsed) {
            background: transparent;
            color: #3B82F6;
        }
        
        .faq-accordion-body {
            background-color: transparent;
            border-radius: 0 0 8px 8px;
            padding: 20px 30px;
            color: #828284;
            font-size: 16px;
            font-weight: 500;
            line-height: 25.6px;
        }
        
        .faq-accordion-button::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%233B82F6' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' stroke='%233B82F6' stroke-width='2' fill='none'/%3E%3Cpath d='M12 8v8m-4-4h8' stroke='%233B82F6' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
            transition: transform 0.2s ease;
        }
        
        .faq-accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%233B82F6' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' stroke='%233B82F6' stroke-width='2' fill='none'/%3E%3Cpath d='M8 12h8' stroke='%233B82F6' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");

        }
        
        .faq-footer-text {
            color: #828284;
            /* text-align: center; */
            max-width: 600px;
            /* margin: 3rem auto 1.5rem; */
            margin-top: 1rem;
            margin-left: 36px;
            line-height: 1.7;
            font-size: 18px;
        }  
        
        .faq-hr{
            width: 30%;
            margin-top: 6%;
        }
        
        .faq-contact-phone {
            color: #3B82F6;
            text-decoration: none;
            font-size: 17px;
            display: flex;
            line-height: 20.4px;
            letter-spacing: 15%;
            font-weight: 500;
            margin-left: -230px;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .faq-contact-phone:hover {
            text-decoration: underline;
        }

        .accordion {
            --bs-accordion-border-color: none;
        }

        @media screen and (min-width: 320px) and (max-width: 380px) {

            .faq-contact-phone {
                margin-left: 0;
            }
        }

     /*--------------------------------------------------------------
Make your Career Start
--------------------------------------------------------------*/

.decorative-line-career {
    width: 311px;
    height: 1px;
    background-color: #D0DBFF;
    opacity: 0.3;
    margin-left: 13px;
}

        .jobs-section {
            background-color: #002B5B;
            padding: 80px 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        #employeeForm {
            display: none; /* Hide form by default */
            padding: 2rem;
            margin-top: 2rem;
        }

        #partTimeForm {
            display: none; /* Hide form by default */
            padding: 2rem;
            margin-top: 2rem;
        }
        #partnerForm {
            display: none; /* Hide form by default */
            padding: 2rem;
            margin-top: 2rem;
        }

        .btn-save {
            background-color: #0D6EFD;
            color: white;
            border: none;
            padding: 8px 24px;
            border-radius: 5px;
        }

        .btn-cancel {
            background-color: white;
            color: black;
            border: none;
            padding: 8px 24px;
            border-radius: 5px;
            margin-right: 10px;
        }

        .job-card {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .job-title {
            font-size: 24px;
            font-weight: 700;
            color: #000;
            line-height: 28.8px;
            margin-bottom: 20px;
        }

        .job-description {
            color: #000;
            font-size: 16px;
            font-weight: 400;
            line-height: 25.6px;
            margin-bottom: 25px;
        }

        .click-here-btn {
            background: #000;
            color: #fff;
            padding: 6px 16px 6px 16px;
            border-radius: 100px;
            width: 150px;
            height: 48px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .click-here-btn:hover {
            background: #333;
            color: #fff;
        }

        .click-here-btn::after {
            content: '→';
            font-size: 20px;
        }

        @media (max-width: 768px) {
            .jobs-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 36px;
                margin-bottom: 40px;
            }

            .job-card {
                margin-bottom: 30px;
            }
        }
        @media screen and (min-width: 1980px) and (max-width: 1980px) {
            .career-heading .about-heading {
                margin-left: 8%;
            }  

            .about-heading{
                margin-left: 8%;
            }
        }
        

      /*--------------------------------------------------------------
Team Start
--------------------------------------------------------------*/
        .team-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .section-title-team {
            color: #050509;
            font-size: 48px;
            font-weight: 600;
            margin-bottom: 50px;
            line-height: 57.6px;
            max-width: 600px;
        }

        .testimonial-card-team {
            margin-bottom: 30px;
        }

        .profile-image-team {
            width: 100px;
            height: 100px;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 20px;
        }

        .star-rating-team {
            color: #FFB800;
            font-size: 20px;
            margin-bottom: 6px;
        }

        .team-member-name {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 5px;
            line-height: 28.8px;
        }

        .team-member-position {
            color: #9F9F9F;
            font-size: 16px;
            margin-bottom: 25px;
            line-height: 25.6px;
        }

        .testimonial-title-team {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 28.8px;
            color: #050509;
        }

        .testimonial-text-team {
            color: #828284;
            font-size: 16px;
            line-height: 25.6px;
            max-width: 500px;
        }
        .viren-profile-div{
            margin-left: 6%;
        }

        .workspace-image {
            width: 544px;
            height: 431px;
            object-fit: cover;
            border-radius: 6px;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 36px;
            }

            .workspace-image {
                margin-top: 30px;
            }
        }
        @media screen and (min-width: 320px) and (max-width: 380px) {

        .workspace-image {
            width: 348px;
            height: 431px;
            object-fit: cover;
            border-radius: 6px;
        }
    }
        
  /*--------------------------------------------------------------
Apply Start
--------------------------------------------------------------*/
        .apply-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .section-label-apply {
            color: #666;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            text-align: center;
        }

        .section-title-apply {
            color: #000;
            font-size: 42px;
            font-weight: 600;
            margin-bottom: 60px;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .step-number-apply {
            font-size: 40px;
            font-weight: 600;
            line-height: 48px;
            color: #D0DBFF;
            margin-bottom: 20px;
        }

        .step-title-apply {
            font-size: 24px;
            font-weight: 600;
            color: #050509;
            line-height: 28.8px;
            margin-bottom: 15px;
        }

        .step-description-apply {
            color: #828284;
            font-size: 16px;
            font-weight: 500;
            line-height: 25.6px;
            margin-bottom: 30px;
        }

        .cta-section-apply {
            background-color: #003061;
            border-radius: 12px;
            padding: 60px 30px;
            text-align: center;
            margin-top: 60px;
        }

        .section-heading-apply {
            font-size: 48px;
            font-weight: 400;
            line-height: 57.6px;
        }

        .cta-title-apply {
            color: #fff;
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 43.2px;
        }

        .cta-description-apply {
            color: #fff;
            font-size: 18px;
            line-height: 28.8px;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button-apply {
            background: #fff;
            color: #050509;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            display: inline-block;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: #f0f0f0;
            color: #002B5B;
        }

        @media (max-width: 768px) {
            .section-title-apply {
                font-size: 32px;
            }

            .step-number-apply {
                font-size: 36px;
            }

            .cta-title-apply {
                font-size: 28px;
            }
        }
  /*--------------------------------------------------------------
Footer Start
--------------------------------------------------------------*/

        .footer {
            background-color: #002B5B;
            color: white;
            padding: 60px 0 20px;
        }

       

        .footer-logo {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 15px;
            text-decoration: underline;
        }

        .footer-tagline {
            font-size: 16px;
            margin-bottom: 15px;
            font-weight: 400;
        }

        .footer-description {
            color: #9F9F9F;
            margin-bottom: 25px;
            font-size: 15px;
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 17px;
            font-weight: 500;
            text-decoration: none;
        }

        .footer-col-heading{
            font-size: 14px;
            font-weight: 300;
            line-height: 17px;
            margin-top: 8px;
            color: #ffffff;
        }

        .footer h5 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            font-size: 15px;
            font-weight: 500;
            line-height: 25.6px;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #9F9F9F;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .copy-para a {
            text-decoration: underline;
            color: #9F9F9F;

        }

        .work-hours {
            color: #9F9F9F;
            font-size: 15px;
            font-weight: 500;
            line-height: 25.6px;

        }

        .footer-contact-info {
            color: #B8B8B8;
            margin-bottom: -3px;
        }

        .footer-contact-infos {
            color: #B8B8B8;
        }

        .work-icon{
            color: #3AA9E9;
        }

        .footer-contact-info i {
            margin-right: 3px;
        }

        .footer-contact-infos i {
            margin-right: 3px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 40px;
            border-color: #EAEEFF;
        }
        .copy-para{
            color: #9F9F9F;
            font-size: 15px;
        }

       

        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 20px;
            }
            
            .footer-section {
                margin-bottom: 30px;
            }
        }
