*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Base Styles */
body {
    background-color: white;
}
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: 86%;
    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 14px 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;
}
   
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
      
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero-section {
    background-color: #ffffff;
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
    text-align: center;
  }
  
  .hero {
    width: 100%;
    position: relative;
    padding: 120px 0 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero-text h3 {
    text-transform: uppercase; 
    color: black;
    font-family: "Raleway", sans-serif;
  }
  
  .hero-text h1 {
    margin: 0;
    font-size: 55px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 56px;
    color: black;
    font-family: "Raleway", sans-serif;
  }
  
  .hero-text p {
    color: #212529;
    margin: 5px 0 30px 0;
    font-size: 25px;
    font-weight: 400;
  }
  
  .hero-img img {
    border-radius: 10px;
    width: 100%;
    height: auto;
  }
  
  @media (max-width: 1024px) {
    .hero-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .hero-img {
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      padding: 60px 0 30px 0;
    }
  
    .hero-text h1 {
      font-size: 37px;
      line-height: 44px;
    }
  
    .hero-text h3 {
      font-size: 22px;
      line-height: 28px;
    }
  
    .hero-text p {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 15px;
    }
  }
  
/* primary heading  */
  .primary-heading{
    margin-top: 20px;
}
.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: 30px;
    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;
}

.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);
}


/* core focus styling  */
.core-focus-container {
    display: flex;
    width: 100%;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    justify-content: center;
    gap: 20px; /* Adds space between the cards */
}

.core-focus-container .card {
    flex: 0 0 45%; /* Decreases the width of each card */
    display: flex;
    flex-direction: column; /* Ensure the card content is arranged vertically */
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 15px;
    height: calc(100% - 40px); /* Account for the padding */
}

.core-focus-container .card-text {
    border: 3px solid #15386b;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.core-focus-container .card-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.core-focus-container .card-text p {
    font-size: 24px;
    margin-bottom: 10px;
}

.core-focus-container .card-image {
    background-image: url('../../assets/img/about%20us/core-focus.jpg');
    background-size: cover;
    background-position:center;
    border-radius: 15px;
    width: 100%;
    height: 100%;
}

/* Responsive styles for tablets */
@media (max-width: 1024px) {
    .core-focus-container {
        flex-direction: column;
        height: auto; /* Adjust height to fit content */
        gap: 15px; /* Reduce space between cards */
    }

    .core-focus-container .card {
        flex: 0 0 100%; /* Full width for each card */
        height: auto; /* Adjust height to fit content */
    }

    .core-focus-container .card-text h1 {
        font-size: 36px; /* Smaller font size for tablet screens */
    }

    .core-focus-container .card-text p {
        font-size: 20px; /* Smaller font size for tablet screens */
    }

    .core-focus-container .card-image {
        min-height: 450px; 
    }
}


@media (max-width: 768px) {
    .core-focus-container {
        flex-direction: column;
        height: auto; /* Adjust height to fit content */
    }

    .core-focus-container .card {
        flex: 0 0 100%; /* Full width for each card */
        height: auto; /* Adjust height to fit content */
    }

    .core-focus-container .card-text h1 {
        font-size: 32px; /* Smaller font size for smaller screens */
    }

    .core-focus-container .card-text p {
        font-size: 18px; /* Smaller font size for smaller screens */
    }
    .core-focus-container .card-image {
        min-height: 300px; /* Ensure the image has a minimum height */
    }
}

/* core focus styling end  */


.values-direction-container {
    display: flex;
    width: 100%;
    /* min-height: 100vh; */
    padding: 20px;
    box-sizing: border-box;
    justify-content: center;
    gap: 20px; /* Adds space between the cards */
}

.values-direction-container .card {
    flex: 0 0 45%; /* Decreases the width of each card */
    display: flex;
    flex-direction: column; /* Ensure the card content is arranged vertically */
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 15px;
    min-height: calc(100% - 40px); /* Account for the padding */
}

.values-direction-container .values-text, .values-direction-container .direction-text {
    border: 3px solid #15386b;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.values-direction-container .values-text h1, .values-direction-container .direction-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.values-direction-container .values-text p, .values-direction-container .direction-text p {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Responsive styles for tablets */
@media (max-width: 1024px) {
    .values-direction-container {
        flex-direction: column;
        padding: 15px; /* Adjust padding for tablets */
    }

    .values-direction-container .card {
        flex: 0 0 100%; /* Full width for each card on tablets */
        margin-bottom: 20px; /* Space between cards */
        min-height: auto; /* Adjust height for smaller screens */
    }

    .values-direction-container .values-text h1, .values-direction-container .direction-text h1 {
        font-size: 40px; /* Smaller font size for tablets */
    }

    .values-direction-container .values-text p, .values-direction-container .direction-text p {
        font-size: 20px; /* Smaller font size for tablets */
    }
}

@media (max-width: 768px) {
    .values-direction-container {
        flex-direction: column;
        padding: 10px;
    }

    .values-direction-container .card {
        flex: 0 0 100%;
        margin-bottom: 20px; /* Add space between the cards when stacked */
        min-height: auto; /* Adjust height for smaller screens */
    }

    .values-direction-container .values-text h1, .values-direction-container .direction-text h1 {
        font-size: 36px;
    }

    .values-direction-container .values-text p, .values-direction-container .direction-text p {
        font-size: 18px;
    }
}


/* History section styling */

.history-section {
    display: flex;
    align-items: stretch;
    padding: 50px;
    gap: 20px;
  }
  
  .history-content, .history-image {
    flex: 1;
    box-sizing: border-box;
  }
  
  .history-content {
    padding: 20px;
    font-family: 'Open Sans', sans-serif;
  }
  
  .history-content h3 {
    font-size: 28px;
    font-weight: 600;
  }
  
  .history-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin: 20px 0;
    font-family: 'Roboto', sans-serif;
  }
  
  .history-content p {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: black;
  }
  
   .history-image {
    background-image: url('../../assets/img/about%20us/history.jpg');
    border-radius: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 750px; 
  }
/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .history-section {
        flex-direction: column;
        padding: 30px;
        gap: 15px;
    }

    .history-content h1 {
        font-size: 48px;
    }

    .history-content h3 {
        font-size: 24px;
    }

    .history-content p {
        font-size: 19px;
    }

    .history-image {
        min-height: 600px;
        margin-top: 20px; /* Optional: Adds space between content and image */
    }
}


@media screen and (max-width: 768px) {
    .history-section {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .history-content h1 {
        font-size: 40px;
    }

    .history-content h3 {
        font-size: 22px;
    }

    .history-content p {
        font-size: 18px;
    }

    .history-image {
        min-height: 400px;
        margin-top: 20px; /* Add margin only if needed */
    }
}
/* 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; 
    }
}





/* result styling  */

.result-container {
    /* background-color: #FFF3E8; */
    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("../../assets/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('../../assets/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('../../assets/img/results-slider/result-01.png');
    /* background-size: 138px 78px; */
    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('../../assets/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;
}

/* .result-container .result-up-slider .result-slide-track:hover {
    animation-play-state: paused;
} */

@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('../../assets/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('../../assets/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('../../assets/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('../../assets/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;
}


/* .result-container .result-down-slider .result-down-slide-track:hover {
    animation-play-state: paused;
} */


@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));
}


/* Responsive adjustments for screens up to 1024px wide (tablets and small laptops) */
@media (max-width: 1024px) {
    .result-container {
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
        padding: 9px;
    }

    .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 */
    }
}


/* Responsive adjustments for tablets and smaller screens */
@media (max-width: 768px) {
    .result-container {
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
    }

    .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; /* Adjusted height for smaller screens */
    }

    .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; /* Adjusted height for smaller screens */
        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; /* Adjusted height for mobile screens */
    }

    .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; /* Adjusted height for mobile screens */
        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  */



/* 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;
    }
}


/* Responsive Styling */
@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;
    }
}


  /* 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: #f0a157;
    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  */


/* footer styling  */
#footer {
    margin-top: 60px;
    background: #081e5b;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
  }
 
  #footer .footer-top {
    /* background: #0d2735; */
    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; */
    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: #d5e4e6;
    font-size: 18px;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    color: #a2cce3;
    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;
  }
  
