        :root {
            --primary: #1a5276;
            --secondary: #3498db;
            --accent: #e74c3c;
            --light: #f8f9fa;
            --dark: #2c3e50;
            --success: #27ae60;
            --warning: #f39c12;
            --text: #333333;
            --text-light: #6c757d;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: #fff;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            transition: var(--transition);
            z-index: -1;
        }
        
        .btn:hover::before {
            width: 100%;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .btn-accent {
            background: linear-gradient(135deg, var(--accent) 0%, #c0392b 100%);
        }
        
        .btn-accent::before {
            background: linear-gradient(135deg, #c0392b 0%, var(--accent) 100%);
        }
        
        /* Header */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
        }
        
        header.scrolled {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            padding: 5px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            transition: var(--transition);
        }
        
        .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: visible; /* allows logo to extend beyond header height */
}

/* Bigger logo without inflating header height */
.logo-img {
  height: 80px; /* make it large */
  width: auto;
  object-fit: contain;
  margin-top: -15px; /* visually centers it */
  margin-bottom: -15px; /* prevents header expansion */
}

/* Text logo style (fallback if used) */
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color, #007bff);
}

.logo-text span {
  color: var(--accent-color, #e63946);
}
#header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* --- Base Hero Container --- */
/* No major changes here, provides context */
.hero-content {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  animation: fadeIn 1s ease forwards;
}

/* --- Tagline --- */
/* REVISED: Made larger and more visible */
.hero-content .tagline {
  display: inline-block;
  padding: 10px 25px;
  
  /* Increased contrast for better visibility */
  background: rgba(255, 255, 255, 0.2); 
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  
  border-radius: 40px;
  
  /* Larger, clearer text */
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  /* --- MOVED DOWN --- */
  margin-top: 100px;    /* <-- ADDED THIS LINE to push it down */
  margin-bottom: 30px; 
  
  /* CRITICAL: Changed from semi-transparent to solid white for visibility */
  color: #fff; 
  
  animation: fadeInDown 1s ease both;
}
/* --- Main Headline (H1) --- */
/* REVISED: Significantly larger and more impactful */
.hero-content h1 {
  /* INCREASED size for a true "hero" feel */
  font-size: 5.25rem; /* Up from 4rem */
  font-weight: 700;
  line-height: 1.1; /* Tightened for the larger size */
  margin-bottom: 30px; /* INCREASED spacing */
  text-transform: none;
  color: #fff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); /* Slightly stronger shadow */
  letter-spacing: -1.5px; /* Adjusted for larger font */
  position: relative;
  animation: fadeInUp 1.2s ease both;
}

/* Gradient text - no changes, still looks professional */
.hero-content h1 span {
  color: #00c6ff; /* Fallback */
  display: inline-block;
  background: linear-gradient(90deg, #00c6ff, #00ffe7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Standard property */
}

/* --- Hero Buttons --- */
/* REVISED: Scaled up to match the larger headline */
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-btns .btn {
  /* INCREASED padding and font size for better balance */
  padding: 15px 35px; /* Up from 12px 30px */
  font-size: 1.05rem; /* ADDED to scale with headline */
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}


/* --- 🚨 ADDED: Professional Responsive Styles --- */
/* This is crucial for making the larger text work on mobile */

@media (max-width: 768px) {
  /* For tablets */
  .hero-content h1 {
    font-size: 3.75rem; /* Scale down headline */
    letter-spacing: -1px;
  }
}

@media (max-width: 480px) {
  /* For mobile phones */
  .hero-content h1 {
    font-size: 2.75rem; /* Further scale down headline */
    line-height: 1.2;
  }

  .hero-content .tagline {
    font-size: 1rem; /* Scale down tagline */
    padding: 8px 20px;
  }
  
  .hero-btns {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    align-items: center;
  }
  
  .hero-btns .btn {
    width: 90%; /* Make buttons easier to tap */
    max-width: 320px;
  }
}
        
        .logo-text {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        .logo-text span {
            color: var(--accent);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--gradient);
            transition: var(--transition);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }
        
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Carousel wrapper */
.hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/* Each slide container now holds two layers */
.hero-carousel .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  overflow: hidden;
}

/* Blurred background layer */
.hero-carousel .slide .bg-blur {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(30px) brightness(0.6);
  transform: scale(1.1);
  z-index: 0;
}

/* Main sharp image */
.hero-carousel .slide .bg-main {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

/* Active slide */
.hero-carousel .slide.active {
  opacity: 1;
}

/* Overlay for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.25)
  );
  z-index: 2;
}

@media (min-aspect-ratio: 16/9) {
  .hero-carousel .slide {
    background-size: contain;
    background-color: #000;
  }
}
@media (max-aspect-ratio: 16/9) {
  .hero-carousel .slide {
    background-size: cover;
  }
}
.hero .container {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}


.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  animation: fadeInUp 1s ease;
}

.hero h1 span {
  color: #00c6ff;
}

.hero p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.2s both;
}


.btn-accent {
  background: #00c6ff;
  color: #fff;
}

.btn-accent:hover {
  background: #00a1cc;
}

/* Stats Row */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-stats .stat {
  text-align: center;
}

.hero-stats h3 {
  font-size: 2rem;
  color: #00c6ff;
  margin-bottom: 5px;
}

.hero-stats p {
  font-size: 1rem;
  opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


  
        
        @keyframes backgroundMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-100px, -100px); }
        }
  
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: var(--gradient);
            opacity: 0.05;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }
        
        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }
        
        .about-img:hover {
            transform: perspective(1000px) rotateY(0);
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        }
        
        .about-content {
            flex: 1;
        }
        
        .about-content h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .vision-quote {
            background-color: white;
            padding: 25px;
            border-left: 5px solid var(--accent);
            margin: 25px 0;
            box-shadow: var(--shadow);
            border-radius: 0 5px 5px 0;
            position: relative;
            overflow: hidden;
        }
        
        .vision-quote::before {
            content: "";
            position: absolute;
            top: -20px;
            left: 10px;
            font-size: 80px;
            color: var(--secondary);
            opacity: 0.1;
            font-family: Georgia, serif;
        }
        
        .vision-quote p {
            font-style: italic;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        
        .vision-quote .author {
            font-weight: 600;
            color: var(--primary);
        }
        
        /* Services Section */
.services {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #eef6fc 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.services .container {
  width: 100%;
  max-width: 1400px;
  padding: 0 30px;
  margin: auto;
}

/* Floating subtle icon pattern */
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239bd0f5' fill-opacity='0.06'%3E%3Ccircle cx='40' cy='40' r='10'/%3E%3Cpath d='M60 36v8h-8v8h-8v-8h-8v-8h8v-8h8v8z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: float-bg 40s linear infinite;
  z-index: 0;
  opacity: 0.7;
}

@keyframes float-bg {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-60px, -40px); }
  100% { transform: translate(0, 0); }
}

/* Title */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  z-index: 2;
  position: relative;
}

.section-title h2 {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.section-title p {
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.05rem;
}

.services {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #eef6fc 100%);
  overflow: hidden;
}

.services-grid {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 40px 40px;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}
.services-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.service-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

/* Navigation buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 119, 182, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.scroll-btn:hover {
  background: rgba(0, 119, 182, 1);
  transform: translateY(-50%) scale(1.1);
}

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

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

.scroll-btn svg {
  width: 22px;
  height: 22px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 119, 182, 0.2);
  border: 1px solid rgba(0,183,255,0.4);
}

/* Image */
.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

/* Content */
.service-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-content h3 {
  color: #0077b6;
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button */
.service-content .btn {
  align-self: flex-start;
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  color: white;
  padding: 9px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,183,255,0.4);
}

.service-content .btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #00b4d8, #0077b6);
  box-shadow: 0 6px 18px rgba(0,119,182,0.45);
}

/* Animation balance */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1600px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .testimonials::before {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: var(--gradient);
            opacity: 0.05;
            animation: float 8s ease-in-out infinite;
        }
        
        .testimonial-carousel {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .testimonial-slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial-slide {
            min-width: 100%;
            padding: 0 20px;
        }
        
        .testimonial-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        .testimonial-card::before {
            content: "";
            font-size: 80px;
            color: var(--secondary);
            position: absolute;
            top: -20px;
            left: 20px;
            font-family: Georgia, serif;
            opacity: 0.3;
        }
        
        .client-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 15px;
            border: 3px solid var(--secondary);
            transition: var(--transition);
        }
        
        .testimonial-card:hover .client-img {
            transform: scale(1.1);
            border-color: var(--accent);
        }
        
        .client-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-rating {
            color: var(--warning);
            margin: 10px 0;
            font-size: 1.2rem;
        }
        
        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .carousel-dot.active {
            background: var(--gradient);
            transform: scale(1.2);
        }
        
        /* Blog Section */
        .blog {
            padding: 100px 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a5276' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .blog-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .blog-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .blog-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0;
            transition: var(--transition);
        }
        
        .blog-card:hover .blog-img::after {
            opacity: 0.2;
        }
        
        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .blog-card:hover .blog-img img {
            transform: scale(1.1);
        }
        
        .blog-content {
            padding: 20px;
        }
        
        .blog-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 10px;
        }
        
        .blog-content h3 {
            color: var(--primary);
            margin-bottom: 10px;
            transition: var(--transition);
        }
        
        .blog-card:hover .blog-content h3 {
            color: var(--secondary);
        }
        
        .blog-content p {
            margin-bottom: 15px;
        }
        
        .read-more {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .read-more i {
            margin-left: 5px;
            transition: var(--transition);
        }
        
        .read-more:hover {
            color: var(--secondary);
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: var(--gradient);
            opacity: 0.05;
            animation: float 7s ease-in-out infinite;
        }
        
        .contact-container {
            display: flex;
            gap: 50px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h2 {
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .contact-details {
            margin-top: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .contact-item:hover {
            transform: translateX(10px);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            transition: var(--transition);
        }
        
        .contact-item:hover .contact-icon {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .contact-form {
            flex: 1;
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transform: perspective(1000px) rotateY(5deg);
            transition: var(--transition);
        }
        
        .contact-form:hover {
            transform: perspective(1000px) rotateY(0);
        }
        
        .form-group {
            margin-bottom: 20px;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Montserrat', sans-serif;
            transition: var(--transition);
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.2);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        /* Chat Widget */
        .chat-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }
        
        .chat-button {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: var(--transition);
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }
        
        .chat-button:hover {
            transform: scale(1.1);
        }
        
        .chat-box {
            position: absolute;
            bottom: 70px;
            right: 0;
            width: 350px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.15);
            display: none;
            overflow: hidden;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .chat-box.active {
            display: block;
            transform: translateY(0);
            opacity: 1;
        }
        
        .chat-header {
            background: var(--gradient);
            color: white;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .chat-header h3 {
            margin: 0;
            font-size: 1.2rem;
        }
        
        .close-chat {
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .close-chat:hover {
            transform: rotate(90deg);
        }
        
        .chat-body {
            padding: 20px;
            height: 300px;
            overflow-y: auto;
        }
        
        .chat-message {
            margin-bottom: 15px;
            display: flex;
        }
        
        .chat-message.bot {
            justify-content: flex-start;
        }
        
        .chat-message.user {
            justify-content: flex-end;
        }
        
        .message-bubble {
            max-width: 80%;
            padding: 12px 15px;
            border-radius: 18px;
            animation: messageAppear 0.3s ease;
        }
        
        @keyframes messageAppear {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .bot .message-bubble {
            background-color: #f1f1f1;
            border-top-left-radius: 5px;
        }
        
        .user .message-bubble {
            background: var(--gradient);
            color: white;
            border-top-right-radius: 5px;
        }
        
        .chat-footer {
            padding: 15px;
            border-top: 1px solid #eee;
            display: flex;
        }
        
        .chat-input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 20px;
            margin-right: 10px;
            transition: var(--transition);
        }
        
        .chat-input:focus {
            border-color: var(--primary);
            outline: none;
        }
        
        .send-btn {
            background: var(--gradient);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .send-btn:hover {
            transform: scale(1.1);
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: var(--gradient);
            opacity: 0.05;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }
        
        .footer-col h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background: var(--accent);
            bottom: 0;
            left: 0;
        }
        
        .footer-col p {
            margin-bottom: 15px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--gradient);
            transform: translateY(-3px);
        }
        
.copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 2rem;
}

.copyright .designer {
  color: #999;
}

.copyright .designer a {
  color: #007bff;
  text-decoration: none;
}

.copyright .designer a:hover {
  text-decoration: underline;
}



        /* Responsive */
        @media (max-width: 992px) {
            .about-container, .contact-container {
                flex-direction: column;
            }
            
 
            
            .contact-form {
                transform: none;
            }
            
            .contact-form:hover {
                transform: none;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu {
                display: block;
            }
            
           
            .chat-box {
                width: 300px;
            }
        }
        
        @media (max-width: 576px) {

            
            .btn {
                width: 100%;
                max-width: 250px;
                margin-bottom: 10px;
            }
            
            .chat-box {
                width: 280px;
            }
        }