/* Form button loading state */
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.submit-btn .fa-spinner {
  margin-right: 8px;
}
/* --- Language Selector Styling --- */
.language-selector {
    position: relative;
    display: flex;
    align-items: center;
}

#lang-select {
    appearance: none; /* Default arrow hatane ke liye */
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    padding: 8px 35px 8px 15px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    backdrop-filter: blur(10px);
}

/* Hover aur Focus Effect */
#lang-select:hover {
    border-color: var(--primary);
    background: rgba(91, 76, 255, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#lang-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(91, 76, 255, 0.2);
}

/* Custom Dropdown Arrow (Unicode ya Icon) */
.language-selector::after {
    content: '\f0ac'; /* Global Icon (Font Awesome) */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--primary);
    pointer-events: none;
    transition: var(--transition);
}

/* Jab select open ho to icon thora move kare */
.language-selector:hover::after {
    transform: translateY(-50%) scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #lang-select {
        padding: 6px 30px 6px 12px;
        font-size: 0.85rem;
    }
}
/* Form validation styles */
.input-group input:invalid:focus,
.input-group textarea:invalid:focus {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.input-group input:valid:focus,
.input-group textarea:valid:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

/* Form notification styles */
.form-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 12px;
  color: white;
  font-weight: 500;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 320px;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  animation: notificationSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-notification.success {
  background: rgba(16, 185, 129, 0.95);
  border-left: 4px solid #059669;
}

.form-notification.error {
  background: rgba(239, 68, 68, 0.95);
  border-left: 4px solid #dc2626;
}

.form-notification p {
  margin: 0;
  flex: 1;
  font-size: 15px;
  line-height: 1.4;
}

.notification-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  margin-left: 15px;
  padding: 2px 8px;
  border-radius: 6px;
  transition: all 0.2s;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

@keyframes notificationSlideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes notificationSlideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Focus styles for accessibility */
.input-group input:focus,
.input-group textarea:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

:root {
  --primary: #5B4CFF;
  --primary-dark: #4a3de0;
  --secondary: #0F172A;
  --accent: #7C3AED;
  --light: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --radius: 20px;
  --radius-lg: 28px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.7;
}

 /* Header */
        header {
            position: fixed;
            top: 0px;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        header.scrolled {
            top: 0;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 6px 30px rgba(0,0,0,0.12);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            transition: var(--transition);
        }
        header.scrolled nav { padding: 1rem 0; }

        .logo {
            font-size: 2rem;
            font-weight: 900;
            color:  #0401b9c5;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            letter-spacing: -0.8px;
        }
    
        /* LOGO ICON SIZE ADJUSTMENT - SET TO 75PX HEIGHT */
        .logo-img {
            height: 75px; /* Increased to 75px for better alignment with text */
            width:  auto;
            filter: drop-shadow(0 2px 8px rgba(10, 131, 252, 0.3));
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }
        .nav-links a {
            color: var(--gray-800);
            text-decoration: none;
            font-weight: 600;
            position: relative;
            font-size: 1.02rem;
            transition: var(--transition);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-links a:hover::after,
        .nav-links a.active::after { width: 100%; }
        .nav-links a:hover,
        .nav-links a.active { color: var(--primary); }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: var(--gray-800);
            padding: 8px;
            border-radius: 50%;
            transition: var(--transition);
        }
        .hamburger:hover { background: rgba(67,97,238,0.1); }
.container {
            width: 90%;
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 20px;
        }

/* HERO WITH REAL EMOTIONAL IMAGE */
.hero-section {
  height: 72vh;   
  margin-bottom: 100px; /* 👈 hero ke niche space */
  top: 80px;                                 
  min-height: 400px;
  max-height: 670px;
  background: linear-gradient(135deg, rgba(91, 76, 255, 0.664), rgba(124, 58, 237, 0.90)),
              url('contact.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #fff, #e0d8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section p {
  font-size: 1.5rem;
  opacity: 0.95;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.breadcrumb {
  font-size: 19px;
  opacity: 0.95;
  letter-spacing: 0.8px;
}

/* Rest of the styles (same as before) */
.section-title {
  text-align: center;
  margin-bottom: 70px;
  padding-top: 40px;
}

.section-title h2 {
   bottom: 50px;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(90deg, #4f46e5, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.section-title p {
  font-size: 19px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.form-card {
  background: white;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.3);
}

.form-card h3 { font-size: 32px; margin-bottom: 30px; color: #1e293b; }

.input-group { position: relative; margin-bottom: 24px; }
.input-group input, .input-group textarea {
  width: 100%;
  padding: 18px 55px 18px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-size: 16px;
  background: #fafbff;
  transition: all 0.3s;
}
.input-group input:focus, .input-group textarea:focus {
  outline: none;
  border-color: #818cf8;
  background: white;
  box-shadow: 0 0 0 5px rgba(129,140,248,0.15);
}
.input-group i {
  position: absolute;
  right: 18px;
  top: 19px;
  color: #94a3b8;
  font-size: 19px;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(99,102,241,0.4);
}

.info-cards { display: flex; flex-direction: column; gap: 24px; }
.info-card, .social-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
}
.info-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(99,102,241,0.15); }

.icon-bg {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, #eef2ff, #ddd6fe);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: #6366f1;
}

.social-links {
  display: flex;
  gap: 16px;
}
.social-btn {
  width: 52px; height: 52px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px;
  color: #6366f1;
  transition: all 0.3s;
}
.social-btn:hover {
  background: #6366f1;
  color: white;
  transform: translateY(-6px);
}

.map-container {
  margin: 100px 0 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}
.map-container iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

 /* Footer */
        footer {
            background: var(--gray-900);
            color: white;
            padding: 100px 0 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 60px;
        }
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 28px;
            color: white;
            font-weight: 700;
        }
        .footer-links a {
            display: block;
            color: #cbd5e1;
            text-decoration: none;
            margin-bottom: 14px;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 6px;
        }
        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 24px;
        }
        .social-links a {
            width: 48px; height: 48px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        /* --- Professional Social Media Icons --- */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-card {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05); /* Halka glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; /* Thora rounded square look */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    overflow: hidden;
    padding: 10px;
}

.social-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

/* Hover Effects */
.social-card:hover {
    transform: translateY(-5px);
    background: var(--primary); /* Hover par primary color */
    border-color: var(--primary-light);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.social-card:hover img {
    filter: brightness(1) invert(0); /* Hover par asli colors wapis aa jayenge */
    transform: scale(1.1);
}

/* Specific Hover Colors (Optional: Agar alag alag colors chahiye hon) */
.social-card.fb:hover { background: #1877F2; }
.social-card.insta:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-card.linkedin:hover { background: #0077b5; }
.social-card.github:hover { background: #333; }

        .newsletter-form {
            display: flex;
            gap: 14px;
            margin-top: 24px;
        }
        .newsletter-form input {
            flex: 1;
            padding: 16px 20px;
            border: none;
            border-radius: var(--radius);
            font-size: 1rem;
            background: rgba(255,255,255,0.1);
            color: white;
        }
        .newsletter-form input::placeholder { color: #94a3b8; }
        .newsletter-form button {
            padding: 16px 28px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 700;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.15);
            color: #94a3b8;
            font-size: 0.95rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-content, .footer-content { grid-template-columns: 1fr; }
            .hero h1 { font-size: 3.8rem; }
        }
        @media (max-width: 768px) {
            .top-bar .container { justify-content: center; }
            .top-bar-actions { flex-direction: column; gap: 12px; }
            .top-bar-btn { width: 100%; max-width: 280px; justify-content: center; }
            .hamburger { display: block; }
            .nav-links {
                position: fixed;
                top: 52px; right: -100%;
                width: 88%;
                height: calc(100vh - 52px);
                background: white;
                flex-direction: column;
                align-items: center;
                padding-top: 100px;
                transition: right 0.45s ease;
                box-shadow: -20px 0 50px rgba(0,0,0,0.15);
            }
            .nav-links.active { right: 0; }
            .hero { padding: 200px 0 120px; }
            .hero h1 { font-size: 3.2rem; }
            .hero-buttons { flex-direction: column; align-items: center; }
            .hero-buttons .btn { width: 100%; max-width: 340px; }
            /* LOGO ICON SIZE ADJUSTMENT - 75PX HEIGHT FOR MOBILE IS KEPT */
            .logo-img {
                height: 75px; 
            }
        }
            .footerlogo {
            font-size: 2rem;
            font-weight: 900;
            color:  #ffffff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            letter-spacing: -0.8px;
        }
        /* Hamburger to X Animation */
.hamburger {
  position: relative;
  z-index: 1001;
}
.hamburger.active i {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.hamburger.active i::before {
  content: "\f00d" !important; /* X icon */
}
/* Responsive */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero h1 { font-size: 58px; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 46px; }
  .hero-bg { background-attachment: scroll; }
  .form-card { padding: 35px 25px; }
  .section-title h2 { font-size: 36px; }
  /* Mobile notification adjustments */
  .form-notification {
    min-width: 280px;
    max-width: 90%;
    right: 10px;
    left: 10px;
    margin: 0 auto;
  }
}