* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}
    
/* Topbar */
.topbar {
  background: #58034d;
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-left {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-left span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-right .social-container {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  transition: transform 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.social-icon.fb { background: #045afa; }
.social-icon.twt { background: #000c13;}
.social-icon.yt { background: #ff0303; }
.social-icon.wa { background: #04b344; }

        /* Header & Navigation */
        header {
            background: linear-gradient(135deg, #8d0378 0%, #5c0250 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    max-width: 80px;      /* ✅ Width kam kar di */
    max-height: 50px;     /* ✅ Height bhi limit kar di */
    height: auto;
    width: auto;
    border-radius: 8px;
    object-fit: contain;  /* ✅ Logo crop nahi hoga */
}
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #ffd700;
        }
        
        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: white;
            transition: 0.3s;
        }
        
          /* Dropdown specific styles - sirf blog ke liye */
        .dropdown {
            position: relative;
        }

        .dropdown > a::after {
            content: ' ▼';
            font-size: 10px;
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .dropdown:hover > a::after {
            transform: rotate(180deg);
            display: inline-block;
        }

        /* Dropdown menu */
        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 200px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            margin-top: 10px;
            z-index: 1000;
            padding: 10px 0;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content a {
            color: #333 !important;
            padding: 12px 20px !important;
            display: flex !important;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            background: transparent !important;
        }

        .dropdown-content a:hover {
            background: #f8f8f8 !important;
            color: #8B0A6C !important;
            padding-left: 25px !important;
        }

        .dropdown-content a::before {
            content: '📝';
            font-size: 16px;
        }

        .dropdown-content a:last-child::before {
            content: '🎥';
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 0 20px;
            }

            .nav-links {
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: -100%;
                width: 100%;
                background: linear-gradient(90deg, #8B0A6C 0%, #A61482 100%);
                transition: 0.3s;
                gap: 0;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                width: 100%;
                text-align: center;
            }

            .dropdown-content {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: rgba(255, 255, 255, 0.1);
                margin-top: 0;
                display: none;
            }

            .dropdown.active .dropdown-content {
                display: block;
            }

            .dropdown-content a {
                color: white !important;
            }

            .dropdown-content a:hover {
                background: rgba(255, 255, 255, 0.2) !important;
            }
        }

        .content {
            padding: 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content h1 {
            color: #8B0A6C;
            margin-bottom: 20px;
        }
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(44, 1, 41, 0.9), rgba(54, 2, 47, 0.9)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1200') center/cover;
            color: white;
            padding: 100px 20px;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1.2s;
        }
        

        .cta-button {
            display: inline-block;
            background: #fffffd;
            color: #721e6e;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            animation: fadeInUp 1.4s;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255,215,0,0.4);
        }
        .container {
            display: flex;
            min-height: 100vh;
        }

        .left-section {
            flex: 1;
            padding: 60px 80px;
            background-color: #ffffff;
        }

        .left-section h1 {
            font-size: 60px;
            color: #1a1a1a;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .orange-line {
            width: 50px;
            height: 4px;
            background-color: #ff9800;
            margin-bottom: 40px;
        }

        .description {
            font-size: 20px;
            line-height: 1.6;
            color: #333;
            margin-bottom: 30px;
        }

        .quote {
            font-style: italic;
            margin-bottom: 20px;
        }

        .expertise {
            color: #555;
            line-height: 1.8;
        }

        .about-btn {
            background-color: #440324;
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            margin-top: 40px;
            text-transform: uppercase;
            transition: background-color 0.3s;
        }

        .about-btn:hover {
            background-color: #f57c00;
        }

         .right-section {
            width: 500px;
            background: linear-gradient(135deg, #8b2a8b 0%, #5a1a5a 100%);
            padding: 60px 50px;
            color: white;
            position: relative;
            margin-top: 100px;
            margin-bottom: 50px;
            margin-right: 50px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .right-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .form-description {
            font-size: 14px;
            font-style: italic;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.5;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: none;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            color: white;
            font-size: 14px;
            outline: none;
            transition: background-color 0.3s;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            background-color: rgba(255, 255, 255, 0.15);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
            font-family: Arial, sans-serif;
        }

        .submit-btn {
            background-color: #430349;
            color: white;
            border: none;
            padding: 15px 50px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            text-transform: uppercase;
            transition: background-color 0.3s;
            display: block;
            margin: 30px auto 0;
        }

        .submit-btn:hover {
            background-color: #3a0202;
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #ff9800;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: background-color 0.3s;
        }

        .scroll-top:hover {
            background-color: #f57c00;
        }

        .scroll-top::before {
            content: '↑';
            font-size: 24px;
            font-weight: bold;
        }
    /* Section Styles */
        section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #1e3c72;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #ffd700;
            margin: 15px auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #2a5298;
        }

        .service-card h3 {
            color: #1e3c72;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        /* Benefits Section */
        .benefits {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .benefit-item {
            text-align: center;
            padding: 20px;
        }

        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        /* Blog Section */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .blog-content {
            padding: 20px;
        }

        .blog-date {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        /* About Page Sections */
        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin: 40px 0;
        }

        .mission-box, .vision-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
        }

        .why-choose {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .why-item {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
        }

        /* Clients Section */
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            margin: 40px 0;
        }
        .stats-container {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #d60586 0%, #570643 100%);
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 60px 20px;
            
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-card {
            text-align: center;
            color: white;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .stat-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .stat-card:nth-child(2) {
            animation-delay: 0.3s;
        }

        .stat-card:nth-child(3) {
            animation-delay: 0.5s;
        }

        .stat-card:nth-child(4) {
            animation-delay: 0.7s;
        }

        .icon {
            font-size: 50px;
            margin-bottom: 20px;
            display: inline-block;
            animation: bounce 2s ease-in-out infinite;
        }

        .stat-card:nth-child(2) .icon {
            animation-delay: 0.2s;
        }

        .stat-card:nth-child(3) .icon {
            animation-delay: 0.4s;
        }

        .stat-card:nth-child(4) .icon {
            animation-delay: 0.6s;
        }

        .number {
            font-size: 56px;
            font-weight: bold;
            margin-bottom: 10px;
            display: block;
        }

        .label {
            font-size: 20px;
            font-weight: 500;
            opacity: 0.95;
        }

        .counter {
            display: inline-block;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes countUp {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .number {
                font-size: 42px;
            }

            .label {
                font-size: 16px;
            }

            .icon {
                font-size: 40px;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        .client-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .client-card:hover {
            transform: scale(1.05);
        }

        .client-logo {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        /* Contact Form */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 40px 0;
        }

        .contact-info {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
        }

        .contact-info h3 {
            margin-bottom: 20px;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            gap: 15px;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #1e3c72;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2a5298;
        }

        .submit-btn {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
        }

        .map-container {
            margin: 40px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        /* Footer */
footer {
    background: #350124;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffd700;
}

/* ✅ Social Media Icons */
.social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social a {
    color: white;
    font-size: 24px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social a:hover {
    background: #ffd700;
    color: #1a1a2e;
    transform: translateY(-3px);
}

/* ✅ Footer Logo */
.footer-section img {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social a {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
}

        /* Page Container */
        .page {
            display: none;
        }

        .page.active {
            display: block;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #1e3c72;
                flex-direction: column;
                padding: 20px;
                gap: 1rem;
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }
        }
    