*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 1px solid red; */
}




/* Base Styles */
body {
    background-color: white !important;
    overflow-x:hidden !important;
   
}
a {
    text-decoration: none;
}


/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* flex-wrap: wrap; */
    padding: 14px 14px;
    position: sticky;
    top: 0; 
    background-color: #fff; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    z-index: 1000; 
}

.header .logo {
    display: flex;
    align-items: center;
    
    /* gap: 1px; */
}
.header .logo a {
    display: flex;
    align-items: center;
    text-decoration: none; 
}

 .header .logo img {
    /* max-width: 100%;  */
    width: 60px;
    /* height: auto; */
}

.header .logo h1 {
    margin-left: 10px; 
    color: black;
    font-size: 30px;
}


.header ul {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.header ul li {
    list-style: none;
    position: relative;
    margin-left: 20px;
}

.header ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.header ul li a:hover {
    color: #15386b;
    transition: all 0.2s;
}

.header ul li a:hover,
.header ul li.active a {
    color: #15386b;
    transition: all 0.2s;
}
.header .header-btn a {
    align-items: center;
    background-clip: padding-box;
    background-color: #15386b;
    border: 1px solid transparent;
    border-radius: 2.25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    margin: 0;
    min-height: 4rem;
    padding: calc(0.870rem - 1px) calc(1.9rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: auto;
    font-weight: bold;
}

.header .header-btn a:hover {
    background-color: black;
    transition: all 0.3s;
}

.header ul li .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 28px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 5px;
    box-shadow: 0 4px 8px #00000033;
}

.header ul li .dropdown-menu ul {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin: 0;
}

.header ul li .dropdown-menu ul li {
    margin: 0;
    text-wrap: nowrap;
}

.header ul li .dropdown-menu ul li a {
    color: #000;
    font-size: 15px;
    font-weight: normal;
    text-decoration: none;
}

.header ul li .dropdown-menu ul li a:hover {
    color: #15386b;
    transition: all 0.2s;
}

.header ul li:hover .dropdown-menu,
.header ul li .dropdown-menu:hover {
    display: block;
}

/* Hamburger Styles */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger i {
    font-size: 24px;
}

/* Mobile Nav Styles */
.mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 95%;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: left 0.3s;
    padding: 20px;
}

.mobile-nav .logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-nav .logo img{
    width: 50px;
}
.mobile-nav .logo h2{
    font-size: 27px;
}

.mobile-nav .logo button{
    padding: 8px 8px 8px 8px;
    margin: 0px 13px 0px 0px;
    width: 45px;
    border-radius: 3px;
    background-color: #15386b;
    border: none;
    transition: all 0.4s;
    color:white;
}
.mobile-nav .logo button:hover{
    background-color: grey;
    color:white;
    /* border: 1px solid grey; */
}

.mobile-nav ul {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.mobile-nav ul li a:hover {
    color: #15386b;
    transition: all 0.3s;
    
}



.mobile-nav ul li .dropdown-menu {
    display: none;
    position: relative;
    background-color: #fff;
    padding: 0px 8px;
    box-shadow: 0 4px 8px #00000033;  
    
}

.mobile-nav ul .dropdown-menu li a {
    font-size: 14px;
}


/* Responsive Styles for Tablets */
@media (max-width: 1024px) {
    .header .logo img {
        width: 50px;
    }

    .header .logo h1 {
        font-size: 24px;
    }

    .header .header-btn a {
        padding: 8px 16px;
    }

    .header ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .header ul li {
        margin-left: 0;
        margin-right: 20px;
    }

    .header ul li a {
        font-size: 16px;
    }

    .mobile-nav .logo img {
        width: 45px;
    }

    .mobile-nav .logo h2 {
        font-size: 24px;
    }

    .mobile-nav ul li {
        margin-bottom: 15px;
    }

    .mobile-nav ul li a {
        font-size: 16px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
    }
}

/* Responsive Styles for 360px to 370px Width */
@media (min-width: 360px) and (max-width: 370px) {
    .header .logo img {
        width: 32px; /* Slightly larger than 30px for better scaling */
    }

    .header .logo h1 {
        font-size: 19px; /* Slightly larger font size for readability */
    }

    .header .header-btn a {
        font-size: 16px;
        padding: 6px 12px; /* Adjust padding for better fit */
    }

    .header ul {
        display: none;
    }

    .hamburger {
        display: block;
    }


    .mobile-nav .logo img {
        width: 42px; /* Slightly larger than 40px for better scaling */
    }

    .mobile-nav .logo h2 {
        font-size: 23px; /* Slightly larger font size for readability */
    }

    .mobile-nav ul {
        padding-left: 0;
    }

    .mobile-nav ul li {
        margin-bottom: 13px; /* Adjust spacing between items */
    }

    .mobile-nav ul li a {
        font-size: 15px; /* Adjust font size for readability */
    }

    .mobile-nav ul li .dropdown-menu {
        padding: 0 6px; /* Adjust padding for better fit */
    }
}



/* Responsive Styles */
@media (max-width: 768px) {
    .header .logo img{
        width: 30px;
        margin-bottom: 4px;
    }
   .header .logo h1{
    font-size: 20px;
    font-weight: 700;
   }
   .header .header-btn a {
    padding: 17px 10px;
    font-size: 15px;
    min-height: 2rem;
}
   /* .header .header-btn a{
    font-size: 16px;

   } */
   .header .logo {
    align-items: center;
}
   
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
   
   
}

/* hero styling  */
.hero-section {
    margin-top: 50px;
    display: flex;
    justify-content: space-around;
    padding: 40px;
    align-items: center;
}
.hero-section .info {
    max-width: 50%;
    padding: 0px 5px;

}
.hero-section .info h3 {
    color: black;
    font-family: "Poppins", sans-serif; /* Updated font family */
    font-size: 18px; /* Increased font size */
    text-transform: uppercase;
    line-height: 1.2em; /* Adjusted line height */
    letter-spacing: 2px;
}
.hero-section .info h2 {
    margin: 0 0 20px 0;
    font-size: 50px;
    font-weight: 700;
    line-height: 56px;
    /* color: color-mix(in srgb, #040677, transparent 30%); */
    color:black;
    text-transform: uppercase;
}
.hero-section .info p{
    color: color-mix(in srgb, #444444);
    margin: 5px 0 30px 0;
    font-size: 22px;
    font-weight: 400;
}

.hero-section .info a {
    font-family: "Lora", serif; /* Updated font family */
    font-size: 16px; /* Increased font size */
    line-height: 1.2em;
    color: #FFFFFF;
    background-color: #15386b;
    border-style: solid;
    border-width: 1px;
    border-color: #15386b;
    border-radius: 50px;
    padding: 18px 28px;
    transition: all 0.5s;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-section .info div {
    margin-top: 30px;
}

.hero-section .info a:hover {
    color: #15386b;
    background: transparent;
    border: 1px solid #15386b;
}

.hero-section .hero-img img {
    border-radius: 10px;
    /* filter: drop-shadow(38px 85px 144px #15386b); */
}

/* Apply styles similar to the image for the video */
/* .hero-section .hero-video video {
    width: 100%;
    border-radius: 10px;
} */
 /* Ensure the iframe is responsive */
 .hero-section .hero-video {
    width: 100%; /* Ensure the container is also full-width */
}
 .hero-section .hero-video iframe {
    width: 100%;
    height: 400px; 
    border-radius: 10px;
}


@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
    .hero-section .hero-video iframe {
        width: 100%;

    }


    .hero-section .info {
        max-width: 100%;
        margin-bottom: 20px;
        padding: 0 20px;
    }

    .hero-section .hero-img img {
        width: 100%;
        max-width: 100%;
    }

    .hero-section .info h3 {
        font-size: 1.5em;
    }
    .hero-section .info h2 {
        font-size: 2.5em;
        line-height: 1.2;
    }
    .hero-section .info p {
        font-size: 1em;
    }
    .hero-section .info a {
        padding: 15px 25px;
        font-size: 1em;
    }
}


@media (max-width: 768px) {
   
    .hero-section {
        flex-direction: column;
        text-align: center; 
        gap: 19px;
    }

    .hero-section .info {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .hero-section .hero-video iframe {
        width: 100%;
        height: 250px;
    }

    .hero-section .hero-img img {
        width: 100%;
        max-width: 100%;
    }

    .hero-section .info h3{
        font-size: 1.2em; 

    }
    .hero-section .info h2 {
        font-size: 1.8em; 
    }

    .hero-section .info a {
        padding: 10px 20px;
        font-size: 1em; /* Increased font size */
        font-weight: 500;
    }
}

@media (max-width: 480px) {
    .hero-section .info h3{
        font-size: 1em; /* Increased font size */
    }
    
    .hero-section .info h2 {
        font-size: 2em;
        line-height: 1.3;
    }

    .hero-section .info a {
        width: 100%; 
        padding: 17px;
    }
}



 

/* primary heading  */

.primary-heading{
    margin-top: 10px;
}
.primary-heading h3{
    color: black;
    font-family: "Inter", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 2px;
    text-align: center;
}


/* swipper styling  */

.slider{
    margin-top: 20px;
    height:250px;
    /* margin:auto; */
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.slider .slide-track{
    display: flex;
    align-items: center;
    width: calc(250px * 25);
    animation:scroll 60s linear infinite;
    width: max-content; 
}

.slider .slide-track:hover{
    animation-play-state: paused;
}
@keyframes scroll{
    0%{
        transform: translateX(0);
    }
    100%{
        /* transform: translateX(calc(-250px * 9)); */
        transform: translateX(calc(-100% / 2)); 
    }
}

.slider .slide-track .slide{
    height: 200px;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 15px;
}
.slider .slide-track .slide img{
    width: 100%;
}
/* shadows  */
.slider::before,
.slider::after{
    background: linear-gradient(to right, rgba(255,255,255,1) 0%,
    rgba(255,255,255,0),100%
    );
    content: "";
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 2;
}

.slider::before{
    left:0;
    top:0
}

.slider::after{
    right:0;
    top:0;
    transform: rotateZ(180deg);
}

/* about us  */

.about-us{
    display: flex;
    justify-content: space-around;
    padding: 11px 44px;
    gap:10px;
    overflow-x: hidden !important;
}

.about-us .company-growth .ad-revenu{
    display: flex;
    justify-content: space-around;
    gap:14px
}
.about-us .company-growth .ad-revenu .ad-spend{
    color:white;
    padding: 65px 35px 65px 35px;
    height: 221px;
    width: 383px;
    border-radius :28px;
    border-width: 4px; 
    border-style: solid;
    border-image: radial-gradient(circle at center center, #15386b 70%, #040404 100%) 1;
}



.about-us .company-about .ad-revenu{
    border: 1px solid black;
}

.about-us .company-growth .percent{
    font-family: "VC Nudge Trial", Sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1em;
  color: black;
    display: inline;
}


.about-us .managed-average-worked{
    color: black;
  font-family: "Inter", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3em;
}

.about-us .company-growth .milion-yoy-catergories{
    display: inline;
    color: black;
    font-family: "VC Nudge Trial", Sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4em;
    letter-spacing: 1px;
    margin-top: 10px;

}



.about-us .catergories{
    margin-top: 10px;
    color:white;
    padding: 65px 35px 65px 35px;
    height: 221px;
    width: 780px;
    border-radius :28px;
    border-width: 4px; 
    border-style: solid;
    border-image: radial-gradient(circle at center center, #15386b 70%, #040404 100%) 1;
}


.about-us .company-about{
    background:#244372;
    padding: 30px 20px;
    color:white;
    border-radius: 10px;
    height: 451px;
    width: 700px;
}


.about-us .company-about h2{
    color: #FFFFFF;
  font-family: 'Roboto', sans-serif;
  font-size: 70px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: -4px;
}
.about-us .company-about h3{
    margin-top: 13px;
    color: #FFFFFF;
    font-family: "Inter", Sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2em;
}
.about-us .company-about p{
    margin-top: 15px;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    font-size: 23px;
}

@media (max-width: 1024px) {
    .about-us {
        flex-direction: column;
        align-items: center;
        padding: 10px 20px;
    }

    .about-us .company-growth {
        flex-direction: column;
        align-items: center;
    }

    .about-us .company-growth .ad-revenu {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .about-us .company-growth .ad-revenu .ad-spend,
    .about-us .catergories {
        padding: 30px;
        height: auto;
        width: 601px;
    }

    .about-us .company-about {
        width: 100%;
        max-width: 600px;
        padding: 20px;
        height: auto;
    }

    .about-us .company-about h2 {
        font-size: 50px;
        letter-spacing: -2px;
    }

    .about-us .company-about h3 {
        font-size: 25px;
    }

    .about-us .company-about p {
        font-size: 20px;
    }

    .about-us .company-growth .percent {
        font-size: 50px;
    }

    .about-us .managed-average-worked {
        font-size: 14px;
    }

    .about-us .company-growth .milion-yoy-catergories {
        font-size: 22px;
    }
}


/* 
@media (max-width: 768px) {
    .about-us {
        padding: 5px 10px;
    }
    
    .about-us .company-growth .ad-revenu .ad-spend,
    .about-us .catergories {
        padding: 20px;
        width: 100%;
    }
    
    .about-us .company-about {
        padding: 14px;
        max-width: 100%;
    }
    
    .about-us .company-about h2 {
        font-size: 48px;
    }
    
    .about-us .company-about h3 {
        font-size: 24px;
    }
    
    .about-us .company-about p {
        font-size: 21px;
    }
    
    .about-us .company-growth .percent {
        font-size: 40px;
    }
    
    .about-us .managed-average-worked {
        font-size: 12px;
    }
    
    .about-us .company-growth .milion-yoy-catergories {
        font-size: 18px;
    }
} */
@media (max-width: 768px) {
    .about-us {
        flex-direction: column;
        align-items: center;
        padding: 10px 15px;
    }

    .about-us .company-growth {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .about-us .company-growth .ad-revenu,
    .about-us .catergories {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .about-us .company-growth .ad-revenu .ad-spend,
    .about-us .catergories {
        width: 100%;
        max-width: 400px;
    }

    .about-us .company-about {
        width: 100%;
        padding: 15px;
        height: auto;
        max-width: 400px;
    }

    .about-us .company-about h2 {
        font-size: 45px;
        letter-spacing: -2px;
    }

    .about-us .company-about h3 {
        font-size: 22px;
    }

    .about-us .company-about p {
        font-size: 18px;
    }

    .about-us .company-growth .percent {
        font-size: 45px;
    }

    .about-us .managed-average-worked {
        font-size: 12px;
    }

    .about-us .company-growth .milion-yoy-catergories {
        font-size: 20px;
    }
}
@media (max-width: 480px) {
    .about-us {
        flex-direction: column;
        align-items: center;
        padding: 10px 15px;
    }

    .about-us .company-growth {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .about-us .company-growth .ad-revenu,
    .about-us .catergories {
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: auto;
    }

    .about-us .company-growth .ad-revenu .ad-spend,
    .about-us .catergories {
        width: 100%;
    }

    .about-us .company-about {
        width: 100%;
        padding: 15px;
        height: auto;
    }

    .about-us .company-about h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .about-us .company-about h3 {
        font-size: 20px;
    }

    .about-us .company-about p {
        font-size: 16px;
    }

    .about-us .company-growth .percent {
        font-size: 40px;
    }

    .about-us .managed-average-worked {
        font-size: 12px;
    }

    .about-us .company-growth .milion-yoy-catergories {
        font-size: 18px;
    }
}



 /* feedback styling */
 .feedback-container {
    background-color: #FFF3E8;
    margin-top: 100px;
    padding-bottom: 50px
}

.feedback-container .feedback-heading {
    padding: 32px 47px;
}

.feedback-container h2 {
    color: black;
    font-size: 55px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.15em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.feedback-container .feedback-slider .feedback-slide-track .slide-card {
    /* padding: 1rem 1.5rem; */
    border-radius: 8px;
    height: 420px;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.feedback-container .feedback-slider .feedback-slide-track .slide-card:nth-child(1) {
    background-color: #ffcccb;
}

.feedback-container .feedback-slider .feedback-slide-track .slide-card:nth-child(2) {
    background-color: #fafad2;
}

.feedback-container .feedback-slider .feedback-slide-track .slide-card:nth-child(3) {
    background-color: #e0ffff;
}

.feedback-container .feedback-slider .feedback-slide-track .slide-card:nth-child(4) {
    background-color: #ffdab9;
}

.feedback-container .feedback-slider .feedback-slide-track .slide-card:nth-child(5) {
    background-color: #fff0f5;
}

.feedback-container .feedback-slider .feedback-slide-track .slide-card:nth-child(6) {
    background-color: #f0fff0;
}

.feedback-container .feedback-slider .feedback-slide-track .slide-card:nth-child(7) {
    background-color: #f0f8ff;
}

.feedback-container .feedback-slider .feedback-slide-track .slide-card:nth-child(8) {
    background-color: #f5fffa;
}

.feedback-container .feedback-slider .feedback-slide-track .slide-card:nth-child(9) {
    background-color: #ffe4e1;
}

.feedback-container .feedback-slider .feedback-slide-track .slide-card:nth-child(10) {
    background-color: #fff5ee;
}



.feedback-container .feedback-slider .feedback-slide-track .slide-card .feedback {
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 26px;
    color: #333;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.feedback-container .feedback-slider .feedback-slide-track .slide-card img {
    width: 197px;
    flex-shrink: 0;
}

/* feedback swipper styling */
.feedback-container .feedback-slider {
    margin-top: 30px;
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.feedback-container .feedback-slider .feedback-slide-track {
    display: flex;
    /* width: calc(250px * 18 + 30px * 17); */
    width: calc(300px * 18 + 30px * 17); 
    animation: scroll 50s linear infinite;
    gap: 30px;
}

/* .feedback-container .feedback-slider .feedback-slide-track:hover {
    animation-play-state: paused;
} */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}


/* Media queries for responsiveness */
@media (max-width: 1200px) {
    .feedback-container h2 {
        font-size: 45px;
    }

    .feedback-container .feedback-slider .feedback-slide-track .slide-card {
        width: 250px;
    }

    .feedback-container .feedback-slider .feedback-slide-track {
        width: calc(250px * 18 + 20px * 17);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .feedback-container h2 {
        font-size: 35px;
    }

    .feedback-container .feedback-slider .feedback-slide-track .slide-card {
        width: 200px;
    }

    .feedback-container .feedback-slider .feedback-slide-track {
        width: calc(200px * 18 + 20px * 17);
        gap: 20px;
    }

    .feedback-container .feedback-slider .feedback-slide-track .slide-card .feedback {
        font-size: 20px;
    }
    

    .feedback-container .feedback-slider .feedback-slide-track .slide-card img {
        width: 140px;
    }
}

@media (max-width: 480px) {
    .feedback-container h2 {
        font-size: 25px;
    }

    .feedback-container .feedback-slider .feedback-slide-track .slide-card {
        width: 150px;
    }

    .feedback-container .feedback-slider .feedback-slide-track {
        width: calc(150px * 18 + 15px * 17);
        gap: 15px;
    }

    .feedback-container .feedback-slider .feedback-slide-track .slide-card .feedback {
        font-size: 18px;
    }

    .feedback-container .feedback-slider .feedback-slide-track .slide-card img {
        width: 120px;
    }
}
/* feedback swipper end  */




/* goal styling  */

.goal-container{
    padding: 25px;
    margin-top: 30px;
}
.goal-container .goal .goal-heading{
    padding: 20px 40px;
}

.goal-container .goal .goal-heading h2{
    color: #FFFFFF;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 49px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.goal-container .goal .goal-heading p{
    margin-top: 30px;
    letter-spacing: 2px;
    line-height: 25px;
    color:white;
  /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
  font-family: Georgia, serif;


}

.goal{
    background-color: #15386b;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 25px;
    padding: 36px 59px;

}


.goal-container .goal .goal-img img{
    width: 580px;
    border-radius: 10px;
}

/* Media queries for responsiveness */
@media (max-width: 1200px) {
    .goal .goal-heading h2 {
        font-size: 45px;
    }

    .goal .goal-img img {
        width: 480px;
    }
}

@media (max-width: 1024px) {
    .goal {
        flex-direction: column;
        padding: 20px 30px;
    }

    .goal .goal-heading {
        padding: 10px 20px;
    }

    .goal .goal-heading h2 {
        font-size: 40px;
        text-align: center;
    }

    .goal .goal-heading p {
        text-align: center;
        font-size: 18px;
        line-height: 24px;
    }

    .goal .goal-img img {
        width: 400px;
        margin-top: 20px;
    }
}


@media (max-width: 768px) {
    .goal {
        flex-direction: column;
        padding: 20px 30px;
    }

    .goal-container .goal .goal-heading h2 {
        font-size: 35px;
        text-align: center;
    }

    .goal-container .goal .goal-heading p {
        text-align: center;
        font-size: 20px;
    line-height: 22px;
    }

    .goal-container .goal .goal-img img {
        width: 320px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .goal-container .goal .goal-heading{
        padding: 20px 0px;
    }
    .goal-container .goal .goal-heading h2 {
        font-size: 25px;
    }

    .goal-container .goal .goal-heading p {
        font-size: 16px;
    line-height: 22px;
    }

    .goal-container .goal .goal-img img {
        width: 240px;
        margin-top: 20px;
    }
}

/* services styling  */

.services .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.services .col-lg-4 {
    flex: 0 0 30%;
    max-width: 30%;
}

@media (max-width: 992px) {
    .services .col-lg-4 {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .services .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Service Item Styles */
.services .service-item {
    background-color: #ffffff;
    text-align: center;
    border: 1px solid color-mix(in srgb, #444444, transparent 85%);
    padding: 80px 20px;
    transition: border ease-in-out 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services .service-item .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: #15386b;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.services .service-item .icon i {
    color: #ffffff;
    font-size: 28px;
    transition: ease-in-out 0.3s;
}

.services .service-item h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: 0.3s;
    color:#15386b;
}

.services .service-item p {
    line-height: 24px;
    font-size: 17px;
    margin-bottom: 20px; /* Adjusted margin to give space for the button */
    flex-grow: 1;
}

.services .service-item:hover {
    border-color: #15386b;
}

.services .service-item:hover h3 {
    color: #15386b;
}

/* Section Title Styles */
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title p {
    color: #222222;
    margin: 10px 0 0 0;
    font-size: 32px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

.section-title p .description-title {
    color: #15386b
}

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: color-mix(in srgb, #106eea, transparent 90%);
    color: #15386b;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
    font-family: "Roboto", 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";
}

/* Button Styles */
.services-button {
    background-color: #15386b;
    border-radius: 4px;
    border: 0;
    box-shadow: rgba(1, 60, 136, 0.5) 0 -1px 3px 0 inset, rgba(0, 44, 97, 0.1) 0 3px 6px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inherit;
    font-family: "Space Grotesk", -apple-system, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin: 20px auto 0; /* Center the button and add space from the paragraph */
    min-height: 48px; /* Adjusted min-height */
    min-width: 100px; /* Adjusted min-width */
    padding: 12px 16px; /* Adjusted padding */
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    transition: all 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.services-button:hover {
    background-color: #15386b;
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .services-button {
        padding: 12px 24px; /* Adjusted padding for larger screens */
        min-width: 120px; 
    }
}


/* services container end  */


/* advertising styling */
.advertising-container {
    margin-top: 36px;
    padding: 30px 56px;
}

.advertising-container .advertising {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: space-around; */
}

.advertising-container .advertising .advertising-info {
    background-color: #F68012;
    padding: 50px 30px;
    border-radius: 18px;
    flex: 1;
    margin-right: 20px; /* Space between text and image */
}

.advertising-container .advertising .advertising-info h2 {
    font-size: 60px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 68px;
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.advertising-container .advertising .advertising-info p {
    color: white;
    font-size: 20px;
    /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
    font-family: "Montserrat", sans-serif;
}

.advertising-container .advertising .advertising-info a {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    background-color: black;
    border-style: solid;
    border-width: 1px;
    border-color: #F68012;
    border-radius: 50px;
    padding: 19px 30px;
    transition: all 0.5s;
}


.advertising-container .advertising .advertising-info a:hover {
    color: black;
    background: transparent;
    border: 1px solid black;
}
.advertising-container .advertising .advertising-info div{
    margin-top: 30px;
}


.advertising-container .advertising .advertising-img {
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    /* padding: 10px; */
    display: flex;
    justify-content: center;
    flex: 1;

}

.advertising-container .advertising .advertising-img img {
    /* width: 100%; */
    width: 431px;
    max-width: 580px;
}


/* Responsive Styling */

@media (max-width: 1024px) {
    .advertising-container {
        padding: 20px 30px;
    }

    .advertising-container .advertising {
        flex-direction: column;
        align-items: center;
    }

    .advertising-container .advertising .advertising-info {
        margin-right: 0;
        margin-bottom: 20px;
        padding: 40px 20px;
    }

    .advertising-container .advertising .advertising-info h2 {
        font-size: 48px;
        line-height: 56px;
    }

    .advertising-container .advertising .advertising-info p {
        font-size: 18px;
    }

    .advertising-container .advertising .advertising-info a {
        font-size: 14px;
        padding: 15px 25px;
    }

    .advertising-container .advertising .advertising-img {
        width: 100%;
        border-radius: 18px;
    }

    .advertising-container .advertising .advertising-img img {
        width: 350px;
        max-width: 480px;
    }
}


@media (max-width: 768px) {
    .advertising-container .advertising {
        flex-direction: column;
        /* align-items: flex-start; */
        align-items: center;
    }

    .advertising-container .advertising .advertising-info {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .advertising-container .advertising .advertising-info h2 {
        font-size: 40px;
        line-height: 48px;
    }

    .advertising-container .advertising .advertising-info p {
        font-size: 18px;
    }

    .advertising-container .advertising .advertising-info button {
        font-size: 14px;
        padding: 15px 25px;
    }

    .advertising-container .advertising .advertising-img {
        width: 100%;
        border-radius: 18px; /* Add border radius if needed */
    }
    .advertising-container .advertising .advertising-img img {
        width: 296px;
        max-width: 580px;
    }
}

@media (max-width: 480px) {
    .advertising-container .advertising .advertising-info h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .advertising-container .advertising .advertising-info p {
        font-size: 16px;
    }

    .advertising-container .advertising .advertising-info button {
        font-size: 12px;
        padding: 10px 20px;
    }
}


/* result styling  */

.result-container {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:15px;
}

.result-container .result-heading {
    padding: 19px 4px;
    text-align: center;
}

.result-container .result-heading h1 {
    color: black;
    font-size: 55px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.15em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* result up styling  */

.result-container .result-up-slider .result-slide-track .result-slide-card {
    border-radius: 10px;
  height: 267px;
  padding: 35px;
  margin-bottom: 15px;
  position: relative;
  background-color: #fac390cc;
  background-size: cover;
  background-repeat: no-repeat;
}

.result-container .result-up-slider .result-slide-track .result-slide-card h1{
    margin: 0;
    text-align: center;
    z-index: 1;
    position: relative;
    font-size: 55px;
  line-height: 1;
  font-family: "VC Nudge Trial", Sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.result-container .result-up-slider .result-slide-track .result-slide-card p{
    margin: 0;
    margin-top: 20px;
    text-align: center;
    z-index: 1;
    position: relative;
    color: black;
  font-family: Inter, Sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}



.result-container .result-up-slider .result-slide-track .card-1{
    background: linear-gradient(to bottom, #ffe5b4, #ffcc99);
}
.result-container .result-up-slider .result-slide-track .card-1::before{
    content: '';
    position: absolute;
    top: 12px;
  right: -13px;
  width: 138px;
  height: 78px;
  background-image: url('../img/results-slider/result-05.png');
  background-size: 81px 68px;
    background-position: top;
    background-repeat: no-repeat;
    opacity: 0.5; 
    z-index: 0; 
}


.result-container .result-up-slider .result-slide-track .card-2 {
    background-color:#d4d4d4;
}

.result-container .result-up-slider .result-slide-track .card-2::before {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 1px;
    width: 138px; 
    height: 78px; 
    background-image: url('../img/results-slider/result-03.png');
    /* background-size: 100px 60px; */
    background-size: 150px 70px;
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.5; 
    z-index: 0; 
}


.result-container .result-up-slider .result-slide-track .card-3{
    /* background-color: rgba(135, 206, 250, 0.8); */
    background: white;
    border: 1px solid rgb(189, 148, 35);
}

.result-container .result-up-slider .result-slide-track .card-3::before{
    content: '';
    position: absolute;
    top: 10px; 
    right: 12px;
    width: 138px; 
    height: 78px; 
    background-image: url('../img/results-slider/result-01.png');

    background-size: 110px 60px;
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 0.8; 
    z-index: 0; 

}


.result-container .result-up-slider .result-slide-track .card-4{
    background: linear-gradient(to bottom, #ffe5b4, #ffcc99);
}
.result-container .result-up-slider .result-slide-track .card-4::before{
    content: '';
    position: absolute;
    bottom: 5px;
    right: 1px;
    width: 112px; 
    height: 78px; 
    background-image: url('../img/results-slider/result-02.png');
    background-size: 150px 70px;
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 0.5; 
    z-index: 0; 

}


.result-container .result-up-slider {
    position: relative;
    height: 600px; 
    display: flex; 
    justify-content: center; 
    overflow: hidden;
}

.result-container .result-up-slider .result-slide-track {
    display: flex;
    flex-direction: column;
    height: calc(200px * 6 + 30px * 5); 
    animation: scroll-vertical 10s linear infinite;
}


@keyframes scroll-vertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-100% / 2));
    }
}

.result-container .result-up-slider::before,
.result-container .result-up-slider::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 50px;
    z-index: 1;
}

.result-container .result-up-slider::before {
    top: 0;
    background: linear-gradient(to bottom, #FFF3E8, rgba(255, 243, 232, 0));
}

.result-container .result-up-slider::after {
    bottom: 0;
    background: linear-gradient(to top, #FFF3E8, rgba(255, 243, 232, 0));
}


/* result down styling  */

.result-container .result-down-slider .result-down-slide-track .result-down-slide-card {
    border-radius: 10px;
  height: 267px;
  /* padding: 25px; */
  padding: 35px;
  margin-bottom: 15px;
  position: relative;
  background-color: #fac390cc;
  background-size: cover;
  background-repeat: no-repeat;
}

.result-container .result-down-slider .result-down-slide-track .result-down-slide-card h1{
    margin: 0;
    text-align: center;
    z-index: 1;
    position: relative;
    /* font-size: 55px; */
    font-size: 55px;
  line-height: 1;
  font-family: "VC Nudge Trial", Sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.result-container .result-down-slider .result-down-slide-track .result-down-slide-card p{
    margin: 0;
    margin-top: 20px;
    text-align: center;
    z-index: 1;
    position: relative;
    color: black;
  font-family: Inter, Sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.result-container .result-down-slider .result-down-slide-track .card-d1{
    background-color: white;
    border: 1px solid rgb(189, 148, 35);
}

.result-container .result-down-slider .result-down-slide-track .card-d1::before{
    content: '';
    position: absolute;
    top: 8px; 
    right: 0px;
    width: 138px; 
    height: 78px; 
    background-image: url('../img/result-up-3.png');
    /* background-size: 138px 78px; */
    background-size: 110px 60px;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 0; 
}

.result-container .result-down-slider .result-down-slide-track .card-d2 {
    background-color: #e8f5e9;
}

.result-container .result-down-slider .result-down-slide-track .card-d2::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 9px;
    width: 138px; 
    height: 78px; 
    background-image: url('../img/results-slider/result-05.png');
    /* background-size: 138px 78px; */
    background-size: 81px 68px;
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 0.5; 
    z-index: 0; 
}




.result-container .result-down-slider .result-down-slide-track .card-d3{
    background-color: #d4d4d4;
}
.result-container .result-down-slider .result-down-slide-track .card-d3::before{
    content: '';
    position: absolute;
    bottom: 10px;
  right: 9px;
    width: 138px; 
    height: 78px; 
    background-image: url('../img/result-up-4.png');
    background-size: 81px 68px;
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.5; 
    z-index: 0; 
}

.result-container .result-down-slider .result-down-slide-track .card-d4{
    background: white;
    border: 1px solid rgb(189, 148, 35);
}
.result-container .result-down-slider .result-down-slide-track .card-d4::before{
    content: '';
    position: absolute;
    bottom: 10px; 
    right: 9px;
    width: 138px; 
    height: 78px; 
    background-image: url('../img/results-slider/result-07.png');
    background-size: 81px 68px;
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.5; 
    z-index: 0; 

}

.result-container .result-down-slider {
    position: relative;
    height: 600px; 
    display: flex; 
    justify-content: center; 
    overflow: hidden;
}

.result-container .result-down-slider .result-down-slide-track {
    display: flex;
    flex-direction: column;
    height: calc(200px * 6 + 30px * 5); 
    animation: scroll-vertical-up 10s linear infinite;
}


@keyframes scroll-vertical-up {
    0% {
        transform: translateY(calc(-100% / 2));        
    }
    100% {
        transform: translateY(0);
    }
}



.result-container .result-down-slider::before,
.result-container .result-down-slider::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 50px;
    z-index: 1;
}

.result-container .result-down-slider::before {
    top: 0;
    background: linear-gradient(to bottom, #FFF3E8, rgba(255, 243, 232, 0));
}

.result-container .result-down-slider::after {
    bottom: 0;
    background: linear-gradient(to top, #FFF3E8, rgba(255, 243, 232, 0));
}


@media (max-width: 1024px) {
    .result-container {
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
    }

    .result-container .result-heading h1 {
        font-size: 36px; /* Slightly smaller than mobile */
    }

    .result-container .result-heading p {
        font-size: 16px; /* Adjusted for readability on tablets */
    }

    .result-container .result-up-slider,
    .result-container .result-down-slider {
        height: 350px; /* Adjusted for tablet size */
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card {
        height: 180px; /* Adjusted for tablet size */
        padding: 15px;
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card h1,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card h1 {
        font-size: 28px; /* Adjusted for tablet size */
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card p,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card p {
        font-size: 15px; /* Adjusted for tablet size */
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card::before,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card::before {
        width: 90px; /* Adjusted for tablet size */
        height: 50px; /* Adjusted for tablet size */
    }
}

@media (max-width: 768px) {
    .result-container {
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
        padding: 9px;
    }

    .result-container .result-heading h1 {
        font-size: 40px;
    }

    .result-container .result-heading p{
        font-size: 17px;
    }

    .result-container .result-up-slider,
    .result-container .result-down-slider {
        height: 400px; 
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card {
        height: 200px; 
        padding: 15px;
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card h1,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card h1 {
        font-size: 30px;
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card p,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card p {
        font-size: 16px;
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card::before,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card::before {
        width: 100px;
        height: 56px;
    }
}



/* Responsive adjustments for mobile screens */
@media (max-width: 480px) {
    .result-container .result-heading h1 {
        font-size: 30px;
    }

    .result-container .result-up-slider,
    .result-container .result-down-slider {
        height: 300px;
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card {
        height: 150px; 
        padding: 10px;
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card h1,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card h1 {
        font-size: 24px;
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card p,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card p {
        font-size: 14px;
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card::before,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card::before {
        width: 80px;
        height: 45px;
    }
}
/* result styling done  */



/* unique section  */

@keyframes lights {
    0% {
      color: hsl(230, 40%, 80%);
      text-shadow:
        0 0 1em hsla(320, 100%, 50%, 0.2),
        0 0 0.125em hsla(320, 100%, 60%, 0.3),
        -1em -0.125em 0.5em hsla(40, 100%, 60%, 0),
        1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
    }
    
    30% { 
      color: hsl(230, 80%, 90%);
      text-shadow:
        0 0 1em hsla(320, 100%, 50%, 0.5),
        0 0 0.125em hsla(320, 100%, 60%, 0.5),
        -0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2),
        0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
    }
    
    40% { 
      color: hsl(230, 100%, 95%);
      text-shadow:
        0 0 1em hsla(320, 100%, 50%, 0.5),
        0 0 0.125em hsla(320, 100%, 90%, 0.5),
        -0.25em -0.125em 0.125em hsla(40, 100%, 60%, 0.2),
        0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.4);
    }
    
    70% {
      color: hsl(230, 80%, 90%);
      text-shadow:
        0 0 1em hsla(320, 100%, 50%, 0.5),
        0 0 0.125em hsla(320, 100%, 60%, 0.5),
        0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2),
        -0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
    }
    
    100% {
      color: hsl(230, 40%, 80%);
      text-shadow:
        0 0 1em hsla(320, 100%, 50%, 0.2),
        0 0 0.125em hsla(320, 100%, 60%, 0.3),
        1em -0.125em 0.5em hsla(40, 100%, 60%, 0),
        -1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
    }
    
  }

  .unique-heading{
    background:black;
    margin-top: 34px;
  }
  .unique-heading h2{
    margin: auto;
    font-size: 3.5rem;
    text-align: center;
    font-weight: 500;
    animation: lights 5s 750ms linear infinite;
    text-transform: uppercase;
  }


  .timeline {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0;
    background: black;
  }
  
  .timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: white;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
  }
  
  .timeline-container {
    padding: 15px 30px;
    position: relative;
    background: inherit;
    width: 50%;
  }
  
  .timeline-container.left {
    left: 0;
  }
  
  .timeline-container.right {
    left: 50%;
  }
  
  .timeline-container::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    right: -8px;
    background: #ffffff;
    border: 2px solid white;
    border-radius: 16px;
    z-index: 1;
  }
  
  .timeline-container.right::after {
    left: -8px;
  }
  
  .timeline-container::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    top: calc(50% - 1px);
    right: 8px;
    background: white;
    z-index: 1;
  }
  
  .timeline-container.right::before {
    left: 8px;
  }
  
  .timeline-container .date {
    position: absolute;
    display: inline-block;
    top: calc(50% - 8px);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
  }
  
  .timeline-container.left .date {
    right: -75px;
  }
  
  .timeline-container.right .date {
    left: -75px;
  }
  
  .timeline-container .icon {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 9px 0;
    top: calc(50% - 20px);
    background: white;
    border: 2px solid white;
    border-radius: 40px;
    text-align: center;
    font-size: 18px;
    color: #15386b;
    z-index: 1;
  }
  
  .timeline-container.left .icon {
    right: 56px;
  }
  
  .timeline-container.right .icon {
    left: 56px;
  }
  
  .timeline-container .timeline-content {
    padding: 30px 90px 30px 30px;
    background: #15386b;
    color: white;
    position: relative;
    border-radius: 0 500px 500px 0;
  }
  
  .timeline-container.right .timeline-content {
    padding: 30px 30px 30px 90px;
    border-radius: 500px 0 0 500px;
  }
  
  .timeline-container .timeline-content h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
  }
  
  .timeline-container .timeline-content p {
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    color: #ffffff;
  }
  
  @media (max-width: 767.98px) {
    .timeline::after {
      left: 90px;
    }
  
    .timeline-container {
      width: 100%;
      padding-left: 120px;
      padding-right: 30px;
    }
  
    .timeline-container.right {
      left: 0%;
    }
  
    .timeline-container.left::after, 
    .timeline-container.right::after {
      left: 82px;
    }
  
    .timeline-container.left::before,
    .timeline-container.right::before {
      left: 98px;
      border-color: transparent white transparent transparent;
    }
  
    .timeline-container.left .date,
    .timeline-container.right .date {
      right: auto;
      left: 15px;
    }
  
    .timeline-container.left .icon,
    .timeline-container.right .icon {
      right: auto;
      left: 146px;
    }
  
    .timeline-container.left .timeline-content,
    .timeline-container.right .timeline-content {
      padding: 30px 30px 30px 90px;
      border-radius: 500px 0 0 500px;
    }
  }
  
  /* For extra small devices (portrait phones, up to 375px) */
@media (max-width: 380px) {
    .timeline-container .date {
      font-size: 12px;
    }
  
    .timeline-container .icon {
      width: 30px;
      height: 30px;
      font-size: 16px;
      padding: 5px 0;
    font-size: 16px;
    top: calc(50% - 15px);
    }
  
    .timeline-container .timeline-content h2 {
      font-size: 16px;
    }
  
    .timeline-container .timeline-content p {
      font-size: 14px;
      line-height: 18px;
    }
  }
  

/* team styling  */
.team-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 500px;
    position: relative; /* Ensure container is positioned relative for absolute positioning of modal */
    margin-top: 40px;
  }
  
 .team-container .team-bg {
    background-color:#15386b;
    width: 40%;
    height: 100%;
  }
  
.team-container .team-img {
    background: url('../img/businesspeople-meeting-office-working.jpg') center center no-repeat;
    background-size: cover;
    width: 60%;
    height: 100%;
    border-radius: 10px;
    padding: 10px;

  }
  
  /* Modal-like div styles */
 .team-container .modal-content {
    position: absolute; 
    top: 11%; 
    left:15%; 
    background: #ffffffe6; 
    padding: 20px;
    border-radius: 5px;
    max-width: 500px; 
    width: 80%; 
    height: 395px; 
  }
  .team-container .modal-content h1{
    font-size: 49px;
  font-weight: 700;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  text-transform: uppercase;
  }
  .team-container .modal-content p{
    font-family: "Arial", sans-serif; /* Use a clean, readable font */
    font-size: 16px; /* Set a comfortable font size */
    line-height: 1.4; /* Improve readability with line height */
    color: #333; /* Choose a dark color for better contrast */
    margin: 2px 0 1em 0; /* Add space below each paragraph */
    border-left: 3px solid #15386b; /* Add a decorative border */
    padding-left: 16px; /* Add space between border and text */
  }

  
  .team-container .modal-content .btn {
    font-family: "Inter", Sans-serif;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    background-color: #15386b;
    border: none;
    border-radius: 50px;
    padding: 20px 50px;
    transition: all 0.5s;
    text-decoration: none;
    display: inline-block; 
    text-align: center;
    cursor: pointer; 
    width: 50%;
  }
  
  .team-container .modal-content .btn:hover {
    background: black;
    color: white;
  }

  /* Responsive styles */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        height: auto;
        margin-top: 20px;
    }

    .team-container .team-bg,
    .team-container .team-img {
        width: 100%;
        height: 250px; /* Adjust height as needed */
    }

    .team-container .modal-content {
        position: absolute;
        top: 29%;
        left: 50%;
        transform: translate(-50%, -50%); /* Center the modal content */
        background: #ffffffe6;
        padding: 20px;
        border-radius: 24px;
        max-width: 90%;
        width: 90%;
        height: 280px; /* Adjust height for smaller screens */
    }

    .team-container .modal-content h1 {
        font-size: 30px; /* Adjust font size for smaller screens */
    }

    .team-container .modal-content p {
        font-size: 14px; /* Adjust font size for smaller screens */
        padding-left: 10px; /* Adjust padding for smaller screens */
    }

    .team-container .modal-content .btn {
        font-size: 14px; /* Adjust font size for smaller screens */
        padding: 15px 30px; /* Adjust padding for smaller screens */
        width: auto; /* Make button width auto for better fit */
    }
}

@media (max-width: 480px) {
    .team-container .modal-content {
        bottom: 10px;
        right: 10px;
        padding: 10px;
    }

    .team-container .modal-content h1 {
        font-size: 24px; /* Further reduce font size for very small screens */
    }

    .team-container .modal-content p {
        font-size: 12px; /* Further reduce font size for very small screens */
        padding-left: 5px; /* Further adjust padding for very small screens */
    }

    .team-container .modal-content .btn {
        font-size: 12px;
        padding: 10px 20px; /* Further adjust padding for very small screens */
    }
}


  /* Testimonial Section */
.testimonial-container {
    padding: 20px;
    background-color: #f5f5f5;
    margin-top: 30px;
}

.testimonial-container .testimonial {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.testimonial-container .testimonial .testimonial-header {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    flex-direction: column;
    padding: 0 31px;
    flex: 1;
}

.testimonial-container .testimonial .testimonial-header .testimonial-heading {
    text-align: left;
    flex: 1;
}

.testimonial-container .testimonial .testimonial-header .testimonial-heading h1 {
    font-size: 47px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.testimonial-container .testimonial .testimonial-header .testimonial-heading .testimonial-heading p {
    font-size: 19px;
    color: #777;
}

.testimonial-container .testimonial .testimonial-header .testimonial-buttons {
    display: flex;
    gap: 10px;
}

.testimonial-container .testimonial .testimonial-header .testimonial-buttons button {
    background-color: #15386b;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-container .testimonial  .testimonial-cards {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 20px;
    flex: 1;
    scroll-snap-type: x mandatory;
}

.testimonial-container .testimonial  .testimonial-cards .testimonial-card {
    min-width: 300px;
    background-color: #fff;
    /* height: 286px; */
    padding: 11px 32px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}


.testimonial-container .testimonial  .testimonial-cards .testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-container .testimonial  .testimonial-cards .testimonial-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
    padding-left: 40px;
    font-style: italic;
}

.testimonial-container .testimonial  .testimonial-cards .testimonial-card .member-info h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    color: #2f4d5a;
    position: relative;
    padding-bottom: 10px;
}
.testimonial-container .testimonial  .testimonial-cards .testimonial-card .member-info h4::after{
    content: "";
  position: absolute;
  display: block;
  text-align: center;
  width: 50px;
  height: 1px;
  background: #b1cbd7;
  bottom: 0;
  left: calc(50% - 25px);

}


.testimonial-container .testimonial  .testimonial-cards .testimonial-card .quote-icon {
    position: absolute;
    top: 6px;
    left: 10px;
    font-size: 4em;
    color: #15386b;
    opacity: 0.8;
}



/* Responsive styling for small screens */
@media (max-width: 768px) {
    .testimonial-container .testimonial {
        flex-direction: column;
    }

    .testimonial-container .testimonial .testimonial-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
    }

    .testimonial-container .testimonial .testimonial-header .testimonial-heading h1 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .testimonial-container .testimonial .testimonial-header .testimonial-heading p {
        font-size: 20px;
    }

    .testimonial-container .testimonial .testimonial-cards {
        flex-direction: row;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
    }

    .testimonial-container .testimonial .testimonial-cards .testimonial-card {
        min-width: 100%;
        flex: 0 0 100%;
    }

    .testimonial-container .testimonial .testimonial-cards .testimonial-card p {
        font-size: 1em;
        /* padding-left: 30px; */
    }

    .testimonial-container .testimonial .testimonial-cards .testimonial-card h5 {
        font-size: 1.2em;
    }
}


/* logos styling  */

.logos-container{
    margin-top: 20px;
    padding: 15px 40px;
    
}
.logos-container .logos{
    background-color: #F2B073;;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    padding: 44px;
}
.logos-container .logos .logo img{
    width: 150px;
}
/* Responsive styles */

/* For tablets and small screens */
@media (max-width: 1024px) {
    .logos-container .logos {
        flex-direction: row; /* Keep logos in a row for tablets */
        flex-wrap: wrap; /* Allow logos to wrap if necessary */
        justify-content: center; /* Center logos horizontally */
        padding: 20px; /* Adjust padding */
        gap: 20px; /* Adjust gap between logos */
    }

    .logos-container .logos .logo img {
        width: 120px; /* Adjust logo size for tablets */
    }
}

@media (max-width: 768px) {
    .logos-container .logos {
        flex-direction: column; /* Stack logos vertically */
        align-items: center; /* Center logos horizontally */
        padding: 25px; /* Remove padding */
        gap:26px;
    }

  
    .logos-container .logos .logo img {
        width: 150px; /* Increase logo size for smaller screens */
    }
}

@media (max-width: 480px) {

    .logos-container .logos .logo img {
        width: 100px; /* Adjust logo size for very small screens */
    }
}

/* logos styling done  */


/* steps styling */
.steps{
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
}

.steps h1{
    text-transform: uppercase;
    font-size: 62px;
    font-weight: 700;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.steps a {
    font-family: "Inter", Sans-serif;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    background-color: #15386b;
    border: none;
    border-radius: 50px;
    padding: 20px 50px;
    transition: all 0.5s;
    text-decoration: none;
    display: inline-block; 
    text-align: center;
    cursor: pointer; 
    width: 16%;
  white-space: nowrap;
  }
  .steps a:hover{
    color:#15386b;
    background-color: transparent;
    border:1px solid #15386b;

  }

/* Responsive styling for small screens */

@media (max-width: 1024px) {
    .steps {
        flex-direction: column;
        align-items: center;
        text-align: center; /* Center-align text for better appearance */
    }

    .steps h1 {
        font-size: 52px; /* Adjust font size for tablets */
    }

    .steps a {
        font-size: 15px; /* Adjust font size for tablets */
        padding: 15px 35px; /* Adjust padding */
        width: auto; /* Adjust width to fit text */
    }
}
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .steps h1 {
        font-size: 48px;
        text-align: center;
    }

    .steps a {
        font-size: 14px;
        padding: 15px 30px;
        width: auto; /* Adjust width to fit text */
    }
}

@media (max-width: 480px) {
    .steps h1 {
        font-size: 36px;
    }

    .steps a {
        font-size: 12px;
        padding: 10px 20px;
        width: auto; /* Adjust width to fit text */
    }
}





/* Stepper container styling */
.stepper-container {
    text-align: center;
    width: 100%;
    padding: 40px 20px; /* Added padding for spacing */
    box-sizing: border-box;
}

/* Stepper progress container styling */
.stepper-progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1200px; /* Optional: Set a max-width */
    margin: 0 auto 30px; /* Center the container */
}

.stepper-progress-container:before {
    content: "";
    width: 100%;
    background-color: #f1f1f1;
    height: 8px; /* Increased height */
    position: absolute;
    z-index: -1;
}

/* Stepper progress bar styling */
.stepper-progress {
    width: 0;
    background-color:#15386b;
    height: 8px; /* Increased height */
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    z-index: -1;
    transition: 0.4s ease-in-out;
}
.stepper-heading {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* Stepper circle styling */
.stepper-circle {
    background: #fff;
    height: 60px; /* Increased height */
    width: 60px; /* Increased width */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #f1f1f1;
    border-radius: 50%;
    font-size: 24px; /* Increased font size */
}

.stepper-circle.active {
    border-color: #15386b;
    transition: 0.6s ease-in;
}

/* Stepper button styling */
.stepper-btn {
    border: none;
    padding: 10px 15px;
    width: 100px; /* Increased width */
    font-size: 16px; /* Increased font size */
    border-radius: 5px;
    background: #15386b;
    color: #fff;
    cursor: pointer;
    margin: 5px; /* Add margin to space out buttons */
}

.stepper-btn:disabled {
    background: #f1f1f1;
    color: #000;
    cursor: not-allowed;
}

/* Responsive styling for small screens */
@media (max-width: 768px) {
    .stepper-progress-container {
        flex-wrap: wrap;
        justify-content: center; /* Center the circles */
        position: relative; /* Ensure that progress bar is positioned relative to its container */
    }

    .stepper-progress-container:before {
        width: 8px; /* Set width to make it vertical */
        height: 100%; /* Make the progress bar cover the height of the container */
        top: 0; /* Align to the top */
        left: 50%; /* Center horizontally */
        transform: translateX(-50%); /* Centering */
    }

    .stepper-progress {
        width: 8px; /* Make the progress bar vertical */
        height: 0; /* Set height to 0 initially */
        top: 0; /* Align to the top */
        bottom: 0; /* Extend to the bottom */
        transform: translateY(0); /* No vertical translation */
        transition: height 0.4s ease-in-out;
    }
    .stepper-circle {
        height: 40px;
        width: 40px;
        font-size: 16px;
        margin: 10px 0; /* Add space between stacked circles */
    }

    .stepper-heading {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .stepper-btn {
        width: auto; /* Allow buttons to adjust width */
        padding: 6px 21px;
    font-size: 18px
    }
}

@media (max-width: 480px) {
    .stepper-progress-container {
        flex-direction: column; /* Stack circles vertically */
        align-items: center;
    }

    .stepper-progress-container:before {
        height: auto; /* Reset height */
        width: 8px; /* Maintain vertical width */
        top: 6px;
        bottom: 6px;
    }

    .stepper-progress {
        width: 8px; /* Maintain vertical width */
        height: 0; /* Set height to 0 initially */
    }

    .stepper-circle {
        height: 40px;
        width: 40px;
        font-size: 16px;
        margin: 5px 0; /* Add space between stacked circles */
    }

    .stepper-heading {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .stepper-btn {
        width: auto; /* Allow buttons to adjust width */
        padding: 6px 21px;
    font-size: 18px
    }
}


/* Call To Action Section --------------------------------*/
#case-studies {
    background: #081e5b;
    background-size: cover;
    padding: 40px 0;
  }
  
  #case-studies .cta-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 40px;
  }
  
  #case-studies .cta-text {
    color: #fff;
    font-size: 20px;
  }
  
  #case-studies .cta-btn-container {
    margin-top: 20px;
  }
  
  #case-studies .cta-btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 26px;
    border-radius: 3px;
    transition: 0.5s;
    border: 3px solid #fff;
    color: #fff;
  }
  #case-studies img{
    width: 370px;
    border-radius: 10px;
  }
  
  #case-studies .cta-btn:hover {
    background: #50d8af;
    border: 3px solid #50d8af;
  }
  
  /* Responsive Styling */

  /* Responsive Styling for Tablets (up to 1024px) */
@media (max-width: 1024px) {
    #case-studies .row {
        flex-direction: column-reverse; /* Stack content with image on top */
        text-align: center; /* Center-align text */
    }

    #case-studies .cta-title {
        font-size: 32px; /* Adjust font size for tablets */
    }

    #case-studies .cta-text {
        font-size: 18px; /* Adjust font size for tablets */
    }

    #case-studies .cta-btn-container {
        display: block; /* Ensure button container is centered */
        margin-top: 20px;
    }

    #case-studies img {
        width: 300px; /* Adjust image size for tablets */
        margin-bottom: 20px; /* Space between image and text */
    }
}
  @media (max-width: 768px) {
    #case-studies .row {
      flex-direction: column-reverse;
      text-align: center;
    }
  
    #case-studies .cta-title {
      font-size: 30px;
    }
  
    #case-studies .cta-text {
      font-size: 18px;
    }
  
    #case-studies .cta-btn-container {
      display: block;
      margin-top: 20px;
    }
  
    #case-studies img {
        width: 250px;
      margin-bottom: 20px;
    }
  }
  

  /* footer styling  */
  
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #081e5b;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
    margin-top: 60px;
  }
  

  #footer .footer-top {
    background: #081e5b;
    border-top: 1px solid #43677a;
    border-bottom: 1px solid #43677a;
    padding: 60px 0 30px 0;
  }
  
  #footer .footer-top .footer-info {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-info h3 {
    font-size: 18px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    color: white;
    font-weight: 600;
  }
  
  #footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
    color: #fff;
  }
  
  #footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #2f566a;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  
  #footer .footer-top .social-links a:hover {
    background: #0d2735;
    color: #fff;
    text-decoration: none;
  }
  
  #footer .footer-top h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    position: relative;
    padding-bottom: 12px;
  }
  
  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #a2cce3;
    font-size: 18px;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  #footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul a:hover {
    color: #a2cce3;
  }
  
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-contact p {
    line-height: 26px;
  }
  

 