:root {
    --mount-meadow: #15f4ee;
    --white-smoke: #f0f0f0;
    --night-rider: #343434;
    --black: #191b17;
    --transition: all 0.5s ease-in-out;
}
body.offcanvas-active, 
body.modal-open {
    overflow-y: scroll !important; /* Force scroll visibility */
    padding-right: 0 !important;  /* Kill the 113px padding */
}
/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-40px);
    }
}

/* Animation Classes */
.hidden {
    opacity: 0;
}
.hidden-content{
    opacity: 0;
}

.fade-in-up {
    animation: fadeInUp 0.4s ease-in-out forwards;
}
.fade-in-up2 {
    animation: fadeInUp 0.8s ease-in-out forwards;
}

.fade-out {
    animation: fadeOut 0.4s ease-in-out forwards;
}

@font-face {
    font-family: "Fredoka";
    src: url("../fonts/Fredoka.ttf");
}

@font-face {
    font-family: "SquadOne";
    src: url("../fonts/SquadaOne-Regular.ttf");
}
@font-face {
    font-family: "Andika";
    src: url("../fonts/Andika-Regular.ttf");
}

@font-face {
    font-family: "AndikaBold";
    src: url("../fonts/Andika-Bold.ttf");
}

* {
    margin: 0;
    font-family: "Andika";
    font-size: 18px;
}
/* dddddddddddddddd */
body {
    background-color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
     overflow-y: scroll !important; /* Force scroll visibility */
    padding-right: 0 !important;
}

/* The Smudge Blobs */
body::before, body::after {
    content: "";
    position: fixed; /* Stays in place during scroll */
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    z-index: -1; /* Sits behind your content */
    filter: blur(120px); /* This creates the "smudge" look */
    opacity: 0.15; /* Keeps it subtle and professional */
    pointer-events: none;
}

/* Top Right Smudge - Software Blue */
body::before {
    top: -10vw;
    right: -10vw;
    background: radial-gradient(circle, #0047AB, transparent);
}

/* Bottom Left Smudge - Tech Purple/Cyan */
body::after {
    bottom: -15vw;
    left: -15vw;
    background: radial-gradient(circle, #8A2BE2, transparent);
}
/* dddddddddddddd */

.nav-bar {
    position: sticky;
    /* 1. Use RGBA for transparency (0.8 = 80% visible) */
    background-color: rgba(245, 245, 245, 0.8); 
    
    /* 2. The Glass effect: blurs the content passing underneath */
    backdrop-filter: blur(10px);
    isolation: isolate;
    -webkit-backdrop-filter: blur(10px); /* Safari support */

    position: -webkit-sticky;
    top: 0;
   z-index: 1050;
    height: 75px;
    width: 100%;
    
    /* 3. Softened shadow for a more modern "float" */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    
    /* 4. Optional: subtle border to define the edge against the smudge background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    
    /* Ensures smooth rendering */
    transition: background-color 0.3s ease;
    /* Hardware acceleration - fixes the "disappearing" bug on iPhone */
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    
    /* Ensure backdrop filter doesn't break the stickiness */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.offcanvas {
    z-index: 1100 !important;
}
.logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.logo-name {
    font-size: 40px;
    color: #0047AB;
    font-family: 'SquadOne';

}
/* Styling for the links inside the side menu */
.side-link {
    margin: 15px 0 !important; /* Stack vertically with space */
    display: block;            /* Make it full width */
    width: fit-content;        /* Underline stays the size of the text */
    font-size: 18px;     
     /* Slightly bigger for mobile fingers */
}

/* Ensure the offcanvas background looks modern */
.offcanvas {
    background-color: #ffffff;
    width: 280px !important;    /* Control how far it slides out */
}

/* Apply your animated underline logic (already written) */
.side-link::after {
    bottom: -2px;
}

/* Styling for the links inside the side menu */
.side-link {
    margin: 15px 0 !important; /* Stack vertically with space */
    display: block;            /* Make it full width */
    width: fit-content;        /* Underline stays the size of the text */
    font-size: 18px;           /* Slightly bigger for mobile fingers */
}


.nav-a {
    color: rgb(109, 107, 107);
    text-decoration: none;
    margin: 30px;
    font-family: "Andika";
    font-size: 14px;
    text-shadow: 1px 2px 5px #aca9a9;
    position: relative; /* Required for the underline positioning */
    display: inline-block; /* Ensures the underline matches the text width */
    transition: color 0.3s ease;
}

.nav-a:hover {
    color: rgb(0, 0, 0);
 
}

/* The animated underline */
.nav-a::after {
    content: '';
    position: absolute;
    width: 0;                /* Start with no width */
    height: 2px;             /* Thickness of the underline */
    bottom: -5px;            /* Distance below the text */
    left: 0;                 /* Start from the left */
    background-color: darkblue; /* Your requested color */
    transition: width 0.3s ease-in-out; /* The animation speed */
}

.nav-a:hover::after {
    width: 100%;             /* Grow to full width on hover */
}



.nav-al {
    color: black;
    text-decoration: none;

}

.wtslg {
    height: 18px;
    width: 18px;
    font-size: 13px;
}

.home {
    padding: 100px;
    width: 100%;
    height: 100vh;
  
    position: relative; /* Ensure children can be positioned relative to this container */
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    /* animation: slideshow 25s ease-in-out infinite; */
    
}

@keyframes slideshow {
    0%, 15%  {
        background-image: url("../images/1.png");
    }

    30%, 45% {
        background-image: url("../images/2.png");
    }

    60%, 75% {
        background-image: url("../images/3.png");
    }

    85%, 100% {
        background-image: url("../images/6.png");
    }
}


/* Default styles - No animation for smaller screens */
.h1{
   font-family: 'AndikaBold';
   font-size: 60px;
   
}
.gradient-text {
    /* The Gradient Colors (Left to Right) */
    background: linear-gradient(90deg, #0047AB, #8A2BE2);
    font-family: 'AndikaBold';
     font-size: 60px;
    /* This clips the background to the text */
    -webkit-background-clip: text;
    background-clip: text;
    
    /* This makes the actual text transparent so the background shows through */
    -webkit-text-fill-color: transparent;
    color: transparent;
    
    /* Optional: Makes the gradient pop more */
    font-weight: bold;
    display: inline-block;
}
.h2{
   font-family: 'Andika';
   font-size: 60px;
   
}
.gradient-text2 {
    /* The Gradient Colors (Left to Right) */
    background: linear-gradient(90deg, #0047AB, #8A2BE2);
    font-family: 'Andika';
     font-size: 60px;
    /* This clips the background to the text */
    -webkit-background-clip: text;
    background-clip: text;
    
    /* This makes the actual text transparent so the background shows through */
    -webkit-text-fill-color: transparent;
    color: transparent;
    
    /* Optional: Makes the gradient pop more */
    font-weight: bold;
    display: inline-block;
}
.b1{
     background: linear-gradient(90deg, #0047AB, #8A2BE2);
    font-family: 'AndikaBold';
    
}
.hp2 {
    position: absolute; /* This allows for free positioning within the container */
    color: #0047AB;
    
    font-size: 10px; /* You can adjust this size as needed */
    
    text-align: center;
    z-index: 10;
    letter-spacing: 5px;
    top: 55%; /* Vertically center the element */
    left: 50%; /* Horizontally center the element */
    transform: translate(-50%, -50%); /* Adjust the position to exactly center */
}
.hp3,.hp6 {
    position: absolute;
    color: black;
    font-size: 50px;
    font-weight: bold;
    z-index: 5;
    text-align: center;
    opacity: 0; /* Initially hide both */
    transition: opacity 1s ease-in-out; /* Smooth transition */
}

.hp4 {
    position: absolute;
    color: black;
    font-size: 40px;
    font-weight: bold;
    z-index: 5;
    text-align: center;
    opacity: 0; /* Initially hide both */
    transition: opacity 1s ease-in-out; /* Smooth transition */
}
.hp5 {
    position: absolute;
    color: black;
    font-size: 30px;
    font-weight: bold;
    z-index: 5;
    text-align: center;
    opacity: 0; /* Initially hide both */
    transition: opacity 1s ease-in-out; /* Smooth transition */
}
.hp6 {
    position: absolute;
    color: white;
    font-size: 40px;
    font-weight: bold;
    z-index: 5;
    text-align: center;
    opacity: 0; /* Initially hide both */
    transition: opacity 1s ease-in-out; /* Smooth transition */
}

/* Initially position the elements */
.hp3 {
    top: 40%;
    left: 75%;
    transform: translateX(-50%);
}

.hp4 {
    top: 40%;
    left: 40%;
    transform: translateX(-50%);
}
.hp5 {
    top: 40%;
    left: 5%;
    transform: translateX(-50%);
}

.hp6 {
    top: 20%;
    left: 40%;
    margin-top: 50px;
    transform: translateX(-50%);
}
/* Animation for large screens only */
@media screen and (min-width: 1024px) {
    .hp1 {
        font-size: 60px;
        animation: positionChange 25s ease-in-out infinite;
    }

    .hp2 {
        font-size: 30px;
        letter-spacing: 20px;
        animation: positionChange2 25s ease-in-out infinite;
    }

    @keyframes positionChange {
        0%, 15% {
            top: 10%;
            left: 50%;
            transform: translateX(-50%);
        }

        30%, 45% {
            top: 15%;
            left: 60%;
            transform: translateX(-50%);
        }

        60%, 75% {
            top: 10%;
            left: 30%;
            transform: translateX(-50%);
        }

        /* Hold last position for longer (10% duration) */
        85%, 100% {
            top: 75%;
            left: 60%;
            transform: translateX(-50%);
        }
    }

    @keyframes positionChange2 {
        0%, 15% {
            top: 20%;
            left: 50%;
            transform: translateX(-50%);
        }

        30%, 45% {
            top: 25%;
            left: 60%;
            transform: translateX(-50%);
        }

        60%, 75% {
            top: 20%;
            left: 30%;
            transform: translateX(-50%);
        }

        /* Hold last position for longer (10% duration) */
        85%, 100%{
            top: 85%;
            left: 60%;
            transform: translateX(-50%);
        }
    }
    .hp3 {
        animation: hp3Appear 25s ease-in-out infinite;
    }
    
    @keyframes hp3Appear {
        0%, 15% {
            opacity: 1;
            
        }
        30%, 53% {
            opacity: 0;
        }
        66%, 100% {
            opacity: 0;
        }
    }
    .hp4 {
        animation: hp4FadeUp 25s ease-in-out infinite;
    }
    @keyframes hp4FadeUp {
        0%, 20% {
            opacity: 0; 
            transform: translateY(50px); 
        }
        35%, 45% {
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Move to the original position */
        }
        60%, 86% {
            opacity: 0; /* Fade out */
            transform: translateY(50px); /* Move slightly downwards again */
        }
        100% {
            opacity: 0; /* Stay invisible at the end */
            transform: translateY(20px); /* End slightly below the original position */
        }
    }
    
    .hp5 {
        animation: hp5Appear 25s ease-in-out infinite;
    }
    
    @keyframes hp5Appear {
        0%, 20% {
          
            opacity: 0; 
            transform: translateY(50px); 
        }
        33%, 53% {
            opacity: 0; 
            transform: translateX(-50px); 
        }
        60%, 75% {
            opacity: 1;
            
            transform: translateX(0); 
        }
        85%, 100% {
            opacity: 0; 
            transform: translateX(50px); 
        }
    }
    
    .hp6 {
        animation: hp6Appear 25s ease-in-out infinite;
    }
    
    @keyframes hp6Appear {
        0%, 20% {
            opacity: 0; 
            transform: translateX(50px); 
        }
        33%, 53% {
            opacity: 0; 
            transform: translateX(50px); 
        }
        66%, 75% {
            opacity: 0; 
            transform: translateX(50px); 
        }
       85%, 100% {
            opacity: 1;
            transform: translateX(-50px); 
        }
    }
}

/* Optional: Add styles for small screens without animation */
@media screen and (max-width: 1023px) {
    .hp1, .hp2 {
        font-size: 30px; /* You can adjust this */
        animation: none;  /* Disable animation */
    }
}



.services {

    width: 100%;

}

.s-div {
    overflow: hidden;
    margin: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    height: 250PX;
    background: #F5F5F5;
    transition: background-color 0.5s ease, transform 0.5s ease;
    ;
}

.s-div:hover {
    color: white;
    background: url("../images/blk.jpg");
    background-size: cover;
    margin: 20px;
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    height: fit-content;

    transform: scale(1.1);

    box-shadow: 0 25px 15px 0 rgba(22, 32, 68, 0.7);
    --webkit-box-shadow: 0 25px 15px 0 rgba(22, 32, 68, 0.7);
    --moz-box-shadow: 0 25px 15px 0 rgba(22, 32, 68, 0.7);
    transform: translateY(-20px);
    /* background-color: #162044 !important; */
    border: 1px solid #7E8BB6 !important;


}

.s-img {
  height: 80%;
  width: 80%;
  overflow: hidden;
  
 
}
.a-img {
  height: auto;
  width:70%;
  
  border-radius: 25px;
  
 
}
/* service */
.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px); /* Glass effect */
    border: 1px solid #f3f2f2;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #c1c4c9;
    box-shadow: 0 20px 40px rgba(0, 71, 171, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.service-card:hover .icon-box {
  
    color: white;        /* If using text/icons inside */
    box-shadow: 0 8px 15px rgba(0, 71, 171, 0.25); /* Subtle blue glow */
    transform: translateY(-2px);
}
.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.learn-more {
    text-decoration: none;
    color: #0047AB;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 15px;
}
/* service end */

.service-card2 {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px); /* Glass effect */
    border: 1px solid #f3f2f2;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card2:hover {
    transform: translateY(-10px);
    border-color: #c1c4c9;
    box-shadow: 0 20px 40px rgba(0, 71, 171, 0.1);
}

.icon-box2 {
    width: fit-content;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.service-card2:hover .icon-box {
  
    color: white;        /* If using text/icons inside */
    box-shadow: 0 8px 15px rgba(0, 71, 171, 0.25); /* Subtle blue glow */
    transform: translateY(-2px);
}

.service-card2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.service-card2 p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.learn-more2{
    text-decoration: none;
    color: #8d04af;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 15px;
}
/* service end */
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../images/hero-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #ffc451;
  border-color: #ffc451;
  color: #151515;
}

.cta3 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/testimonials-bg.jpg") fixed center center;
  background-size: cover;
  padding: 100px 0; /* Increased padding for better look */
  color: #fff;
}

.cta3 .carousel-item {
  min-height: 200px; /* Ensures the height doesn't jump between slides */
  padding: 0 60px;   /* Space for the arrows */
}

.cta3 h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.cta3 p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
}

/* Customizing the Indicators (Dots) */
.cta3 .carousel-indicators {
  bottom: -50px; /* Moves dots below the text */
}

.cta3 .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e6b209; /* Your Brand Blue */
}

/* Make arrows slightly more subtle */
.cta3 .carousel-control-prev-icon,
.cta3 .carousel-control-next-icon {
  filter: invert(1); /* Makes them white */
  opacity: 0.5;
}
/* features */
.cta2 {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../images/testimonials-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}
.features {
  padding-top: 20px;
}

.features .icon-box {
  padding-left: 15px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #ffc451;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

.s-p1 {
    font-weight: bold;
    font-family: "SquadOne";
    font-size: 30;
}

.s-p2 {
    font-size: 13px;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/


.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  color: #484848;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a:hover {
  color: #151515;
  background: #ffc451;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}


/*///////// about ////////////////////////////*/
@keyframes fadeInUpRight {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInUpLeft {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about {
    height: 100%;
}
.a-img-div{
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fade-in-right {
    animation: fadeInUpRight 0.8s ease-in-out forwards;
}
.fade-in-left {
    animation: fadeInUpLeft 0.8s ease-in-out forwards;
}

.about-h1 {
    color: white;
    font-size: 36px;
    text-align: center;
    margin: 0;
  
    transform: none;
    /* Ensures the text remains normal, not skewed */
    position: relative;
}

.about-img {
    opacity: 0;
    height: 400px;
    width: 200px;
    background: url("../images/2672333.png");
    background-repeat: no-repeat;
}
.fade-zoom-in {
    animation: zoomInEffect 1s ease-in-out;
  }

  @keyframes zoomInEffect {
    0% {
      transform: scale(0.5);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
.about-content {
    border-width: 2px;
    opacity: 0;
    border-style: solid;
    border-image: linear-gradient(to right, #ff7e5f, #feb47b) 1;
    color: linear-gradient(to right, #ff7e5f, #feb47b) 1;
    border-radius: 10px;


}

.about-h1 {
    font-size: 50px;
    font-weight: bold;
    background: linear-gradient(90deg, #ff7e5f, #feb47b, #86a8e7, #ff7e5f);
    /* Gradient colors */
    background-size: 300% 300%;
    /* Make the gradient larger for a smooth animation */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-text-animation 5s infinite;
}

.about-p {
    font-size: 20px;
    
    background: linear-gradient(90deg, #1041e4, #050403, #e0068d, #1f0066);
    /* Gradient colors */
    background-size: 300% 300%;
    /* Make the gradient larger for a smooth animation */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-text-animation 5s infinite;
}
.abt-btn{
    background: none;
    border: solid purple;
    border-width: 2px;
    border-radius: 6px;
    color: purple;
    height: 40px;
}
@keyframes gradient-text-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* contact us//////////////////////////////// */

.text {
    color: #0047AB;
}

.c-h1 {
    font-family: "SquadOne";
    text-shadow: 2px 10px 10px #312f2f;
    margin-top: 300px;
}

.c-btn {
    color: white;
    background:linear-gradient(90deg, #0047AB, #8A2BE2);
    border-radius: 3px;
    height: 40px;

}

/* footer////////// */
.footer {
    background: #010118;
    height: 60vh;
}

.f-p {
    font-size: 15px;
    color: white;
}

.fab {
    font-size: 50px;
    color: white;
}

.to-top {
    background-color:  #8A2BE2;
    border-style: solid;
    border-width: 2px;
    border-color: white;
    border-radius: 50px;
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
}

.to-top.active {
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
}

/* team ///////////////////////*/

.team2{
    background: url("../images/teambag.png");
    background-repeat: no-repeat;
    background-size: cover;
}
.carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
    padding: 0rem 3rem;

}

.carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transform: translateX(0%);
    transition: transform 0.5s ease-in-out;
    width: 100%;
    margin-bottom: 250px;
}

.carousel-card {
    flex: 1;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: #fff;
    padding: 1rem;
    opacity: 0.5;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.carousel-card.middle {
    transform: scale(1.2);
    opacity: 1;

}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.carousel-controls button {
    background-color: #0047AB;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50%;
}

/* Mobile screen styling */
@media (max-width: 576px) {
    .carousel-wrapper {
        gap: 0;
    }

    .carousel-card {
        display: none;
    }

    .carousel-card.middle {
        display: block;
        transform: scale(1);
    }

    .t-h1 {
        font-size: 50px;

        color: white;
        font-family: "SquadOne";
        text-shadow:
            2px 2px 0px black,
            /* Bottom-right shadow */
            -2px -2px 0px black,
            /* Top-left shadow */
            -2px 2px 0px black,
            /* Bottom-left shadow */
            2px -2px 0px black;

    }

    .carousel-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        transform: translateX(0%);
        transition: transform 0.5s ease-in-out;
        width: 80%;
        margin-bottom: 350px;
    }
}

.t-h1 {
    font-size: 50px;

    color: #0047AB;
    font-family: "SquadOne";

}

.t-s {
    color: #0047AB;
    font-size: 15px;
    text-shadow: 2px 10px 10px #312f2f;

}

.t-h4 {
    font-family: "SquadOne";
    text-shadow: 2px 10px 10px #312f2f;

}

/* blog//////////////////////////// */

.detail-item {
    background: #0047AB;
    color: white;
    font-size: 1.1rem;
    text-align: center;
    /* box-shadow: 0 1px 2px 0 rgba(90, 91, 95, 0.1); */
    border: 2px solid #0047AB !important;
    --webkit-box-shadow: 0 1px 2px 0 rgba(90, 91, 95, 0.1);
    --moz-box-shadow: 0 1px 2px 0 rgba(90, 91, 95, 0.1);
    margin: 2rem 0;
    padding: 3.5rem;
    border-radius: 5px;
    height: 560px;
    transition: var(--transition);
}

.detail-item:hover {
    box-shadow: 0 25px 15px 0 rgba(22, 32, 68, 0.7);
    --webkit-box-shadow: 0 25px 15px 0 rgba(22, 32, 68, 0.7);
    --moz-box-shadow: 0 25px 15px 0 rgba(22, 32, 68, 0.7);
    transform: translateY(-20px);
    background-color: #0047AB !important;
    border: 1px solid white !important;
}

.detail-item span {
    font-size: 1.75rem;
    color: white;
}

.detail-item h2 {
    font-size: 1.75rem;
    color: var(--white-smoke);
    opacity: 0.85;
    font-weight: 300;
}

.line {
    width: 75px;
    margin: 1.2rem auto;
    background: var(--mount-meadow);
    height: 2.5px;
}

.text-b {
    color: white;
}

.mtd {
    height: 75px;
    width: 100%;
}

/* about.php //////////////////*/

.vision {
    height: 150px;
    /* background-color: gainsboro; */
    /* border: black solid 1px; */
    border-radius: 100px;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fbc2eb, #a18cd1);
            background-size: 400% 400%; /* Makes the gradient larger for smooth animation */
            animation: gradientAnimation 6s ease infinite;
}
.vision2 {
    height: 150px;
    /* background-color: gainsboro; */
    /* border: black solid 1px; */
    border-radius: 100px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fbc2eb, #a18cd1);
    background-size: 400% 400%; /* Makes the gradient larger for smooth animation */
    animation: gradientAnimation 6s ease infinite;
}


.vision:hover {
    box-shadow: 0 25px 15px 0 rgba(0, 0, 0, 0.2);
    --webkit-box-shadow: 0 25px 15px 0 rgba(22, 32, 68, 0.7);
    --moz-box-shadow: 0 25px 15px 0 rgba(22, 32, 68, 0.7);
    transform: translateY(-20px);
    height: 150px;
    /* background-color: gainsboro; */
    background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fbc2eb, #a18cd1);

    /* border: black solid 1px; */
    border-radius: 100px;
}
.vision2:hover {
    box-shadow: 0 25px 15px 0 rgba(0, 0, 0, 0.2);
    --webkit-box-shadow: 0 25px 15px 0 rgba(22, 32, 68, 0.7);
    --moz-box-shadow: 0 25px 15px 0 rgba(22, 32, 68, 0.7);
    transform: translateY(-20px);
    height: 150px;
    /* background-color: gainsboro; */
    background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fbc2eb, #a18cd1);

    /* border: black solid 1px; */
    border-radius: 100px;
}
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.lr {
    height: 140px;
    width: 140px;
    /* background-color:rgb(190, 190, 190); */
    /* border: black solid 1px; */
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    background: linear-gradient(45deg, #a18cd1, #fbc2eb, #fad0c4,#ff9a9e );
    background-size: 400% 400%; /* Makes the gradient larger for smooth animation */
    animation: gradientAnimation 6s ease infinite;
}
.lr2 {
    height: 140px;
    width: 140px;
    /* background-color: rgb(190, 190, 190); */
    /* border: black solid 1px; */
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    background: linear-gradient(45deg, #a18cd1, #fbc2eb, #fad0c4,#ff9a9e );
    background-size: 400% 400%; /* Makes the gradient larger for smooth animation */
    animation: gradientAnimation 6s ease infinite;
}
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.vh1 {
    font-size: 40px;
    font-family: "SquadOne";
    margin-top: 45px;

}
.vh2 {
    font-size: 40px;
    font-family: "SquadOne";
    margin-top: 45px;

}
.logdiv{
    display: flex;
    align-items: center;
    justify-content: center;
}
.abs1{
   
    color: white;
    font-size: 25px;
}
.mtd2{
height: 80px;
}
.about-h{
    height: 70px;
    display: flex;
   
    align-items: center;
}
.abs2{
    color: #0047AB;
    font-family: 'SquadOne';
    font-size: 60px;
  
}
.ablog{
    height: 150px;
}


/* Tablet (600px to 768px wide) */
@media screen and (min-width: 600px) and (max-width: 768px) {
    /* Styles for tablets */
       /* Styles for mobile devices */
       .abs1{
   
        color: white;
        font-size: 15px;
    }
    .mtd2{
    height: 80px;
    }
    .about-h{
        height: 70px;
        display: flex;
       
        align-items: center;
    }
    .abs2{
        color: #0047AB;
        font-family: 'SquadOne';
        font-size: 30px;
      
    }
    .ablog{
        height: 80px;
    }
    .vh2 {
        font-size: 40px;
        font-family: "SquadOne";
        margin-top: 135px;
    
    }
    .vision {
        height: 150px;
        /* background-color: gainsboro; */
        /* border: black solid 1px; */
        border-radius: 100px;
        background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fbc2eb, #a18cd1);
                background-size: 400% 400%; /* Makes the gradient larger for smooth animation */
                animation: gradientAnimation 6s ease infinite;
    }
    .vision2 {
        height: 320px;
        /* background-color: gainsboro; */
        /* border: black solid 1px; */
        border-radius: 100px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fbc2eb, #a18cd1);
        background-size: 400% 400%; /* Makes the gradient larger for smooth animation */
        animation: gradientAnimation 6s ease infinite;
    }
    .lr {
        height: 140px;
        width: 140px;
        /* background-color:rgb(190, 190, 190); */
        /* border: black solid 1px; */
        border-top-left-radius: 100px;
        border-bottom-left-radius: 100px;
        background: linear-gradient(45deg, #a18cd1, #fbc2eb, #fad0c4,#ff9a9e );
        background-size: 400% 400%; /* Makes the gradient larger for smooth animation */
        animation: gradientAnimation 6s ease infinite;
    }
    .lr2 {
        height: 300px;
        width: 300px;
        /* background-color: rgb(190, 190, 190); */
        /* border: black solid 1px; */
        border-top-right-radius: 100px;
        border-bottom-right-radius: 100px;
        background: linear-gradient(45deg, #a18cd1, #fbc2eb, #fad0c4,#ff9a9e );
        background-size: 400% 400%; /* Makes the gradient larger for smooth animation */
        animation: gradientAnimation 6s ease infinite;
    }
    @keyframes gradientAnimation {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    .vision2:hover {
        box-shadow: 0 25px 15px 0 rgba(0, 0, 0, 0.2);
        --webkit-box-shadow: 0 25px 15px 0 rgba(22, 32, 68, 0.7);
        --moz-box-shadow: 0 25px 15px 0 rgba(22, 32, 68, 0.7);
        transform: translateY(-20px);
        height: 320px;
        /* background-color: gainsboro; */
        background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fbc2eb, #a18cd1);
    
        /* border: black solid 1px; */
        border-radius: 100px;
    }
    
    
}



