
  @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@600&display=swap');

/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    
    
}

.announcement-bar {
    width: 100%;
    background-color: rgb(10, 31, 68);
    color: #ffbb00;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
   padding: 10px;
}

.fixed-text {
    flex: none;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 30px;
}

.marquee {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 15s linear infinite;
    font-size: 1.2rem;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.logobox {
    display: flex;
    justify-content: center; /* Center the logo box */
    align-items: center; /* Center items vertically */
    overflow-x: hidden;
}


.logo {
    display: flex;
    justify-content: space-around; /* Space the text elements evenly */
    align-items: center; /* Center text vertically */
    flex: 1;
    color: black;
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 10px;
    height: 100px;
}

.logo-text {
    margin-bottom: 45px; /* Add some margin to ensure there's space between texts */
    font-weight: 800px;
}

.apply-btn1 {
    display: block;
    color: black;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid orange;
    padding: 10px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    transition: 0.5s;
}

.apply-btn1:hover {
    background: orange;
    color: white;
}

.apply-btn1::before {
    background: orange;
    content: "";
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: -1;
    transition: all 0.6s ease;
    width: 100%;
    height: 0;
}

.apply-form {
    display: none;
    width: 80%;
    max-width: 600px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1003;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
}

form h3 {
    color: #555;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

form input, form textarea {
    border: 1px solid #ccc;
    margin: 10px 0;
    padding: 15px;
    background: #f5f5f5;
    font-size: 16px;
    border-radius: 5px;
}

form button {
    padding: 15px;
    background: #ff5361;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    margin-top: 20px;
}

.icon-close-form {
    position: absolute;
    top: 10px;
    right: 10px;
    color: black;
    cursor: pointer;
}
/* Header Styles */
/* Header Styles 
header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: #d9e2e3 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1001;
    overflow: visible;
}


header ul {
    flex: 2;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
}

header ul li {
    position: relative;
}

header ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: black;
    font-weight: 900;
    text-transform: uppercase;
    padding: 10px 15px;
    font-size: 1.2em;
    overflow: hidden;
}

header ul li a span {
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
    text-shadow: 0 0 5px #69cffa;
}

header ul li a:before,
header ul li a:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 0;
    background-color: #18f08b;
    transition: width 0.5s;
    z-index: 0; /* Ensure the lines are behind the text 
}

header ul li a:before {
    left: 0;
    top: 0;
}

header ul li a:after {
    right: 0;
    bottom: 0;
}

header ul li:hover > a:before,
header ul li:hover > a:after {
    width: 100%;
}

/* Dropdown Content 
header ul li .dropdown-content {
    display: none;
    position: absolute;
    background-color: #d9e2e3;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

header ul li:hover .dropdown-content {
    display: block;
}

header ul li .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.5s;
}

header ul li .dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Blink Effect 
@keyframes blink {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

header ul li .dropdown-content a:hover span {
    animation: blink 0.8s;
}

/* Remove green line hover effect for dropdown-content links 
header ul li .dropdown-content a:before,
header ul li .dropdown-content a:after {
    width: 0; /* Ensure no green line 
    transition: none; /* Disable width transition 
}

header ul li .dropdown-content a:hover:before,
header ul li .dropdown-content a:hover:after {
    width: 0; /* Ensure no green line on hover 
}


.menu-toggle {
    display: none;
    font-size: 1.5em;
    margin-right: 50px;
    cursor: pointer;
}

.menu-toggle i {
    color: black;
}

.menu-items {
    display: flex;
    align-items: center;
}



/* Dropdown Styles 
.menu-items .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f7f2f2;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(114, 112, 112, 0.2);
    top: 100%;
    left: 0;
    z-index: 1002; /* Increased z-index to ensure it appears in front 
}

.menu-items .dropdown-content li {
    display: block;
}

.menu-items .dropdown-content li a {
    padding: 10px 20px;
    text-decoration: none;
    color: rgb(5, 4, 4);
    display: block;
}

.menu-items .dropdown:hover .dropdown-content {
    display: block;
}

#chk1{
    display: none;
}
*/




/* === HEADER STYLES === */
header {
    position: sticky!important;
    top: 0;
    width: 100%;
    height: 75px;
    background-color: #0A1F44;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1001;
    overflow: visible;
    transition: transform 0.4s ease, opacity 0.4s ease;
     
  }
  
  header ul {
    flex: 2;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
  }
  
  header ul li {
    position: relative;
  }
  
  header ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 800;
    text-transform: uppercase;
    padding: 10px 15px;
    font-size: 1em;
    overflow: hidden;
    margin-top: 20px;
  }
  
  header ul li a span {
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
    text-shadow: 0 0 5px #000000;
  }
  /* Header Styles */
  header ul li a:before,
  header ul li a:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 0;
    background-color: #ffffff;
    transition: width 0.5s;
    z-index: 0; /* Ensure the lines are behind the text */
  }
  
  header ul li a:before {
    left: 0;
    top: 0;
  }
  
  header ul li a:after {
    right: 0;
    bottom: 0;
  }
  
  header ul li:hover > a:before,
  header ul li:hover > a:after {
    width: 100%;
  }
  
  /* Dropdown Content */
  header ul li .dropdown-content {
    display: none;
    position: absolute;
    background-color: #0A1F44;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  header ul li:hover .dropdown-content {
    display: block;
  }
  
  header ul li .dropdown-content a {
    color: rgb(0, 0, 0);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.5s;
  }
  
  header ul li .dropdown-content a:hover {
    background-color:#0A1F44;
  }
  
  /* Blink Effect */
  @keyframes blink {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  header ul li .dropdown-content a:hover span {
    animation: blink 0.8s;
  }
  
  /* Remove green line hover effect for dropdown-content links */
  header ul li .dropdown-content a:before,
  header ul li .dropdown-content a:after {
    width: 0; /* Ensure no green line */
    transition: none; /* Disable width transition */
  }
  
  header ul li .dropdown-content a:hover:before,
  header ul li .dropdown-content a:hover:after {
    width: 0; /* Ensure no green line on hover */
  }
  
  /* Dropdown Styles */
  .menu-items .dropdown-content {
    display: none;  
    position: absolute;
    background-color: #0A1F44;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(114, 112, 112, 0.2);
    top: 100%;
    left: 0;
    z-index: 1002; /* Increased z-index to ensure it appears in front */
  }
  
  .menu-items .dropdown-content li {
    display: block;
  }
  
  .menu-items .dropdown-content li a {
    padding: 10px 20px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    display: block;
  }
  
  .menu-items .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* === HAMBURGER ICON === */
  .hamburger {
    cursor: pointer;
    position: absolute;
    left: 20px;     /* This puts it 20px from the right edge */
    top: 40px;       /* Adjust this value to move it further down */
    display: none;   /* hidden by default, shown on mobile with media query */
    z-index: 1100;
  }
  
  
  .hamburger input {
    display: none;
  }
  
  .hamburger svg {
    height: 3em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .line {
    fill: none;
    stroke: black;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .line-top-bottom {
    stroke-dasharray: 12 63;
  }
  
  .hamburger input:checked + svg {
    transform: rotate(-45deg);
  }
  
  .hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
  }
  
  /* === MEDIA QUERIES === */
  @media screen and (max-width: 1024px) {
    .hamburger {
      display: block;
      position: sticky;
      transform: translatex(40%);
      top: 30px;          /* Move it down */
      right: 10px;        /* Move it to the right */
      background-color: #0A1F44;
      border-radius: 25px;
      width:-200px;        /* Remove full width */
      height:50px ;       /* No forced height */
      z-index: 1100;
      
      
    }
  
  
    
    .hamburger svg {
      display: block;
      margin: 0 auto;
    }
  
    header {
      transform: translateY(-150%);
      opacity: 0;
      position: fixed;
      top: 0;
      left: 0;
      background-color: #0A1F44;
      flex-direction: column;
      height: auto;
      padding: 20px;
      z-index: 1000;
    }
  
    header.active {
      transform: translateY(0);
      opacity: 1;
    }
  
    header ul {
      flex-direction: column;
      gap: 10px;
      padding: 10px 0;
    }
  }
  
  
  @media screen and (max-width: 1024px) {
    header {
      transform: translateY(-130%);
      opacity: 0;
      position: fixed;
      top: 215px; /* Push it down a bit from top */
      left: 0;
      background-color: #0A1F44;
      flex-direction: column;
      height: auto;
      padding: 20px;
      transition: transform 0.4s ease, opacity 0.4s ease;
      z-index: 1000;
    }
  
    header.active {
      transform: translateY(0);
      opacity: 1;
    }
  
    .hamburger {
      display: block;
      position: fixed;
      top: 190px;
      right: 20px;
      background-color: #1e86b7;
      color: #fff;
      padding: 5px;
      border-radius: 20px;
      z-index: 1100;
    }
  }
  


 /* Slider Styles */
.slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin-top: 0px; /* Account for the fixed header height */
    background-color: #d9e2e3;
   
}
  @media screen and (max-width: 1024px) {
    .slider {
        width: 500px;
        height: 500px;
        margin-top:-550px;
    }
  }

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Below Slider */
.sec2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    background-color: #edeff3;
    text-align: center;
    padding: 20px;
    color: white;
    margin-bottom: 1px; /* Added margin to prevent overlap */
}

.sec2 h1,
.sec2 p {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 1s ease-in-out, transform 0.8s ease-in-out;
}
.sec2 h1 {
    position: relative;
    font-size: 45px;
    color: #0A1F44;
    margin-bottom: 20px;
}
.sec2 p {
    position: relative;
    font-size: 22px;
    color: rgb(0, 0, 0);
    margin-top: 20px;
    max-width: 1000px;
    line-height: 1.6;
}
.sec2 .line {
    width: 50%;
    height: 2px;
    background-color: #0A1F44;
    margin: 20px 0;
}

.sec2.show-animate h1,
.sec2.show-animate p {
    opacity: 1;
    transform: translateY(0);
}

/* Counters Section */
.counters-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 50vh;
    transform: translateY(70px);
    transition: transform 1s ease-in-out;
    margin-bottom: 10px; /* Added margin to prevent overlap */
}

.counters-section.show-animate {
    transform: translateY(0);
}

.counters1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 3em 2em;
    text-align: center;
    margin-top: 100px;
    
}

.counter1 {
    width: 400px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 1em;
    background-color: #ffffff; /* Set background color to white */
    border: 3px solid #0A1F44;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    
}
.ci1{
    height: 110px;
    margin-top: 10px;
}
.ci2{
    height: 100px;
    margin-top: 40px;
}
.counter1 h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    color: #000;
}

.counter1 h3 {
    font-size: 1.5em;
}

@media screen and (max-width: 1024px) {
    .counter1 {
        width: calc(50% - 2em);
        height: 400px;
        box-sizing: border-box;
    
       

    }
    .counters1{
        margin-top: -50px;
    }
 
}



/* Sec3 Section */

.sec3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    text-align: center;
    padding: 20px;
    color: #3be17b; /* Green color for heading */
    position: relative; /* Ensure relative positioning for absolute children */
    z-index: 5; /* Ensure higher z-index than .after-sec2 for overlay */
    transition: opacity 1s ease-in-out, transform 2s ease-in-out; /* Smooth transition effects */
    opacity: 0;
    transform: translateX(50px);
   


}

.sec3 h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: #a8c1e2; /* Green color for heading */
    
}

.sec3 p {
    font-size: 30px; /* Adjusted font size for paragraph */
    margin-top: 20px;
    max-width: 80%; /* Adjusted maximum width */
    line-height: 1.6;
    color: rgb(0, 0, 0); /* Aqua color for paragraph text */
}

.sec3 .line {
    width: 50%;
    height: 2px;
    background-color: #000000;
    margin: 20px 0;
}

.sec3.show-animate {
    opacity: 1;
    transform: translateX(0);
}

.bgimage {
    background-image: url('bg1.jpg'); /* Fixed backslash to forward-slash or quoted path */
    background-size: cover;               /* Makes image cover the entire container */
    background-position: center;          /* Centers the image */
    background-repeat: no-repeat;         /* Prevents image from repeating */
    width: 100%;
    height: 100vh;                        /* Full screen height */
}

/* marquee  */
.app-container {
    width: 100vw;
    height: 80vh;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper2 {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.text {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0A1F44;
    
}

.note {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 0px;
    color: #0A1F44;
}

@media screen and (max-width: 1024px){
    .text{
        margin-left: 120px;
    }
    .note{
        margin-left: 20px;
        margin-right: 25px;
        font-size: 30px;
        text-align: center;
    }
}

.marquee {
    display: flex;
    width: 1900px;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 10%, hsl(0 0% 0% / 3) 90%, hsl(0 0% 0% / 0));
}

.marquee-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    white-space: nowrap;
    width: 100%;
    animation: scrollX 30s linear infinite;
}

.marquee-group.reverse {
    animation-direction: reverse;
    animation-delay: -3s;
}

@keyframes scrollX {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.image-group {
    display: grid;
    place-items: center;
    width: clamp(20rem, 1rem + 60vmin, 50rem); /* Increased width range */
    height: clamp(10rem, 0.2rem + 40vmin, 20rem); /* Doubled the height */
    padding: calc(clamp(20rem, 1rem + 40vmin, 40rem) / 10); /* Increased padding */
}


.image {
    object-fit: contain;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    aspect-ratio: 1 / 1; /* You can change to 4 / 3 or 1 / 1 if taller image is needed */
    padding: 10px 30px; /* Increased padding */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 4px 12px 0px; /* Optional: stronger shadow */
    cursor: pointer;
}

/* events section */
.container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.box {
    background-color: #fff;
    border: 0px solid #3498db; /* Border color */
    border-radius: 15px;
    padding: 20px;
    width: 30%;
    min-width: 300px;
    height:600px;
    box-shadow:0 18px 18px rgba(0, 0, 0, 0.1);
    margin: 10px;
    position: relative;
    overflow: hidden; /* Ensure the scroll effect is contained within the box */
}

.h1 {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0;
    background-color:#36647c;
    color: #fff;
    position: relative;
    z-index: 2; /* Ensure h1 is above the scrolling content */
    padding: 10px;
    width: 100%;
    font-size: 2.5em;
    box-sizing: border-box;
    border-radius: 5px;
    text-shadow: 0 0 10px #000000;
}

.content {
    text-align: center;
}

.events-box, .programs-box, .done-box {
    height: 100%;
    position: relative;
}

.events-box ul, .programs-box ul, .done-box ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    width: 100%;
    animation: scroll 20s linear infinite;
}

.events-box li, .programs-box li, .done-box li {
    padding: 10px 0;
    font-size: 1.6em;
    border-bottom: 1px solid #eee;
}

.events-box li:last-child, .programs-box li:last-child, .done-box li:last-child {
    border-bottom: none;
}
/* Add automatic scroll effect */
@keyframes scrollEvents {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

.events-box ul {
    animation: scrollEvents 20s linear infinite;
}
.programs-box ul {
    animation: scrollEvents 20s linear infinite;
}
.done-box ul {
    animation: scrollEvents 20s linear infinite;
}
/*text at*/
.containertext{
    width: 100%;
    height: 60vh;
    background-color: #2b323c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.containertexth1{
    font-size: 90px;
    font-weight: 700;
}

.auto-type{
    color: aqua;
}
/* Curved section */
.curved {
    position: relative;
    background: #2b323c; /* same as containertext for smooth blend */
    height: 15vh;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    margin-top: -1px; /* Remove visible line gap */
}
.container111 {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    
    align-items: center;
    justify-content: center;
    margin: 100px;
  }
  
  .left111, .right111 {
    flex: 1 1 500px;
    padding: 20px;
  }
  
  .left111 h1 {
    font-size: 40px;
    line-height: 1.4;
    margin-bottom: 30px;
  }
  
  .left111 h1 span {
    color: #1f5ca7;
  }
 
  
  .feature111 {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    margin-left: 100px;
    width: 70%;
    transition: background-color 0.3s, color 0.3s;
    border: 2px solid black; /* Optional border for the entire block */
    border-radius: 10px;     /* Optional: make it look nice */
  }
  .feature111 i {
    margin-right: -30px;
    margin-left: 60px;
    font-size: 25px;
    color: #1f5ca7;
  }
  .feature111 p {
    font-size: 25px;
    margin-left: 70px;
    margin-bottom: 40px;
  
  }

  
  /* Hover effect on the entire .feature block */
  .feature111:hover {
    background-color: black;
    color: white;
  }
  .image-container {
    position: relative;
    max-width: 100%;
    margin-top: 200px;
  }
  
  .image-container img {
    /* Optional: to prevent stretching on large screens */
    border-radius: 50px; /* Smooth rounded corners */
    border: 2px solid #1f5ca7; /* Clean blue border */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Optional: soft shadow for depth */
  }





  .ourteam{
    display: absolute;
    text-align: center;
    margin-top: 50px;
    font-size: 75px;
    font-weight: 600;
    font-style: normal;
     font-family: 'Roboto Flex', sans-serif;
 
    
  }

  .chart111 {
    position: absolute;
    bottom: -100px;
    left: 50px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 0 30px 5px rgba(84, 223, 248, 0.4);
    max-width: 250px;
  }
  
  .chart111 svg {
    width: 150px;
    height: 150px;
    display: block;
    margin: auto;
    transform: rotate(-90deg);
  }
  
  .chart111 .bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
  }
  
  .meter {
    fill: none;
    stroke-width: 3.8;
    stroke-linecap: round;
  }
  
  /* Segment 1 - 55% */
  .meter1 {
    stroke: #3dd4c0;
    stroke-dasharray: 55 45;
    stroke-dashoffset: 0;
  }
  
  /* Segment 2 - 30% */
  .meter2 {
    stroke: #1f5ca7;
    stroke-dasharray: 30 70;
    stroke-dashoffset: -55;
  }
  
  /* Segment 3 - 15% */
  .meter3 {
    stroke: #09203f;
    stroke-dasharray: 15 85;
    stroke-dashoffset: -85;
  }
      
  
  .chart .labels {
    margin-top: 20px;
    font-size: 16px;
  }
  
  .chart .labels p {
    margin: 10px 0;
  }

   .testimonial-section h2{
    font-size: 80px;
   }
  .testimonial-section {
    background-color: #0A1F44;
     padding: 50px 20px;
     text-align: center;
     color: #ffffff;
     font-family: 'Poppins', sans-serif;
   }
   
.invat{
    text-align: center;
    margin: 50px 0;
    color: transparent;              /* Make fill transparent */
    -webkit-text-stroke: 2px white;  /* Outline/stroke for Chrome, Safari, Edge */
    text-stroke: 2px white;           /* Outline (non-standard, Firefox may not support) */
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 600;
    font-size: 80px;
}

   .testimonial-container {
     width: 100%;
     max-width: 1200px;
     height: 600px;
     padding: 60px;
     background: linear-gradient(to right, #78ebed, #ffffff);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 
                 0 6px 20px rgba(0, 0, 0, 0.2), 
                 0 8px 30px rgba(0, 0, 0, 0.2), 
                 0 10px 40px rgba(0, 0, 0, 0.2);
     border-radius: 18px;
     position: relative;
     overflow: hidden;
   }
   
   /* Background blobs */
   .background {
     position: absolute;
     overflow: hidden;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     display: flex;
     flex-grow: 1;
     z-index: 0;
   }
   
 
   
   .slider-container {
     width: 1300px; /* 300 * 3 cards + 10px margin each side * 6 = 960px */
     margin: auto;
     overflow: hidden;
     position: relative;
        z-index: 2;
   }
   
   .slider-track {
     display: flex;
     transition: transform 0.4s ease;
   }
   
   .testimonial-card {
     width: 300px;
     height: 200px;
     background: #fff;
     border-radius: 12px;
     padding: 20px;
     margin: 0 10px;
     color: #000;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
     flex-shrink: 0;
   }
   
   
   .testimonial-card p {
     font-size: 18px;
     margin-bottom: 20px;
   }
   
   .author {
     display: flex;
     align-items: center;
     gap: 10px;
   }
   
   .author img {
     width: 300px;
     height:150px;
     margin-top: 20px;
     margin-left: 5px;
   }
   
   .arrow {
     background: #fff;
     color: #002244;
     font-size: 40px;
     border: none;
     border-radius: 25%;
     width: 80px;
     height: 80px;
     cursor: pointer;
     margin: 0 10px;
     transition: background 0.3s;
   }
   
   .arrow:hover {
     background: #000000;
     color: #f8f8f8;
   }
   .slider-arrows{
     margin-top: 50px;
   }
 
/* Create a masking effect to cover the h1 tag and extend above it */
.box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* Adjust height to cover the h1 tag and extend above */
    background-color: #fff; /* Same color as box background */
    z-index: 1;
}
.image-wrapper {
    padding: 10px 10%;
}
.image-card {
    padding: 50px 0;
}
.image-card-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.image-box {
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    height: 100%; /* Make sure it occupies the full height */
}
.image-box:hover {
    box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.7); /* Adjust shadow on hover */
    border: 3px solid #000000; /* Add border on hover */
}
.image-box img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    display: block;
    transition: transform 0.5s;
}
.imagecard-overlay {
    height: 0;
    width: 100%;
    background: linear-gradient(transparent, #0A1F44 65%);
    border-radius: 15px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align content vertically */
    justify-content: center;
    padding: 20px; /* Increase padding for better spacing */
    text-align: center;
    font-size: 22px;
    transition: height 0.5s, padding 0.5s; /* Transition height and padding */
    box-sizing: border-box; /* Ensure padding is included in height calculation */
}

.imagecard-overlay .imagecardh3 {
    font-weight: 500;
    margin-bottom: 0px; /* Increase bottom margin for separation */
    font-family: 'Bebas Neue', sans-serif;
    color: white;
    font-size: 30px;
    letter-spacing: 2px;
}
.imagecard-overlay h2{
    color: white;
}

.imagecard-overlay p {
    margin-bottom: 20px; /* Increase bottom margin for separation */
    line-height: 1.4; /* Increase line height for better readability */
}

.imagecard-overlay a {
    margin-top: 10px;
    color: #1c1c1c;
    text-decoration: none;
    font-size: 25px;
    background: hsl(59, 96%, 71%);
    border-radius: 55px;
    padding: 15px 30px;
    text-align: center;
}

.image-box:hover .imagecard-overlay {
    height: 100%; /* Expand overlay height on hover */
    padding: 20px; /* Maintain padding */
  
}

.image-box:not(:hover) .imagecard-overlay {
    height: 0; /* Ensure overlay is completely hidden when not hovered */
    padding: 0; /* Reset padding */
}
.bgdesign{
    background-image: url(bgdisign.png);
    background-size: cover; /* Adjusts the size of the background image */
    
}


.container1 {
    width: 100%;
    height: 100vh;
    background-image: url(bg\ image.jpg);
    background-position: center;
    background-size: cover;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
}



.row1 {
    display: flex;
    height: 88%;
    align-items: center;
    flex-wrap: wrap; /* Ensures proper wrapping of cards */
}

.col1 {
    flex-basis: 50%;
}

.kamblah1 {
    color: #000000;
    font-size: 100px;
}



.buttonkambla {
    width: 200px;
    height: 60px;
    color: #000; /* Initial text color: black */
    font-size: 20px;
    padding: 12px 0;
    background: transparent; /* Initial background: transparent */
    border: 2px solid #000; /* Adding a border for better visibility */
    border-radius: 25px;
    outline: none;
    margin-top: 30px;
    transition: background 0.3s, color 0.3s; /* Smooth transition for background and color */
}

.buttonkambla:hover {
    background: #000; /* Background on hover: black */
    color: #fff; /* Text color on hover: white */
    transform: translateX(10px);
}


.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Aligns items to the start */
}

.card {
    width: 200px;
    height: 230px;
    display: inline-block;
    border-radius: 10px;
    padding: 15px 25px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 10px 15px;
    background-position: center;
    background-size: cover;
    transition: transform 1s;
}

.card1 {
    background-image: url(im1.jpg);
}

.card2 {
    background-image: url(im2.jpg);
}

.card3 {
    background-image: url(im3.jpg);
}

.card4 {
    background-image: url(im4.jpg);
}
.card5 {
    background-image: url(im1.jpg);
}

.card6 {
    background-image: url(im4.jpg);
}
/* Card hover state */
.card:hover {
    transform: translateY(-10px);
}

/* Initial state: h5 and p tags hidden */
.h5kambla {
    display: none;
    font-size: 36px;
    font-weight: 300;
    transition: opacity 0.3s ease; /* Smooth transition for opacity */
}
.pkambla{
    color: #000000;
    font-size: 36px; /* Adjust font size */
    font-weight: 300;
    line-height:1.5; /* Adjust line height */
}




/* Show h5 and p tags on card hover with white color */
.card:hover .h5kambla {
    display: block;
    color: #9af3a0;
    text-shadow: 0 0 5px #69cffa; /* Update text-shadow if needed */
}
/* Responsive Design */
@media (max-width: 1200px) {
    .card {
        width: 150px;
        height: 120px;
    }
    
    .kamblah1 {
        font-size: 35px;
    }
    
    .pkambla {
        font-size: 20px;
    }
    .h5kambla{
        font-size: 22px;
    }
}

.center12 {
    position: relative;
    text-align: center;
    color: #1e86b7; /* Dark Cyan text color */
    padding: 20px 0;
    background-color: #ffffff; /* Light blue background */
}

.slider11 {
    color: #000000; /* Black text color */
    font-size: 45px; /* Font size */
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.slide12 {
    position: relative;
    width: 400px; /* Adjust width as needed */
    height: 100px; /* Adjust height as needed */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    background-color: skyblue; /* Light blue background */
}

.slide12 div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide12 div div {
    display: inline-block;
    color: #ffffff; /* White text color */
    background-color: transparent;
    padding: 20px; /* Adjust padding as needed */
    border-radius: 20px;
    box-sizing: border-box;
    font-size: 36px; /* Adjust font size as needed */
    text-align: center; /* Center text horizontally */
}

 /* Footer */
 /* Footer */

footer {
    width: 100%;
    height: 450px;
    margin-top: 10px; 
   background: #0A1F44;
    color: #fff;
    padding: 10px 0 15px;
    border-top-left-radius: 300px;
    font-size: 13px;
    line-height: 20px;
    position: relative;
}
footer h2{
     font-weight: 200;
    font-size: 18px;
}
.row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col {
    flex-basis: 25%;
    padding: 10px;
}

.col:nth-child(2), .col:nth-child(3) {
    flex-basis: 15%;
}
.col li a{
    color: #ffffff;
}

.logo111 {
    width: 150px;
    margin-bottom: 30px;
    background-color: #0A1F44;
}

.col h3 {
    width: fit-content;
    margin-bottom: 20px;
    
    position: relative;
    padding-bottom: 10px;
    
    
}
.logo111{
    width: 400px;
    height: 100px;
}
.logo111fot{
      width: 400px;
    height: 100px;
    margin-top: 150px;
}
.underline {
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    margin-top: 5px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.underline span {
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}
.col h3 {
  font-size: 30px;  /* Adjust size as needed */
  font-weight: 700; /* 700 = bold, can also use 'bold' */
}

@keyframes moving {
    0% {
        left: -20px;
    }
    100% {
        left: 100%;
    }
}

.email-id {
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

ul li {
    list-style: none;
    margin-bottom: 12px;
    
}

ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: 300;
    font-size: 20px;
    
}

.newsletter-form {
  display: flex;
  flex-direction: row;         /* Ensures horizontal layout */
  align-items: center;         /* Vertical alignment */
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 30px;
  gap: 10px;                   /* Spacing between items */
}

.newsletter-form i {
  font-size: 18px;
  color: #000000;
}

.newsletter-form input {
  flex: 1;                     /* Takes up remaining space */
  background: transparent;
  border: none;
  outline: none;
  color: #000000;
  font-size: 18px;
}

.newsletter-form input::placeholder {
  color: #000000; /* Change to any color you prefer */
  opacity: 1;     /* Ensures full opacity */
}

.newsletter-form button {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.newsletter-form button i {
  font-size: 18px;
  color: #000000;
}



.social-icons .fab {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}



.social-icons a:hover i {
    color: rgb(0, 0, 0);
      background-color: #111;
    transform: scale(1.1);
}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright {
    text-align: center;
}

@media(max-width: 700px) {
    
    .col {
        flex-basis: 100%;
    }
    .col:nth-child(2), .col:nth-child(3) {
        flex-basis: 100%;
    }
    footer{
        height: 130vh;
    }
}

.create{
    color: #ffffff;
}
