* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Poppins', sans-serif;
}

a {
   text-decoration: none;
   color: inherit;
}

:root {
   --primary-color: #070D1A; /* Deeper navy for luxury */
   --accent-color: #E94D4E;  /* Ruby for premium action */
   --accent-2: #B9810D;      /* Bronze-gold for gradient pairing */
   --gold: #FFC94A;          /* Rich gold for highlights */
   --text-light: #ffffff;
   --text-dark: #0C1424;
   --surface-dark: #0A0F1A;
   --transition: all 0.3s ease;
}

body {
   background-color: var(--text-light);
   color: var(--text-dark);
   line-height: 1.6;
   overflow-x: hidden;
}

header {
   background-color: var(--primary-color);
   padding: 1rem 5%;
   color: var(--text-light);
   display: flex;
   justify-content: space-between;
   align-items: center;
   position: sticky;
   top: 0;
   z-index: 1000;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
   font-weight: 800;
   font-size: 1.2rem;
   transition: var(--transition);
}

.logo:hover {
   transform: scale(1.05);
}

.nav-bar .contact {
   font-size: 1.1rem;
   font-weight: 500;
}

nav ul {
   list-style: none;
   display: flex;
   gap: 1.5rem;
}

nav ul li a {
   color: var(--text-light);
   text-decoration: none;
   font-weight: 500;
   padding: 0.5rem;
   transition: var(--transition);
   position: relative;
}

nav ul li a::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: 2px;
   background-color: var(--accent-color);
   transition: var(--transition);
}

nav ul li a:hover::after {
   width: 100%;
}

.hamburger {
   display: none;
   flex-direction: column;
   gap: 5px;
   cursor: pointer;
}

.hamburger div {
   width: 25px;
   height: 3px;
   background-color: var(--text-light);
   transition: var(--transition);
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    gap: 2rem;
    align-items: center;
}

.hero-video {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero {
   background-color: var(--primary-color);
   color: var(--text-light);
   padding: 5rem 5%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 2rem;
   border-bottom-left-radius: 5rem;
   /*min-height: calc(100vh - 80px);*/
}

.hero-img {
   flex: 1;
   display: flex;
   justify-content: center;
   align-items: center;
}

.hero-img img {
   max-width: 100%;
   max-height: 70vh;
   border-radius: 2rem;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
   transition: var(--transition);
}

.hero-img img:hover {
   transform: scale(1.02);
}

.hero-text {
   flex: 1;
   max-width: 600px;
}

.hero-text h1 {
   font-size: clamp(2rem, 5vw, 3.5rem);
   margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-text p {
   font-size: clamp(1rem, 2vw, 1.2rem);
   margin-bottom: 2rem;
   opacity: 0.9;
}

.hero-text button {
   background-color: var(--accent-color);
   color: var(--text-light);
   border: none;
   padding: 1rem 2rem;
   font-size: 1rem;
   border-radius: 50px;
   cursor: pointer;
   transition: var(--transition);
   box-shadow: 0 4px 15px rgba(244, 67, 105, 0.3);
}

.hero-text button:hover {
   transform: translateY(-3px);
   box-shadow: 0 6px 20px rgba(244, 67, 105, 0.4);
}

/* Services Section */
.services {
   background: linear-gradient(135deg, #fff0f2 0%, #fff5f7 100%);
   padding: 5rem 5%;
   border-top-left-radius: 5rem;
   border-bottom-right-radius: 5rem;
   position: relative;
   overflow: hidden;
}

.services::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23f8d7da" fill-opacity="0.1" d="M0 0 L50 100 L100 0 Z" /></svg>') no-repeat center center;
   background-size: cover;
   opacity: 0.5;
   z-index: 0;
}

.services .section-title {
   position: relative;
   z-index: 1;
   color: var(--primary-color);
   font-size: clamp(2rem, 4vw, 2.5rem);
   margin-bottom: 3rem;
   align-items: center;
   justify-items: center;
}

.services .section-title::after {
   content: '';
   position: absolute;
   bottom: -15px;
   left: 50%;
   transform: translateX(-50%);
   width: 100px;
   height: 4px;
   background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
   border-radius: 2px;
}

.service-grid {
   display: grid;
   grid-template-columns: repeat(6, 1fr);
   gap: 30px;
   padding: 1rem 0;
   max-width: 1200px;
   margin: 0 auto;
}

.service-box {
   background: white;
   border-radius: 10px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
   display: flex;
   align-items: center;
   justify-content: center;
   height: 100px;
   padding: 5px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box img {
   max-width: 90%;
   height: 90%;
   object-fit: contain;
   filter: grayscale(0.2);
   transition: all 0.3s ease;
}

.service-box:hover {
   transform: translateY(-5px);
   box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.service-box:hover img {
   filter: grayscale(0);
   transform: scale(1.05);
}

/* Testimonial Section */
.testimonial-section {
   padding: 2rem 0;
   background: lavenderblush;
}

.testimonial-container {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 5%;
}

.section-header {
   /* text-align: center; */
   margin-bottom: 1rem;
}

.section-title {
   font-size: 2.5rem;
   color: var(--primary-color);
   margin-bottom: 0;
}

.section-title h2:hover {
   scale: 1.1rem;
}

.testimonial-content {
   display: grid;
   grid-template-columns: 0.9fr 1.1fr;
   gap: 4rem;
   align-items: center;
}

.testimonial-left {
   position: relative;
}

.testimonial-image {
   position: relative;
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
   width: 100%;
   height: 95%;
   display: block;
   object-fit: contain;
}

.testimonial-right {}

.testimonial-header {
   margin-bottom: 1rem;
}

.testimonial-header h2 {
   font-size: 2rem;
   color: var(--primary-color);
}

.testimonial-header h3 {
   font-size: 1.8rem;
   color: var(--accent-color);
}

.testimonial-features {
   display: grid;
   gap: 1rem;
}

.feature-item {
   display: flex;
   gap: 1.5rem;
   padding: 1rem;
   background: white;
   border-radius: 15px;
   transition: all 0.3s ease;
}

.feature-item:hover {
   transform: translateX(10px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon {
   width: 45px;
   height: 45px;
   background: lavenderblush;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.feature-icon i {
   font-size: 1.3rem;
   color: var(--accent-color);
}

.feature-content h4 {
   color: var(--primary-color);
   margin-bottom: 0.5rem;
   font-size: 1.1rem;
}

.feature-content p {
   color: #666;
   line-height: 1.6;
   margin: 0;
   font-size: 1rem;
}

.testimonial-cta {
   margin-top: 1.1rem;
   align-items: center;
}

.testimonial-cta .btn {
   display: inline-flex;
   align-items: left;
   gap: 1rem;
   background: var(--accent-color);
   color: white;
   padding: 1rem 2rem;
   border-radius: 50px;
   font-size: 1.1rem;
   font-weight: 600;
   transition: all 0.3s ease;
}

.testimonial-cta .btn:hover {
   transform: translateY(-3px);
   box-shadow: 0 10px 30px rgba(244, 67, 105, 0.2);
   background: #ff2d59;
}

.testimonial-cta .btn i {
   transition: transform 0.3s ease;
}

.testimonial-cta .btn:hover i {
   transform: translateX(5px);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
   .testimonial-content {
      gap: 3rem;
   }

   .testimonial-header h2 {
      font-size: 2rem;
   }

   .testimonial-header h3 {
      font-size: 1.6rem;
   }

   .feature-item {
      padding: 1.2rem;
   }
}

@media screen and (max-width: 992px) {
   .testimonial-section {
      padding: 3rem 0;
   }

   .testimonial-content {
      grid-template-columns: 1fr;
      gap: 3rem;
   }

   .testimonial-left {
      max-width: 500px;
      margin: 0 auto;
   }

   .testimonial-right {
      text-align: center;
      padding: 0;
   }

   .feature-item {
      text-align: left;
   }
}

@media screen and (max-width: 768px) {
   .section-title {
      font-size: 2rem;
   }

   .testimonial-header h2 {
      font-size: 1.8rem;
   }

   .testimonial-header h3 {
      font-size: 1.4rem;
   }

   .feature-item {
      padding: 1rem;
   }
}

@media screen and (max-width: 480px) {
   .testimonial-section {
      padding: 2rem 0;
   }

   .section-header {
      margin-bottom: 2rem;
   }

   .feature-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
   }

   .testimonial-cta .btn {
      width: 100%;
      justify-content: center;
   }
}

/* Super Hero Section */
.super-hero-section {
   padding: 5rem 5%;
   text-align: center;
   background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.super-hero-section h2 {
   font-size: clamp(1.8rem, 4vw, 2.5rem);
   margin-bottom: 1.5rem;
   color: var(--primary-color);
}

.super-hero-section p {
   max-width: 800px;
   margin: 0 auto 2rem;
   font-size: clamp(1rem, 2vw, 1.1rem);
   line-height: 1.8;
}

.floating-avatars {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 1.5rem;
   margin-top: 3rem;
}

.floating-avatars .avatar {
   background: white;
   padding: 1rem 2rem;
   border-radius: 50px;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   transition: var(--transition);
   cursor: pointer;
}

.floating-avatars .avatar:hover {
   transform: translateY(-5px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-text ul {
   list-style: none;
   padding: 0;
}

.testimonial-text ul li {
   margin-bottom: 10px;
   color: #333;
}

.super-hero-section {
   text-align: center;
   background: #fff0f5;
   padding: 50px 20px;
   position: relative;
   border-top-left-radius: 5rem;
   border-bottom-right-radius: 5rem;
}

.super-hero-section h2 {
   font-size: 28px;
   margin-bottom: 10px;
}

.super-hero-section .btn {
   margin-top: 20px;
   display: inline-block;
   background: #e9615e;
   color: white;
   padding: 12px 24px;
   border-radius: 30px;
   text-decoration: none;
   font-weight: 500;
}

.case-study-images {
    margin-top: 20px;
    padding: 0;

}

.case-study-slider {
    position: relative !important;
    padding: 0 !important;
    width: 80% !important;
    margin: auto !important;
    max-width: 1200px !important;
}

.case-study-slider .swiper-slide img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease !important;
    display: block !important;
}

.case-study-slider .swiper-slide:hover img {
    transform: translateY(-5px) !important;
}

@media screen and (max-width: 768px) {
    .case-study-slider .swiper-slide img {
        height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .case-study-slider .swiper-slide img {
        height: 200px;
    }
}

.clients-saying-section {
   background: #fff;
   padding: 10px 20px;
   text-align: center;
}

.clients-saying-section h2 {
   font-size: 28px;
   margin-bottom: 40px;
}

.client-cards {
   display: flex;
   gap: 20px;
   justify-content: center;
   flex-wrap: wrap;
}

.client-card {
   background: #f8f9fa;
   padding: 30px;
   border-radius: 12px;
   width: 300px;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
   text-align: left;
}

.client-card.active {
   border: 2px solid #e9615e;
}

.client-card p {
   font-size: 14px;
   margin-bottom: 20px;
   color: #555;
}

.client-card h4 {
   font-size: 16px;
   margin-bottom: 5px;
}

.client-card span {
   font-size: 12px;
   color: #999;
}

.clients-saying-section .stats {
   margin-top: 40px;
   font-weight: bolder;
   color: #0f172a;
   display: flex;
   justify-content: center;
   gap: 40px;
   flex-wrap: wrap;
   font-size: larger;
}

/* Tech Stack Section */
.tech-stack {
    background: linear-gradient(135deg, #909bca 0%, #764ba2 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.tech-stack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.tech-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tech-header {
    text-align: center;
    margin-bottom: 60px;
}

.tech-header .section-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.tech-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.tech-categories {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.tech-category {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 67px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.tech-card:hover::before {
    width: 8px;
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.tech-icon i {
    font-size: 1.5rem;
    color: white;
}

.tech-content {
    flex: 1;
}

.tech-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.tech-content p {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.5;
    margin: 0;
}

.tech-badge {
    position: absolute;
    top: 6px;
    right: 3px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-badge {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
}

/* We'll use JavaScript to apply different colors based on badge text */

/* Responsive Design for Tech Stack */
@media (max-width: 768px) {
    .tech-stack {
        padding: 60px 15px;
    }
    
    .tech-header .section-title {
        font-size: 2.5rem;
    }
    
    .tech-subtitle {
        font-size: 1.1rem;
    }
    
    .tech-category {
        padding: 30px 20px;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-card {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 16px;
      padding: 25px;
      display: flex;
      align-items: center;
      gap: 20px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
    }
    
    .tech-icon {
        width: 50px;
        height: 50px;
    }
    
    .tech-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .tech-header .section-title {
        font-size: 2rem;
    }
    
    .tech-subtitle {
        font-size: 1rem;
    }
    
    .tech-category {
        padding: 25px 15px;
    }
    
    .tech-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .tech-badge {
        position: static;
        margin-top: 15px;
        align-self: center;
    }
}

/* Footer Section */
.contact-footer {
   background-color: var(--primary-color);
   color: var(--text-light);
   padding: 5rem 5%;
}

.footer-container {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 4rem;
}

.footer-left h2,
.footer-right h2 {
   font-size: clamp(1.5rem, 3vw, 2rem);
   margin-bottom: 2rem;
   position: relative;
   display: inline-block;
}

.footer-left h2::after,
.footer-right h2::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 0;
   width: 50px;
   height: 3px;
   background-color: var(--accent-color);
}

.footer-left p {
   margin: 1rem 0;
   font-size: 1.1rem;
   opacity: 0.9;
}

.footer-left a {
   color: var(--text-light);
   text-decoration: none;
   transition: var(--transition);
}

.footer-left a:hover {
   color: var(--accent-color);
}

.footer-socials {
   margin: 2rem 0;
   display: flex;
   gap: 1.5rem;
}

.footer-socials a {
   color: var(--text-light);
   font-size: 1.5rem;
   transition: var(--transition);
}

.footer-socials a:hover {
   color: var(--accent-color);
   transform: translateY(-3px);
}

.footer-links {
   margin-top: 2rem;
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
}

.footer-links a {
   color: var(--text-light);
   text-decoration: none;
   font-size: 0.9rem;
   opacity: 0.8;
   transition: var(--transition);
}

.footer-links a:hover {
   opacity: 1;
   color: var(--accent-color);
}

.footer-right form {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.form-row {
   display: flex;
   gap: 1rem;
}

.form-row input,
textarea {
   flex: 1;
   padding: 1rem;
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 8px;
   background: rgba(255, 255, 255, 0.05);
   color: var(--text-light);
   font-size: 1rem;
   transition: var(--transition);
}

.form-row input:focus,
textarea:focus {
   outline: none;
   border-color: var(--accent-color);
   background: rgba(255, 255, 255, 0.1);
}

textarea {
   resize: vertical;
   min-height: 120px;
}

.footer-right button {
   background: var(--accent-color);
   color: var(--text-light);
   border: none;
   padding: 1rem 2rem;
   border-radius: 8px;
   font-size: 1rem;
   cursor: pointer;
   transition: var(--transition);
   width: fit-content;
}

.footer-right button:hover {
   transform: translateY(-3px);
   box-shadow: 0 6px 20px rgba(244, 67, 105, 0.4);
}

.thank-you {
   color: var(--accent-color);
   margin-top: 1rem;
   font-weight: 500;
}

/* Mobile-specific styles */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
   .hero {
      padding: 3rem 5%;
      flex-direction: column;
      text-align: center;
   }

   .hero-text {
      margin-bottom: 2rem;
   }

   nav ul {
      gap: 1rem;
   }

   .testimonial-container {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
   }

   .service-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   }
}

@media screen and (max-width: 768px) {
   header {
      padding: 1rem 5%;
   }

    .mobile-only {
      display: block;
   }

   .desktop-only {
      display: none;
   }

   .nav-bar {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background-color: var(--primary-color);
      transition: var(--transition);
   }

   .nav-bar.active {
      left: 0;
   }

   nav ul {
      flex-direction: column;
      align-items: center;
      padding: 2rem 0;
      gap: 2rem;
   }

   .hamburger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 1000;
   }

   .hamburger div {
      width: 25px;
      height: 3px;
      background-color: var(--text-light);
      transition: var(--transition);
   }

   .contact {
      display: none;
   }

   .services,
   .testimonial-section,
   .super-hero-section {
      padding: 3rem 5%;
   }

   .floating-avatars {
      gap: 1rem;
   }

   .floating-avatars .avatar {
      padding: 0.8rem 1.5rem;
      font-size: 0.9rem;
   }

   .service-box {
      height: 150px;
   }

   .about-container {
      flex-direction: column;
   }

   .about-text {
      width: 100%;
      order: 1;
   }

   .about-image.mobile-only {
      margin: 2rem 0;
      text-align: center;
   }

   .about-features {
      margin: 2rem 0;
   }

   .about-description {
      margin-top: 2rem;
   }

   .mobile-only .cta-button {
      width: 100%;
      margin-top: 2rem;
   }
}

@media screen and (max-width: 480px) {
   .hero-text h1 {
      font-size: 2rem;
   }

   .hero-text p {
      font-size: 1rem;
   }

   .hero {
      padding: 2rem 5%;
   }

   .services,
   .testimonial-section,
   .super-hero-section {
      padding: 2rem 5%;
   }

   .service-grid {
      grid-template-columns: 1fr;
   }

   .floating-avatars .avatar {
      width: 100%;
      text-align: center;
   }
}

/* @media (min-width: 768px) {
    .hero {
        display: flex;
        flex-direction: column;
        align-items: left;
        gap: 30px;
    }

    .hero-img {
        width: 500px;
        max-width: 100%;
        min-height: 400px;
        object-fit: cover;
        border-radius: 15px;
    }

} */

/* Footer Responsive */
@media screen and (max-width: 768px) {
   .footer-container {
      grid-template-columns: 1fr;
      gap: 3rem;
   }

   .form-row {
      flex-direction: column;
   }

   .footer-links {
      justify-content: center;
      text-align: left;
   }

   .footer-left,
   .footer-right {
      text-align: left;
   }

   .footer-left h2::after,
   .footer-right h2::after {
      left: 50%;
      transform: translateX(-50%);
   }

   .footer-socials {
      justify-content: left;
   }

   .footer-right {
      display: none;
   }
}

@media screen and (max-width: 480px) {
   .contact-footer {
      padding: 3rem 5%;
   }

   .footer-links {
      flex-direction: column;
      gap: 1rem;
   }

   .footer-right button {
      width: 100%;
   }
}

/* Chatbot Styles */
.chatbot-widget {
   position: fixed;
   bottom: 5rem;
   right: 2rem;
   z-index: 1000;
}

@media (max-width: 480px) {
   .chatbot-widget {
   position: fixed;
   bottom: 2rem;
   left: 2rem;
   z-index: 1000;
   }
}

.chatbot-button {
   background-color: var(--accent-color);
   color: var(--text-light);
   width: 60px;
   height: 60px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   box-shadow: 0 4px 15px rgba(244, 67, 105, 0.3);
   transition: var(--transition);
}

.chatbot-button:hover {
   transform: scale(1.1);
   box-shadow: 0 6px 20px rgba(244, 67, 105, 0.4);
}

.chatbot-button i {
   font-size: 24px;
}

.chatbot-container {
   position: fixed;
   bottom: 5rem;
   right: 2rem;
   width: 350px;
   height: 450px;
   background-color: var(--text-light);
   border-radius: 1rem;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   display: none;
   overflow: hidden;
   transition: var(--transition);
}

.chatbot-container.active {
   display: flex;
   flex-direction: column;
}

.chatbot-header {
   background-color: var(--primary-color);
   color: var(--text-light);
   padding: 1rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.chatbot-header h3 {
   font-size: 1.2rem;
   margin: 0;
}

.chatbot-close {
   cursor: pointer;
   font-size: 1.2rem;
   transition: var(--transition);
}

.chatbot-close:hover {
   color: var(--accent-color);
}

.chatbot-messages {
   flex: 1;
   padding: 1rem;
   overflow-y: auto;
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.message {
   max-width: 80%;
   padding: 0.8rem 1rem;
   border-radius: 1rem;
   font-size: 0.9rem;
}

.bot-message {
   background-color: #f0f0f0;
   align-self: flex-start;
   border-bottom-left-radius: 0.3rem;
}

.user-message {
   background-color: var(--accent-color);
   color: var(--text-light);
   align-self: flex-end;
   border-bottom-right-radius: 0.3rem;
}

.chatbot-input {
   padding: 1rem;
   border-top: 1px solid rgba(0, 0, 0, 0.1);
   display: flex;
   gap: 0.5rem;
}

.chatbot-input input {
   flex: 1;
   padding: 0.8rem;
   border: 1px solid rgba(0, 0, 0, 0.1);
   border-radius: 0.5rem;
   outline: none;
   font-size: 0.9rem;
}

.chatbot-input button {
   background-color: var(--accent-color);
   color: var(--text-light);
   border: none;
   padding: 0.8rem 1.2rem;
   border-radius: 0.5rem;
   cursor: pointer;
   transition: var(--transition);
}

.chatbot-input button:hover {
   background-color: var(--primary-color);
}

@media screen and (max-width: 768px) {
   .service-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
   }

   .chatbot-container {
      width: 300px;
      height: 400px;
      bottom: 5rem;
      right: 1rem;
   }
}

@media screen and (max-width: 480px) {
   .service-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 0.8rem;
   }

   .service-box {
      height: 120px;
   }

   .chatbot-container {
      width: calc(100% - 2rem);
      right: 1rem;
      left: 1rem;
   }
}

/* Client Stats */
.client-stats {
   display: flex;
   justify-content: center;
   gap: 4rem;
   margin-top: 4rem;
   flex-wrap: wrap;
   position: relative;
   z-index: 1;
}

.stat-item {
   text-align: center;
   padding: 1.5rem;
   background: rgba(255, 255, 255, 0.9);
   border-radius: 1rem;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
   min-width: 200px;
}

.stat-number {
   font-size: 2.5rem;
   font-weight: 700;
   color: var(--accent-color);
   margin-bottom: 0.5rem;
   line-height: 1;
}

.stat-label {
   color: white;
   font-size: 1rem;
   font-weight: 500;
}

@media screen and (max-width: 768px) {
   .service-grid {
      gap: 1.5rem;
      padding: 1rem 0;
   }

   .service-box {
      height: 150px;
      padding: 1rem;
   }

   .client-stats {
      gap: 2rem;
   }

   .stat-item {
      min-width: 150px;
      padding: 1rem;
   }

   .stat-number {
      font-size: 2rem;
   }
}

@media screen and (max-width: 480px) {
   .services {
      padding: 3rem 5%;
   }

   .service-grid {
      gap: 1rem;
   }

   .service-box {
      height: 120px;
   }

   .client-stats {
      gap: 1rem;
   }

   .stat-item {
      min-width: 130px;
      padding: 0.8rem;
   }

   .stat-number {
      font-size: 1.8rem;
   }
}

/* Subscribe Section Styles */
.clients {
   padding: 5rem 5%;
   background: white;
   color: var(--text-dark);
   position: relative;
   overflow: hidden;
}

.clients::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23f4436520"/><circle cx="60" cy="60" r="1" fill="%23f4436520"/><circle cx="40" cy="80" r="1" fill="%23f4436520"/><circle cx="80" cy="40" r="1" fill="%23f4436520"/></svg>') repeat;
   background-size: 50px 50px;
   opacity: 0.1;
}

.clients .section-title {
   color: var(--text-dark);
   font-size: clamp(2rem, 4vw, 2.5rem);
   margin-bottom: 2.5rem;
   position: relative;
}

.clients .section-title::after {
   background: linear-gradient(90deg, var(--accent-color) 0%, #ff8da9 100%);
}

.subscribe_form {
   max-width: 800px;
   margin: 0 auto;
   padding: 2rem;
   background: #f8f9fa;
   border-radius: 1.5rem;
   border: 1px solid rgba(0, 0, 0, 0.1);
   display: flex;
   flex-wrap: wrap;
   gap: 2rem;
   justify-content: center;
   align-items: flex-end;
   position: relative;
   z-index: 1;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
   flex: 1 1 25px;
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
}

.form-group label {
   color: var(--text-dark);
   font-weight: 500;
   font-size: 1rem;
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.form-group input {
   width: 100%;
   padding: 1rem 1.2rem;
   border: 2px solid rgba(0, 0, 0, 0.1);
   border-radius: 0.8rem;
   background: white;
   color: var(--text-dark);
   font-size: 1rem;
   transition: all 0.3s ease;
}

.form-group input:focus {
   outline: none;
   border-color: var(--accent-color);
   background: rgba(255, 255, 255, 0.1);
   box-shadow: 0 0 0 4px rgba(244, 67, 105, 0.1);
}

.form-group input::placeholder {
   color: rgba(0, 0, 0, 0.4);
}

.subscribe-btn {
   padding: 1rem 2.5rem;
   background: var(--accent-color);
   color: var(--text-light);
   border: none;
   border-radius: 0.8rem;
   font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   gap: 0.5rem;
   margin-bottom: 0.5rem;
}

.subscribe-btn i {
   transition: transform 0.3s ease;
}

.subscribe-btn:hover {
   background: #ff2d59;
   transform: translateY(-2px);
   box-shadow: 0 10px 20px rgba(244, 67, 105, 0.3);
}

.subscribe-btn:hover i {
   transform: translateX(5px);
}

.subscribe-features {
   display: flex;
   justify-content: center;
   gap: 3rem;
   margin-top: 3rem;
   flex-wrap: wrap;
}

.feature-item {
   display: flex;
   align-items: center;
   gap: 1rem;
   color: var(--text-dark);
   opacity: 0.9;
}

.feature-item i {
   font-size: 1.5rem;
   color: var(--accent-color);
}

@media screen and (max-width: 768px) {
   .clients {
      padding: 4rem 5%;
   }

   .subscribe_form {
      padding: 1.5rem;
      gap: 1.5rem;
   }

   .form-group {
      flex: 1 1 100%;
   }

   .subscribe-features {
      gap: 2rem;
      margin-top: 2rem;
      /* flex-direction: column; */
      /* align-items: center; */
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      flex-wrap: wrap;
   }
}

@media screen and (max-width: 480px) {
   .clients {
      padding: 3rem 5%;
   }

   .subscribe_form {
      padding: 1rem;
      gap: 1rem;
   }

   .subscribe-btn {
      width: 100%;
      justify-content: center;
   }

}

/* Stats Hero Section */
.stats-hero {
   background: linear-gradient(135deg, var(--primary-color) 0%, #1a1f35 100%);
   color: var(--text-light);
   padding: 8rem 5% 6rem;
   position: relative;
   overflow: hidden;
   min-height: 80vh;
   display: flex;
   align-items: center;
}

.stats-hero::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23ffffff20"/><circle cx="60" cy="60" r="1" fill="%23ffffff20"/><circle cx="40" cy="80" r="1" fill="%23ffffff20"/><circle cx="80" cy="40" r="1" fill="%23ffffff20"/></svg>') repeat;
   background-size: 50px 50px;
   opacity: 0.1;
}

.stats-container {
   max-width: 1200px;
   margin: 0 auto;
   text-align: center;
   position: relative;
   z-index: 1;
}

.stats-hero h1 {
   font-size: clamp(2.5rem, 5vw, 4rem);
   margin-bottom: 4rem;
   line-height: 1.2;
   font-weight: 700;
   background: linear-gradient(90deg, #fff, #f8f9fa);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stats-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 3rem;
   margin-top: 2rem;
}

.stat-item {
   background: rgba(255, 255, 255, 0.05);
   padding: 2rem;
   border-radius: 1.5rem;
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.1);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
   transform: translateY(-10px);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
   font-size: clamp(2rem, 4vw, 3rem);
   font-weight: 700;
   margin-bottom: 1rem;
   color: var(--accent-color);
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
}

.stat-number i {
   font-size: 0.8em;
}

.stat-label {
   font-size: clamp(1rem, 2vw, 1.2rem);
   opacity: 0.9;
   font-weight: 500;
}

@media screen and (max-width: 768px) {
   .stats-hero {
      padding: 4rem 5% 4rem;
   }

   .stats-grid {
      grid-template-columns: repeat(1, 1fr);
      gap: 2rem;
   }

   .stat-item {
      padding: 1.5rem;
   }
}

@media screen and (max-width: 480px) {
   .stats-hero {
      padding: 0rem 5% 0rem;
   }

   .stats-hero h1 {
      margin-top: 2.5rem;
      margin-bottom: 0.5rem;
   }

   .hero-subtitle {
      margin-bottom: 1rem;
   }

   .stats-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
   }

   .stat-item {
      padding: 1.2rem;
   }
}

/* International Clients Section */
.international-clients {
   padding: 2rem 5%;
   padding-bottom: 0;
   background: white;
}

.international-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   max-width: 1000px;
   margin: 0 auto;
   padding: 2rem 0;
}

.client-box {
   background: #f8f9fa;
   border-radius: 1rem;
   padding: 1rem;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease;
   border: 1px solid rgba(0, 0, 0, 0.1);
}

.client-box:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-box img {
   max-width: 90%;
   max-height: 90%;
   object-fit: contain;
}

/* Video Gallery Styles */
.video-gallery {
   padding: 1rem 2rem;
   background: var(--light-bg);
}

.video-slider {
   position: relative;
   padding: 2rem 0 2rem;
   /* Added padding bottom for pagination */
}

.video-item {
   transition: transform 0.3s ease;
}

.video-item:hover {
   transform: translateY(-5px);
}

.video-thumbnail {
   position: relative;
   border-radius: 15px;
   overflow: hidden;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-thumbnail img {
   width: 100%;
   height: 200px;
   object-fit: cover;
}

.play-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.3);
   display: flex;
   justify-content: center;
   align-items: center;
   opacity: 0;
   transition: opacity 0.3s ease;
}

.video-thumbnail:hover .play-overlay {
   opacity: 1;
}

.play-button {
   width: 60px;
   height: 60px;
   background: var(--accent-color);
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   color: white;
   font-size: 1.5rem;
   transition: transform 0.3s ease;
}

.play-button:hover {
   transform: scale(1.1);
}

.video-duration {
   position: absolute;
   bottom: 10px;
   right: 10px;
   background: rgba(0, 0, 0, 0.7);
   color: white;
   padding: 0.3rem 0.6rem;
   border-radius: 4px;
   font-size: 0.8rem;
}

.video-title {
   padding: 1rem;
   font-weight: 500;
   color: var(--primary-color);
   text-align: center;
   margin-top: 5px;
}

/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
   color: var(--accent-color);
   background: white;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
   font-size: 1.2rem;
}

/* Swiper Pagination Styles */
.swiper-pagination {
   position: relative;
   bottom: -10px;
   margin-top: 2rem;
}

.swiper-pagination-bullet {
   width: 10px;
   height: 10px;
   background: var(--accent-color);
   opacity: 0.5;
   transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
   opacity: 1;
   width: 20px;
   border-radius: 5px;
}

/* Mobile Optimizations */
@media screen and (max-width: 768px) {
   .video-gallery {
      padding: 3rem 1rem;
   }

   .video-thumbnail img {
      height: 180px;
   }

   .play-button {
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
   }

   .swiper-button-next,
   .swiper-button-prev {
      width: 35px;
      height: 35px;
   }

   .swiper-button-next:after,
   .swiper-button-prev:after {
      font-size: 1rem;
   }
}

@media screen and (max-width: 480px) {
   .video-thumbnail img {
      height: 160px;
   }

   .video-title {
      font-size: 0.9rem;
      padding: 0.8rem;
   }

   .play-button {
      width: 45px;
      height: 45px;
      font-size: 1rem;
   }
}

/* Book Section */
.book-section {
   padding: 5rem 5%;
   background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
   position: relative;
   overflow: hidden;
}

.book-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23f4436510" d="M0 0h100v100H0z"/><path fill="%23f4436505" d="M10 0h10v100H10zM30 0h10v100H30zM50 0h10v100H50zM70 0h10v100H70zM90 0h10v100H90z"/></svg>') repeat;
   background-size: 100px 100px;
   opacity: 0.5;
}

.book-container {
   max-width: 1200px;
   margin: 0 auto;
   position: relative;
   z-index: 1;
}

.book-content {
   text-align: center;
}

.book-details {
   display: flex;
   align-items: center;
   gap: 4rem;
   margin-top: 3rem;
   background: white;
   border-radius: 2rem;
   padding: 3rem;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
   text-align: left;
}

.book-image {
   flex: 1;
   max-width: 400px;
}

.book-image img {
   width: 100%;
   height: auto;
   border-radius: 1rem;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
}

.book-image img:hover {
   transform: translateY(-10px);
}

.book-info {
   flex: 1;
}

.book-info h3 {
   font-size: clamp(1.5rem, 3vw, 2rem);
   color: var(--primary-color);
   margin-bottom: 1.5rem;
   line-height: 1.3;
}

.book-highlights {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   margin-bottom: 2rem;
}

.highlight-item {
   display: flex;
   align-items: center;
   gap: 1rem;
   font-size: 1.1rem;
}

.highlight-item i {
   color: var(--accent-color);
   font-size: 1.2rem;
}

.book-description {
   font-size: 1.1rem;
   line-height: 1.6;
   color: #666;
   margin-bottom: 2rem;
}

.book-cta {
   display: flex;
   align-items: center;
   gap: 2rem;
}

.buy-book-btn {
   background: var(--accent-color);
   color: white;
   border: none;
   padding: 1rem 2rem;
   font-size: 1.1rem;
   font-weight: 600;
   border-radius: 50px;
   cursor: pointer;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   gap: 0.8rem;
}

.buy-book-btn i {
   font-size: 1.2rem;
}

.buy-book-btn:hover {
   transform: translateY(-3px);
   box-shadow: 0 10px 20px rgba(244, 67, 105, 0.2);
   background: #ff2d59;
}

.book-price {
   display: flex;
   flex-direction: column;
}

.price-tag {
   font-size: 2rem;
   font-weight: 700;
   color: var(--primary-color);
}

.price-note {
   font-size: 0.9rem;
   color: #666;
}

@media screen and (max-width: 1024px) {
   .book-details {
      padding: 2rem;
      gap: 2rem;
   }
}

@media screen and (max-width: 768px) {
   .book-details {
      flex-direction: column;
      text-align: center;
   }

   .book-image {
      max-width: 300px;
      margin: 0 auto;
   }

   .book-highlights {
      align-items: center;
   }

   .book-cta {
      flex-direction: column;
      align-items: center;
   }

   .book-price {
      align-items: center;
   }
}

@media screen and (max-width: 480px) {
   .book-details {
      padding: 1.5rem;
      margin-top: 2rem;
   }

   .book-image {
      max-width: 250px;
   }

   .highlight-item {
      font-size: 1rem;
   }

   .book-description {
      font-size: 1rem;
   }

   .buy-book-btn {
      width: 100%;
      justify-content: center;
   }
}

/* About Section */
.about {
   /* height: 100%; */
   padding: 3rem;
   background: white;
   position: relative;
   overflow: hidden;
   display: flex;
   align-items: center;
}

.about-container {
   max-width: 1200px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   gap: 3rem;
}

.about-content {
   flex: 1;
}

.about-text {
   margin-top: 1rem;
}

.about-content .section-title {
   color: var(--primary-color);
   /* font-size: clamp(1.5rem, 4vw, 2.5rem);
   margin-bottom: 0.5rem; */
   transition: transform 0.3s ease;
   display: inline-block;
   cursor: pointer;
}

.section-title:hover {
   transform: scale(1.05);
   color: var(--accent-color);
}

.about-text h4 {
   font-size: clamp(1.2rem, 3vw, 2.5rem);
   font-family: Arial, Helvetica, sans-serif;
   color: var(--primary-color);
   margin-bottom: 1.5rem;
   line-height: 1.3;
   transition: transform 0.3s ease;
   display: inline-block;
   cursor: pointer;
}

.about-text h4:hover {
   transform: scale(1.05);
   color: var(--accent-color);
}

.about-description {
   margin-bottom: 2.5rem;
}

.about-description p {
   font-size: 1.1rem;
   /* line-height: 1.8; */
   color: #666;
   margin-bottom: 1.5rem;
}

.about-features {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   margin-bottom: 1.5rem;
}

.feature {
   text-align: center;
   padding: 1.0rem;
   background: #f8f9fa;
   border-radius: 1rem;
   transition: all 0.3s ease;
}

.feature:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature i {
   font-size: 2rem;
   color: var(--accent-color);
   margin-bottom: 1rem;
}

.feature span {
   font-size: 1rem;
   font-weight: 500;
   color: var(--primary-color);
}

.about-image {
   flex: 1;
   position: relative;
   padding: 0rem;
}

.about-image img {
   max-width: 85%;
   max-height: 80%;
   border-radius: 2rem;
   /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
   transition: transform 0.3s ease;
}

.about-image:hover img {
   transform: translateY(-10px);
}

.experience-badge {
   position: absolute;
   bottom: 20px;
   right: 10px;
   background: var(--accent-color);
   color: white;
   padding: 1rem;
   border-radius: 1rem;
   text-align: center;
   box-shadow: 0 10px 30px rgba(244, 67, 105, 0.3);
}

.experience-badge .years {
   font-size: 1.5rem;
   font-weight: 600;
   display: block;
   line-height: 1;
}

.experience-badge .text {
   font-size: 0.9rem;
   opacity: 0.9;
}

.cta-button {
   background: var(--accent-color);
   color: white;
   border: none;
   padding: 1rem 2rem;
   font-size: 1.1rem;
   border-radius: 50px;
   cursor: pointer;
   transition: all 0.3s ease;
   display: inline-flex;
   align-items: center;
   gap: 0.8rem;
   margin-top: 1rem;
}

.cta-button:hover {
   transform: translateY(-3px);
   box-shadow: 0 10px 30px rgba(244, 67, 105, 0.2);
   background: #ff2d59;
}

/* Responsive Design Improvements */
@media screen and (max-width: 1200px) {
   .about-container {
      gap: 3rem;
   }

   .about-features {
      gap: 1.5rem;
   }

   .experience-badge {
      padding: 1rem;
   }
}

@media screen and (max-width: 992px) {
   .about {
      padding: 6rem 5%;
   }

   .about-container {
      flex-direction: column;
      text-align: center;
   }

   .about-features {
      justify-content: center;
   }

   .about-image {
      max-width: 600px;
      margin: 0 auto;
   }

   .experience-badge {
      right: 2rem;
   }
}

@media screen and (max-width: 768px) {
   .about {
      padding: 4rem 5%;
   }

   .about-features {
      grid-template-columns: repeat(1, 1fr);
   }

   .about-image {
      max-width: 100%;
   }

   .experience-badge {
      padding: 1rem;
      right: 1rem;
   }

   .experience-badge .years {
      font-size: 2rem;
   }
}

@media screen and (max-width: 480px) {
   .about {
      padding: 3rem 5%;
   }

   .about-features {
      grid-template-columns: 1fr;
   }

   .about-description p {
      font-size: 1rem;
   }

   .experience-badge {
      position: absolute;
       /* margin-top: 2rem;  */
       display: inline-block; 
      right: 15px;
      padding: 1rem;
      bottom: 50px;
   }

   .cta-button {
      width: 100%;
      justify-content: center;
      margin-top: 1rem;
   }
}

/* General Responsive Improvements */
html {
   font-size: 16px;
}

@media screen and (max-width: 1400px) {
   html {
      font-size: 15px;
   }
}

@media screen and (max-width: 1200px) {
   html {
      font-size: 14px;
   }
}

@media screen and (max-width: 992px) {
   html {
      font-size: 13px;
   }
}

@media screen and (max-width: 768px) {
   html {
      font-size: 12px;
   }
}

/* Add smooth scrolling */
html {
   scroll-behavior: smooth;
}

/* Improve container responsiveness */
.container {
   width: 100%;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 5%;
}

/* Improve image responsiveness */
img {
   max-width: 100%;
   height: auto;
}

/* Improve form responsiveness */
input,
textarea,
select {
   width: 100%;
   max-width: 100%;
}

/* New: rating badge under hero */
.rating-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgba(255, 201, 74, 0.14);
   border: 1px solid rgba(255, 201, 74, 0.55);
   color: var(--gold);
   padding: 8px 14px;
   border-radius: 999px;
   font-weight: 600;
}

/* New: Trusted-by strip */
.trusted-strip {
   background: #ffffff;
   padding: 24px 0;
   border-top: 1px solid #eef2f7;
   border-bottom: 1px solid #eef2f7;
}

.trusted-strip .trusted-title {
   text-align: center;
   font-size: 0.95rem;
   color: #6b7280;
   margin-bottom: 12px;
}

.trusted-strip .logo-row {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   gap: 24px 36px;
}

.trusted-strip .logo-row img {
   height: 36px;
   width: auto;
   object-fit: contain;
   filter: grayscale(100%) contrast(1.1);
   opacity: 0.8;
   transition: all 0.25s ease;
}

.trusted-strip .logo-row img:hover {
   filter: grayscale(0);
   opacity: 1;
}

/* New: FAQ section */
.faq-section {
   background: #ffffff;
   padding: 40px 0;
}

.faq-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 16px;
   margin-top: 12px;
}

.faq-item {
   background: #f8fafc;
   border: 1px solid #e5e7eb;
   border-radius: 12px;
   padding: 0 16px;
}

.faq-item summary {
   cursor: pointer;
   font-weight: 600;
   color: #111827;
   padding: 14px 4px;
   list-style: none;
}

.faq-item[open] summary {
   color: #0f172a;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
   color: #4b5563;
   padding: 0 4px 14px;
   margin: 0;
   font-size: 0.95rem;
}

/* New: Floating WhatsApp CTA */
.floating-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   z-index: 1000;
}

.floating-cta a {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 12px 16px;
   background: linear-gradient(135deg, #25D366, #1ebe5d);
   color: #fff;
   border-radius: 999px;
   box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
   font-weight: 700;
}

.floating-cta i { font-size: 1.2rem; }

@media (max-width: 480px) {
   .floating-cta a { padding: 12px 14px; font-size: 0.95rem; }
}

/* Header Actions */
.header-actions {
   display: flex;
   align-items: center;
   gap: 2rem;
}

.login-btn {
   background: var(--accent-color);
   color: white;
   border: none;
   padding: 0.8rem 1.5rem;
   border-radius: 50px;
   font-size: 1rem;
   font-weight: 500;
   cursor: pointer;
   display: flex;
   align-items: center;
   gap: 0.5rem;
   transition: all 0.3s ease;
}

.login-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(244, 67, 105, 0.3);
   background: #ff2d59;
}

/* Modal Styles */
.modal {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   z-index: 1000;
   backdrop-filter: blur(5px);
}

.modal-content {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background: white;
   width: 90%;
   max-width: 400px;
   border-radius: 12px;
   padding: 1rem;
   /* max-height: 60vh; */
}

.close-btn {
   position: absolute;
   top: 16px;
   right: 16px;
   background: none;
   border: none;
   color: #666;
   font-size: 1.25rem;
   cursor: pointer;
   padding: 4px;
   opacity: 0.6;
   transition: opacity 0.3s ease;
}

.close-btn:hover {
   opacity: 1;
}

.login-header {
   text-align: center;
   margin-bottom: 2rem;
}

.user-icon {
   width: 64px;
   height: 64px;
   background: #ff4b7d;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 1.25rem;
}

.user-icon i {
   color: white;
   font-size: 1.75rem;
}

.login-header h2 {
   color: #333;
   font-size: 1.75rem;
   font-weight: 600;
   margin: 0 0 0.5rem;
}

.login-header p {
   color: #666;
   font-size: 1rem;
   margin: 0;
}

/* Login Form Styles */
.login-form {
   display: flex;
   flex-direction: column;
   gap: 1.25rem;
}

.form-group {
   position: relative;
}

.input-with-icon {
   position: relative;
}

.input-with-icon i {
   position: absolute;
   left: 1rem;
   top: 50%;
   transform: translateY(-50%);
   color: #999;
   font-size: 1.1rem;
}

.input-with-icon input {
   width: 100%;
   padding: 1rem 1rem 1rem 3rem;
   background: #f5f5f5;
   border: none;
   border-radius: 8px;
   margin-right: 10px;
   font-size: 1rem;
   color: #333;
   transition: background-color 0.3s ease;
}

.input-with-icon input::placeholder {
   color: #999;
}

.input-with-icon input:focus {
   outline: none;
   background: #f0f0f0;
}

.toggle-password {
   position: absolute;
   right: 1rem;
   top: 50%;
   transform: translateY(-50%);
   background: none;
   border: none;
   color: #999;
   cursor: pointer;
   padding: 0;
   font-size: 1.1rem;
   opacity: 0.6;
   transition: opacity 0.3s ease;
}

.toggle-password:hover {
   opacity: 1;
}

.form-options {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin: -0.5rem 0;
}

.remember-me {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   cursor: pointer;
   color: #666;
   font-size: 0.9rem;
}

.remember-me input[type="checkbox"] {
   width: 18px;
   height: 18px;
   cursor: pointer;
   accent-color: #ff4b7d;
}

.forgot-link {
   color: #ff4b7d;
   text-decoration: none;
   font-size: 0.9rem;
   transition: opacity 0.3s ease;
}

.forgot-link:hover {
   opacity: 0.8;
}

.login-submit-btn {
   background: #ff4b7d;
   color: white;
   border: none;
   padding: 1rem;
   border-radius: 8px;
   font-size: 1rem;
   font-weight: 500;
   cursor: pointer;
   transition: opacity 0.3s ease;
   width: 100%;
}

.login-submit-btn:hover {
   opacity: 0.9;
}

.register-link {
   text-align: center;
   margin-top: 0.5rem;
   font-size: 0.9rem;
   color: #666;
}

.register-link span {
   margin-right: 0.5rem;
}

.register-link a {
   color: #ff4b7d;
   text-decoration: none;
   transition: opacity 0.3s ease;
}

.register-link a:hover {
   opacity: 0.8;
}

/* Responsive Styles */
@media screen and (max-width: 480px) {
   .modal-content {
      width: 95%;
      padding: 1.5rem;
   }

   .user-icon {
      width: 56px;
      height: 56px;
   }

   .user-icon i {
      font-size: 1.5rem;
   }

   .login-header h2 {
      font-size: 1.5rem;
   }

   .login-header p {
      font-size: 0.9rem;
   }

   .input-with-icon input {
      padding: 0.875rem 1rem 0.875rem 2.75rem;
      font-size: 0.95rem;
   }

   .login-submit-btn {
      padding: 0.875rem;
   }
}

/* Auth Form Styles */
.auth-form {
   display: none;
   opacity: 0;
   transition: opacity 0.3s ease;
}

.auth-form.active {
   display: block;
   opacity: 1;
}

/* Update Modal Content Max Height */
.modal-content {
   max-height: 90vh;
   overflow-y: auto;
}

/* Add smooth scrolling to modal */
.modal-content {
   scroll-behavior: smooth;
}

/* Style scrollbar */
.modal-content::-webkit-scrollbar {
   width: 8px;
}

.modal-content::-webkit-scrollbar-track {
   background: #f1f1f1;
   border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
   background: #888;
   border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
   background: #555;
}

/* Add error message styling */
.error-message {
   color: #ff4b4b;
   font-size: 0.85rem;
   margin-top: 0.5rem;
   display: none;
}

.error-message.show {
   display: block;
}

/* Add success message styling */
.success-message {
   color: #28a745;
   font-size: 0.85rem;
   margin-top: 0.5rem;
   display: none;
}

.success-message.show {
   display: block;
}

/* User Menu Styles */
.user-menu {
   position: absolute;
   top: 100%;
   right: 0;
   background: white;
   border-radius: 8px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
   padding: 0.5rem 0;
   min-width: 200px;
   display: none;
   z-index: 1000;
   margin-top: 0.5rem;
}

.user-menu.show {
   display: block;
   animation: fadeIn 0.2s ease;
}

.user-menu-item {
   padding: 0.8rem 1rem;
   display: flex;
   align-items: center;
   gap: 0.8rem;
   cursor: pointer;
   transition: background-color 0.2s ease;
   color: var(--text-dark);
}

.user-menu-item:hover {
   background-color: #f5f5f5;
}

.user-menu-item i {
   font-size: 1.1rem;
   color: var(--accent-color);
}

/* Toast Notifications */
.toast-container {
   position: fixed;
   bottom: 2rem;
   right: 2rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
   z-index: 9999;
}

.toast {
   padding: 1rem 1.5rem;
   border-radius: 8px;
   color: white;
   font-size: 0.9rem;
   font-weight: 500;
   animation: slideIn 0.3s ease;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
   display: flex;
   align-items: center;
   gap: 0.8rem;
}

.toast-success {
   background-color: #28a745;
}

.toast-error {
   background-color: #dc3545;
}

.toast-info {
   background-color: #17a2b8;
}

/* Loading Spinner */
.fa-spinner {
   animation: spin 1s linear infinite;
}

/* Animations */
@keyframes fadeIn {
   from {
      opacity: 0;
      transform: translateY(-10px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@keyframes slideIn {
   from {
      opacity: 0;
      transform: translateX(100%);
   }

   to {
      opacity: 1;
      transform: translateX(0);
   }
}

@keyframes spin {
   0% {
      transform: rotate(0deg);
   }

   100% {
      transform: rotate(360deg);
   }
}

/* Update header-actions for user menu positioning */
.header-actions {
   position: relative;
}

/* Update login button styles */
.login-btn {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   min-width: 100px;
   justify-content: center;
}

.login-btn span {
   max-width: 150px;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
   .user-menu {
      position: fixed;
      top: auto;
      bottom: 0;
      left: 0;
      right: 0;
      margin: 0;
      border-radius: 12px 12px 0 0;
      box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
   }

   .toast-container {
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      align-items: stretch;
   }

   .toast {
      width: 100%;
      text-align: center;
      justify-content: center;
   }
}

/* Feedback Section 2.0 Styles */
.feedback-section {
   padding: 80px 0;
   background: linear-gradient(135deg, #2c3e50 0%, #3a4f66 50%, #2c3e50 100%);
   position: relative;
   overflow: hidden;
}

.feedback-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: radial-gradient(circle at 30% 20%, rgba(239, 68, 101, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 70% 80%, rgba(239, 68, 101, 0.1) 0%, transparent 50%);
   pointer-events: none;
}

.section-subtitle {
   font-size: 1.125rem;
   color: rgba(255, 255, 255, 0.8);
   max-width: 600px;
   margin: 0 auto;
   line-height: 1.6;
}

/* Swiper Container */
.feedback-swiper {
   padding: 0 0 60px 0;
   overflow: visible;
}

.swiper-slide {
   height: auto;
   display: flex;
   align-items: stretch;
}

/* Feedback Card */
.feedback-card {
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(20px);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 20px;
   padding: 30px;
   height: 100%;
   display: flex;
   flex-direction: column;
   transition: all 0.4s ease;
   position: relative;
   overflow: hidden;
}

.feedback-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: linear-gradient(90deg, #ef4465, #ff6b8a);
   opacity: 0;
   transition: opacity 0.4s ease;
}

.feedback-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
   border-color: rgba(239, 68, 101, 0.3);
}

.feedback-card:hover::before {
   opacity: 1;
}

/* Video Container */
.video-container {
   position: relative;
   width: 100%;
   padding-bottom: 56.25%;
   /* 16:9 aspect ratio */
   margin-bottom: 24px;
   border-radius: 12px;
   overflow: hidden;
   background: #000;
}

.youtube-player {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

.video-thumbnail {
   position: relative;
   width: 100%;
   height: 100%;
   cursor: pointer;
   overflow: hidden;
}

.video-thumbnail img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.4s ease;
}

.video-thumbnail:hover img {
   transform: scale(1.05);
}

.play-button {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 80px;
   height: 80px;
   background: rgba(239, 68, 101, 0.9);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   font-size: 24px;
   transition: all 0.3s ease;
   backdrop-filter: blur(10px);
   border: 2px solid rgba(255, 255, 255, 0.3);
}

.play-button:hover {
   background: #ef4465;
   transform: translate(-50%, -50%) scale(1.1);
   box-shadow: 0 10px 25px rgba(239, 68, 101, 0.4);
}

.play-button svg {
   margin-left: 4px;
}

.youtube-iframe {
   width: 100%;
   height: 100%;
   border: none;
   border-radius: 12px;
}

/* Feedback Content */
.feedback-content {
   flex: 1;
   display: flex;
   flex-direction: column;
}

.client-info {
   margin-bottom: 16px;
}

.client-name {
   font-size: 1.25rem;
   font-weight: 600;
   color: #ffffff;
   margin-bottom: 4px;
}

.client-position {
   font-size: 0.95rem;
   color: rgba(255, 255, 255, 0.7);
   margin: 0;
}

.feedback-text {
   font-size: 1rem;
   line-height: 1.6;
   color: rgba(255, 255, 255, 0.9);
   margin-bottom: 20px;
   flex: 1;
   font-style: italic;
}

.feedback-text::before {
   content: '"';
   font-size: 2rem;
   color: #ef4465;
   line-height: 1;
   margin-right: 4px;
}

.feedback-text::after {
   content: '"';
   font-size: 2rem;
   color: #ef4465;
   line-height: 1;
   margin-left: 4px;
}

/* Rating */
.rating {
   display: flex;
   gap: 4px;
}

.star {
   color: #ffd700;
   font-size: 1.2rem;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
   .feedback-section {
      padding: 60px 0;
   }

   .feedback-card {
      padding: 24px;
   }
}

@media (max-width: 768px) {
   .section-subtitle {
      font-size: 1rem;
   }

   .feedback-card {
      padding: 20px;
   }

   .play-button {
      width: 60px;
      height: 60px;
      font-size: 20px;
   }

   .client-name {
      font-size: 1.125rem;
   }

   .feedback-text {
      font-size: 0.95rem;
   }
}
@media (max-width: 640px) {
    .feedback-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .feedback-card {
        padding: 16px;
    }
    
    .video-container {
        margin-bottom: 16px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .feedback-text::before,
    .feedback-text::after {
        font-size: 1.5rem;
    }
    
}

@media (max-width: 480px) {
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    header {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        padding: 0.8rem;
    }

    .hamburger {
        order: 1;
        margin-right: 1rem;
    }

    .logo {
        order: 2;
        text-align: center;
        margin: 0 auto;
        font-size: 1.2rem;
    }

    .header-actions {
        order: 3;
    }

    .nav-bar {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        display: none;
    }

    .nav-bar.active {
        display: block;
    }

    #nav-links {
        flex-direction: column;
        padding: 1rem 0;
    }

    #nav-links li {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }

    #nav-links li a {
        width: 100%;
        display: block;
    }

    .login-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
    }

    .login-btn {
        padding: 0.4rem 0.2rem;
        font-size: 1.1rem;
    }
}

<!-- Add these sections -->
<section class="social-proof">
    <div class="stats-container">
        <div class="stat-item">
            <h3>₹50Cr+</h3>
            <p>Revenue Generated for Clients</p>
        </div>
        <div class="stat-item">
            <h3>500+</h3>
            <p>Successful Campaigns</p>
        </div>
        <div class="stat-item">
            <h3>95%</h3>
            <p>Client Retention Rate</p>
        </div>
    </div>
</section>

<section class="results-showcase">
    <h2>Real Results from Real Clients</h2>
    <div class="results-grid">
        <div class="result-card">
            <div class="result-header">
                <img src="client-logo.png" alt="Client">
                <span class="industry">Real Estate Developer</span>
            </div>
            <div class="metrics">
                <div class="metric">
                    <span class="number">3.2x</span>
                    <span class="label">ROI Increase</span>
                </div>
                <div class="metric">
                    <span class="number">450%</span>
                    <span class="label">Lead Growth</span>
                </div>
            </div>
        </div>
    </div>
</section>

/* Add hover animations */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Add loading animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-in forwards;
}

// Enhanced chatbot with real estate expertise
const chatbotResponses = {
    'pricing': 'Our performance marketing services start at ₹2L/month with guaranteed ROI. Would you like a free consultation?',
    'case-study': 'I can share specific case studies from Bhutani Group, Lodha, and other major developers. Which industry interests you?',
    'consultation': 'Perfect! I can schedule a 30-minute strategy call where we'll analyze your current marketing and create a custom plan.'
};

<section class="video-testimonials">
    <h2>What Our Clients Say</h2>
    <div class="testimonial-grid">
        <div class="video-testimonial">
            <video controls poster="client-thumbnail.jpg">
                <source src="testimonial-1.mp4" type="video/mp4">
            </video>
            <div class="testimonial-info">
                <h4>Rahul Sharma</h4>
                <p>Marketing Director, Bhutani Group</p>
            </div>
        </div>
    </div>
</section>

<section class="case-studies">
    <h2>Detailed Case Studies</h2>
    <div class="case-study-tabs">
        <button class="tab-btn active" data-case="bhutani">Bhutani Group</button>
        <button class="tab-btn" data-case="lodha">Lodha Group</button>
        <button class="tab-btn" data-case="gaurs">Gaurs Group</button>
    </div>
    <div class="case-content">
        <!-- Dynamic content based on selected case -->
    </div>
</section>

<!-- Add to different sections -->
<div class="mini-lead-capture">
    <p>Want weekly real estate marketing tips?</p>
    <input type="email" placeholder="Your email">
    <button>Subscribe</button>
</div>

// Enhanced tracking
gtag('event', 'page_view', {
    'custom_map': {
        'dimension1': 'user_type',
        'dimension2': 'industry'
    }
});

// Track form submissions
document.querySelectorAll('form').forEach(form => {
    form.addEventListener('submit', function() {
        gtag('event', 'form_submit', {
            'form_name': this.getAttribute('data-form-name')
        });
    });
});

// Exit intent popup
document.addEventListener('mouseleave', function(e) {
    if (e.clientY < 0 && !localStorage.getItem('exitPopupShown')) {
        showExitPopup();
        localStorage.setItem('exitPopupShown', 'true');
    }
});