    :root {
    /* Core Brand Colors */
    --midnight-navy: #0A192F;
    --electric-blue: #007CFF;
    --platinum-white: #F8F9FA;
    
    /* Accent Colors */
    --neon-teal: #00F6ED;
    --cyber-gray: #343A40;
    --solar-gold: #FFD700;
   
}

   .card {
    width: 35rem;
    height:21rem;
    background:  linear-gradient(to right,#007CFF, #0A192F );
    border-radius: 1rem;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    color: var(--platinum-white) !important; /* Force white text */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

    footer button {
    border: none;
    background: linear-gradient(95deg, 
        var(--midnight-navy), 
        var(--electric-blue));
    padding: .7rem 2rem;
    border-radius: 2rem;
    font-size: 18px;
    font-weight: 500;
    margin-top: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    background-color: black;
    
    transform: scale(1.1);
}
.card:hover h2{
    
     color:   #0A192F;
  
}
nav a {
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 4px; /* Space for the underline effect */
}

nav a:hover {
    transform: translateY(-2px);
    color: #007CFF;
}

/* Gradient underline effect */
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(95deg, 
        var(--midnight-navy), 
        var(--electric-blue));
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}
    nav a {
        transition: color 0.3s ease; /* Smooth transition for color change */
    }



/* blog.html */
.as1{
    text-decoration:none;
    color:black;
}

.recent-blog {
    /* Other styles */
    animation: slideIn 0.5s ease-out; /* Apply the slide-in animation */
}


.container {
    padding: 7rem 4rem ;
    
}
.featured-blog {
    border: 0px solid #ddd;
    border-radius: 1rem;
    background-color: black;
    color: white;
    padding: 2rem 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.5s ease-out; /* Apply the fadeInUp animation */
}

.featured-blog p{
    font-weight: 300;
}
.featured-blog h2{
    font-size: 2.5rem;
    margin-top: 0;
}
.featured-blog h3{
    font-size: 1.9rem;
    color: rgb(206, 163, 68);
}
.featured-blog img{
    width: 20rem;
}
.featured-blog:hover .as{
    text-decoration: underline;
    color: rgb(206, 163, 68);
}
.recent-blogs {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.recent-blog {
    border: 0px solid #ddd;
    border-radius: 1rem;
    background-color: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Add box shadow */
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Add transition for smooth effect */
}

.recent-blog:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2); /* Change box shadow on hover */
    transform: scale(1.05); /* Add scale transformation on hover */
    background-color: black;
    color: white;
}
.recent-blog:hover p{
    
    color: white;
}


.load{
    text-align: center;
    padding: 0rem 4rem;
    padding-bottom: 2rem;
}
.a-button {
position: relative;
display: inline-block;
overflow: hidden;
text-decoration: none;
color: white;
padding: 1rem 1rem;
/* text-align: center; */
background: rgb(13, 13, 11);
border-radius: 1rem;
font-size: 1.5rem;
height: 2rem;
width: 15rem;
padding-right: 8rem;
transition: box-shadow 0.5s ease;
}
.a-button:hover {
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2); /* Change box shadow on hover */
transform: scale(1.009); /* Add scale transformation on hover */


}
.featured{
display: flex;
justify-content: left;
gap:2rem;
align-items: flex-start;
}
@media (min-width: 700px) and (max-width: 1440px) {
    .method-section {
    margin-top: 4rem;
    padding: 3rem 2rem;
    }
.recent-blogs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.container {
    padding: 4rem 2rem;
}

}
@media only screen and (max-width: 700px) {
.recent-blogs {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
.container {
padding: 4rem 1rem;
}
.a-button {
    width: 10rem;
}
.load {
    padding: 0rem 1rem;
    
}
.featured-blog img {
    width: 15rem;
}
.featured-blog {
    padding: 2rem 2rem
}
.featured {
    display: block;
}

}
/* blogs.html */

.recent-blog:nth-child(odd) {
    animation: slideInFromTop 0.5s ease-out; /* Apply slide-in from top animation to odd numbered divs */
}

.recent-blog:nth-child(even) {
    animation: slideInFromBottom 0.5s ease-out; /* Apply slide-in from bottom animation to even numbered divs */
}


.recent-blogs {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.recent-blog {
    border: 0px solid #ddd;
    border-radius: 1rem;
    background-color: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Add box shadow */
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Add transition for smooth effect */
}

.recent-blog:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2); /* Change box shadow on hover */
    transform: scale(1.05); /* Add scale transformation on hover */
    background-color: var(--midnight-navy);
    color: white;
}
.recent-blog:hover p{
    
    color: white;
}
.recent-blog:hover h3{
    color: var(--solar-gold);
}
.as{
    text-decoration: none;
    color: var(--solar-gold);
}
.recent-blog:hover .as{
    text-decoration: underline;
    color: var(--solar-gold);
}


.recent-blog img {
    width: 100%;
    height: auto;
    border-radius: .5rem;
}

.responsive-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr); /* mobile: 4 columns */
}

@media (min-width: 768px) {
    .responsive-grid {
        grid-template-columns: repeat(6, 1fr); /* desktop: 6 columns */
    }
}

.video-container h1 {
        margin:0;
    }
   @media (min-width: 820px) and (max-width: 1100px) {
    
    .card {
        width: 24rem;
        height: 27rem;
    }
    #c1{
        height:99vh !important;
    }
}

@media only screen and (max-width: 768px) {
   .card {
        width: auto;
        height: 18rem;
    }
    .border-text {
    
    padding: 0;
    margin: 0;
}
    .card-flex {
        display: flex;
        flex-direction: column;
    }
    
    .card-flex1:first-child {
        order: 1; /* Service 1 and 3 container */
    }
    
    .card-flex1:last-child {
        order: 2; /* Service 2 and 4 container */
    }
    
    /* Reset top margins on mobile */
    .card-flex1 .card {
        margin-top: 0 !important;
        /* margin-bottom: 1.5rem; */
    }
    
    /* Add spacing between cards */
    .card-flex1 > a:first-child {
        margin-bottom: 1.5rem;
    }
    
    /* Reorder services within the columns */
    .card-flex1:first-child a:nth-child(1) {
        order: 1; /* Service 1 */
    }
    
    .card-flex1:last-child a:nth-child(1) {
        order: 2; /* Service 2 */
    }
    
    .card-flex1:first-child a:nth-child(2) {
        order: 3; /* Service 3 */
    }
    
    .card-flex1:last-child a:nth-child(2) {
        order: 4; /* Service 4 */
    }
    
    /* Apply flexbox to each column to enable reordering */
    .card-flex1 {
        display: flex;
        flex-direction: column;
    }
}
   /* Common styles */
.sec-5 {
    padding: 2rem 0;
}

.image-grid {
    display: grid;
    gap: 15px;
   
    margin: 0 auto;
    padding: 0 15px;
}

.image-grid .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Desktop layout (3 columns) */
#m1 {
    display: block;
}

#m1 .image-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
    grid-template-rows: auto auto; /* 2 rows */
}

/* Specific desktop ordering */
.item-1 { grid-area: 1 / 1; } /* Row 1, Column 1 */
.item-3 { grid-area: 1 / 2; } /* Row 1, Column 2 */
.item-5 { grid-area: 1 / 3; } /* Row 1, Column 3 */
.item-2 { grid-area: 2 / 1; } /* Row 2, Column 1 */
.item-4 { grid-area: 2 / 2; } /* Row 2, Column 2 */
.item-6 { grid-area: 2 / 3; } /* Row 2, Column 3 */

/* Mobile layout (2 columns) */
#m2 {
    display: none;
}

@media only screen and (max-width: 768px) {
    .sec-6 a {
        font-size: 1rem;
    }
    #m1 {
        display: none;
    }
    
    #m2 {
        display: block;
    }
    
    #m2 .image-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        grid-template-rows: auto auto; /* 2 rows */
    }
}
/* Ensure text remains readable */
.sec-4 a {
    color: var(--platinum-white) !important;
    text-decoration: none !important;
}

.sec-4 a:hover {
    text-decoration: none !important;
}


    .sec-6 a{
    color: var(--neon-teal);
    text-decoration: none;
    padding: .4rem 1rem;
    background-color: none;
    border-radius: 2rem;
}
    .sec6-flex1 a{
    color: black;
    text-decoration: none;
    padding: .4rem 1rem;
    background-color:  var(--neon-teal);
;
    border-radius: 2rem;
}
    .border-text {
       
        text-shadow: 0 0 10px rgba(0, 124, 255, 0.5);
        font-size: 3rem;

    -webkit-text-stroke: 2px var(--midnight-navy);
    text-align: center;
    font-family: 'BankGothic', sans-serif;
    }
    .image-grid2{
        display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    }
    .image-grid2 img {
    width: 100%; /* Ensure images take full width of their container */
    height: 95%; /* Maintain aspect ratio */
    border-radius: 1rem;
    margin:0;
}
    @keyframes zoomOutIn {
        0% {
            transform: scale(1.2);
            opacity: 0;
        }
        50% {
            transform: scale(0.8);
            opacity: 0.5;
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }
    #vd{
        display:none;
    }
    @media only screen and (max-width: 700px) {
        #vd{
            display:block;
            overflow-y:hidden;
            margin-top: 1.5rem;
        }
        .sec-6 img:nth-child(1) {
        width: 100%;
        border-radius: .8rem;
    }
        
    
    h1 {
        font-size: 1.8rem;
        padding: 1rem;
        padding-left: 1.5rem;
    }
    .sec2 {
        padding:1rem 1rem;
        
        color: var(--cyber-gray);
        
        }
        .image-grid2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 3 columns */
          /* Adjust the gap between images */
            }
            .image-grid2 img {
        width: 100%;
        border-radius: 1rem;
        height: 18rem;
            }
       
        .center-container {
            top: 34%;
            left: 37%;
            
        } 
    
    .centered-text {
        font-size: 1rem;
    }
    .image-grid2 {
        display: block;
    }


    }
     @keyframes slideUp {
        0% {
            transform: translateY(100px);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .animate-slide-up {
        animation: slideUp 1s ease-out forwards;
        opacity: 0;
    }
    
    .animate-delay-1 { animation-delay: 0.2s; }
    .animate-delay-2 { animation-delay: 0.4s; }
    .animate-delay-3 { animation-delay: 0.6s; }
    .animate-delay-4 { animation-delay: 0.8s; }

 .section {
          padding: 4rem 4rem;
      text-align: left;
      background: radial-gradient(circle at top right, #003366, var(--midnight-navy));
    }

    .section h1 {
      font-size: 3rem;
      font-weight: bold;
      margin: 0;
      margin-bottom: 40px;
      color: var(--platinum-white);
    }

    .stats-container {
       display: grid;
  grid-template-columns: repeat(5, 1fr);

    }

    .stat-box {
        text-align: center;
      background: white;
      color: var(--cyber-gray);
      padding: 15px;
      
    width: 10rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
.method-section h2{
    font-size: 3rem;
     margin-top: 0;
      font-weight: bold;
    
      text-align: center;
     

}
    .stat-box h2 {
      font-size: 2.2rem;
      margin: 0;
     
      position: relative;
      color: var(--midnight-navy);
      display: inline-block;
    }

    .stat-box h2::after {
      content: "+";
      font-size: 1.9rem;
      position: absolute;
      top: 0;
      color: var(--electric-blue);
          right: -15px;
    }

    .stat-box small {
      display: block;
      margin-top: 10px;
      text-transform: uppercase;
      font-size: .8rem;
    }
    @media screen and (max-width: 1366px) and (min-width: 1024px) {
        .stat-box {
    text-align: center;
    background: white;
    color: var(--cyber-gray);
    padding: 20px;
    width: 10rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
        .stat-box small {
    display: block;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: .8rem;
}
  /* Styles for small-screen laptops */
   .ftr-flex {
    display: flex
;
    justify-content: left;
    gap: 18rem;
    align-items: center;
    margin: 4rem 0;
}
}
    @media screen and (max-width: 1366px) and (max-height: 768px) {
        .stat-box {
    text-align: center;
    background: white;
    color: var(--cyber-gray);
    padding: 20px;
    width: 10rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
        .stat-box small {
    display: block;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: .8rem;
}
        .ftr-flex {
    display: flex
;
    justify-content: left;
    gap: 18rem;
    align-items: center;
    margin: 4rem 0;
}
        .team-flex4 {
        grid-template-columns: repeat(3, 1fr);
       
    }
    .p1 {
    padding: 0 0rem;
}
.contact-flex1 {
    display: flex
;
    justify-content: left;
    align-items: flex-start;
    gap: 0.5rem;
} 
}
        .team-image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
        

    

     h1 {
    font-family: 'Bebas Neue', sans-serif;
  }
  @media (max-width: 1024px) {
    .stats-container {
  margin-left:3rem;
    grid-template-columns: repeat(2, 1fr);
    
}
.steps-grid {
    display: grid
;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
    
}
@keyframes fadeInAndUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.active {
  animation: fadeInAndUp 1s ease-out forwards;
}
 .testimonial-section {
            padding: 4rem 4rem;
           
           
        }

        .testimonial-heading {
             font-size: 3rem;
     margin-top: 0;
      font-weight: bold;
      color:var(--midnight-navy)

        }

        .testimonial-subtitle {
            text-align: left;
            font-size: 1rem;
            color: #5c5c5c;
            margin-top: 0.25rem;
            text-transform: uppercase;
            font-weight: 500;
        }

        .testimonial-wrapper {
            display: flex;
            margin-top: 2rem;
            gap: 2rem;
        }

        .testimonial-left {
            flex: 1;
            max-width: 150px;
        }

        .quote-symbol {
            font-size: 10rem; /* Increase from 6rem to 10rem */
  
    line-height: 1;
            font-family: 'Bebas Neue', sans-serif;
            color: var(--cyber-gray);
           
        }

        .testimonial-intro {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: var(--midnight-navy);
  
}


        .separator-line {
            width: 60px;
            height: 3px;
            background: var(--electric-blue);
            margin-top: 2rem;
        }

        .testimonial-carousel-outer {
            flex: 3;
            position: relative;
            overflow: hidden;
        }

        .testimonial-carousel-track {
            display: flex;
            gap: 24px;
            transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
            padding: 10px 0;
        }

       

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--midnight-navy);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: var(--electric-blue);
            transform: translateY(-50%) scale(1.1);
        }

        .nav-btn.left {
            left: -20px;
        }

        .nav-btn.right {
            right: -20px;
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--electric-blue);
            transform: scale(1.2);
        }

        @media (max-width: 1024px) {
            .team-sec1 {
    text-align: center;
    margin-top: 4rem;
    /* padding: 1rem; */
}
.team-sec3 {
    padding: 2rem 2rem;
    padding-bottom: 6rem;
}
.team-flex4 {
        grid-template-columns: repeat(4, 1fr);
    }
.team-sec2 {
    background-color: var(--midnight-navy);
    padding: 2.2rem
}
            .pad {
    padding: 0rem 2rem;
    padding-top: 4rem;
}
            .social-media-links a {
    
    font-size: 12px;
    margin: -2px;
    
}
            .team-image-grid {
        grid-template-columns: repeat(4, 1fr);
    }
            .team-sec1 img {
   
    width: 500px;
}
            .testimonial-wrapper {
                flex-direction: column;
            }
            
            .testimonial-left {
                max-width: 100%;
                text-align: center;
            }
            
            .separator-line {
                margin: 1.5rem auto;
            }
            
            .testimonial-card {
                flex: 0 0 calc(50% - 12px);
            }
        }

        @media (max-width: 768px) {
            .testimonial-heading {
                font-size: 2.2rem;
            }
            
            .testimonial-card {
                flex: 0 0 100%;
            }
            
            .nav-btn {
                top: 40%;
            }
        }

        @media (max-width: 480px) {
            .testimonial-heading {
                font-size: 1.8rem;
            }
            
            .testimonial-subtitle {
                font-size: 0.9rem;
            }
            
            .testimonial-section {
                padding: 2rem 1rem;
            }
        }


        .testimonial-cards-grid {
    flex: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 10px 0;
}

@media (max-width: 1024px) {
    .testimonial-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Keep your existing testimonial-card styling */
.testimonial-card {
   
    color: var(--platinum-white);
    padding: 1.5rem;
  
   
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f1f1f1;
}

.testimonial-brand {
    font-size: 1rem;
    color: var(--neon-teal);
    font-weight: 500;
}



.brand-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.b{
    background: linear-gradient(135deg, var(--electric-blue), var(--midnight-navy));
    padding: 1rem;
    height: 10rem;
}
