/* ===== CSS RESET & BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #e2e8f0;
            line-height: 1.6;
            overflow-x: hidden;
            background: #0f172a;
        }

        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            color: white;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 100px 0;
            position: relative;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
        }

        .section:nth-child(even) {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e293b 100%);
        }

        /* ===== NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .navbar.scrolled {
            padding: 15px 0;
            background: rgba(15, 23, 42, 0.98);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

         /* ====logo image=== */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.logo img {
  height: 42px;
  width: 42px;
  display: block;
  border-radius: 8px;
  object-fit: contain; /* Ensures image maintains aspect ratio */
  background: rgba(255, 255, 255, 0.1); /* Optional: background if image has transparency */
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.logo-span {
  font-size: 24px;
  font-weight: 700;
  color: #f1f5f9; /* Use color instead of gradient if you want solid color */
  line-height: 1;
}

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            padding: 8px 0;
        }

        .nav-menu a:hover {
            color: #60a5fa;
        }

        .nav-menu a.active {
            color: #60a5fa;
        }

        .nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #60a5fa;
            border-radius: 2px;
        }

        .nav-menu a.contact-btn {
            background: #3b82f6;
            color: white;
            padding: 10px 22px;
            border-radius: 6px;
            transition: all 0.3s;
        }

        .nav-menu a.contact-btn:hover {
            background: #2563eb;
            color: white;
            transform: translateY(-2px);
        }

        .mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: white;
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 40px;
        }

        .hero-text {
            flex: 1;
            max-width: 600px;
        }

        .hero-heading {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
            background: linear-gradient(to right, white, #38bdf8);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-subheading {
            font-size: 1.2rem;
            color: #cbd5e1;
            margin-bottom: 40px;
            max-width: 90%;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }

        .btn {
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: 'Poppins', sans-serif;
        }

        .btn-primary {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid #60a5fa;
        }

        .btn-secondary:hover {
            background: rgba(96, 165, 250, 0.1);
            transform: translateY(-3px);
        }

        .hero-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            height: 500px;
        }

        .visual-element {
            position: relative;
            width: 400px;
            height: 400px;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(59, 130, 246, 0.2));
            animation: float 6s ease-in-out infinite;
        }

        .circle-1 {
            width: 150px;
            height: 150px;
            top: 50px;
            left: 50px;
            animation-delay: 0s;
        }

        .circle-2 {
            width: 100px;
            height: 100px;
            top: 200px;
            left: 250px;
            animation-delay: 2s;
        }

        .circle-3 {
            width: 80px;
            height: 80px;
            top: 300px;
            left: 100px;
            animation-delay: 4s;
        }

        .cube, .pyramid {
            position: absolute;
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(59, 130, 246, 0.3));
            animation: rotate 20s linear infinite;
        }

        .cube {
            width: 120px;
            height: 120px;
            top: 150px;
            left: 200px;
            transform: rotate(45deg);
        }

        .pyramid {
            width: 0;
            height: 0;
            border-left: 60px solid transparent;
            border-right: 60px solid transparent;
            border-bottom: 100px solid rgba(96, 165, 250, 0.2);
            top: 100px;
            left: 100px;
            background: none;
        }

        /* ===== SECTIONS COMMON STYLES ===== */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title {
            font-size: 2.8rem;
            margin-bottom: 15px;
            background: linear-gradient(to right, #60a5fa, #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #cbd5e1;
            max-width: 700px;
            margin: 0 auto;
        }

        /* ===== DIGITAL MARKETING SECTION ===== */
        .section-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .info-card {
            background: rgba(30, 41, 59, 0.7);
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(96, 165, 250, 0.2);
        }

        .info-icon {
            width: 70px;
            height: 70px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 28px;
        }

        .digital-marketing .info-icon {
            background: linear-gradient(135deg, #3b82f6, #60a5fa);
        }

        .graphic-design .info-icon {
            background: linear-gradient(135deg, #8b5cf6, #a78bfa);
        }

        .info-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
        }

        .info-card p {
            color: #cbd5e1;
            line-height: 1.7;
        }

        /* ===== SERVICES SECTION ===== */
        .services-container {
            display: flex;
            flex-direction: column;
            gap: 80px;
        }

        .services-category {
            background: rgba(30, 41, 59, 0.7);
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }

        .category-title {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.8rem;
            color: white;
            margin-bottom: 40px;
        }

        .category-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        .category-icon.digital {
            background: linear-gradient(135deg, #3b82f6, #60a5fa);
        }

        .category-icon.design {
            background: linear-gradient(135deg, #8b5cf6, #a78bfa);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .service-card {
            background: rgba(15, 23, 42, 0.7);
            padding: 30px 25px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(96, 165, 250, 0.2);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            color: white;
        }

        .service-icon.seo {
            background: linear-gradient(135deg, #10b981, #34d399);
        }

        .service-icon.smm {
            background: linear-gradient(135deg, #8b5cf6, #a78bfa);
        }

        .service-icon.ads {
            background: linear-gradient(135deg, #f59e0b, #fbbf24);
        }

        .service-icon.content {
            background: linear-gradient(135deg, #ef4444, #f87171);
        }

        .service-icon.logo {
            background: linear-gradient(135deg, #3b82f6, #60a5fa);
        }

        .service-icon.social {
            background: linear-gradient(135deg, #8b5cf6, #a78bfa);
        }

        .service-icon.branding {
            background: linear-gradient(135deg, #10b981, #34d399);
        }

        .service-icon.uiux {
            background: linear-gradient(135deg, #f59e0b, #fbbf24);
        }

        .service-card h4 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: white;
        }

        .service-card p {
            color: #cbd5e1;
            font-size: 0.95rem;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .service-link {
            color: #60a5fa;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .service-link:hover {
            color: #38bdf8;
            gap: 12px;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #020617 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before,
        .cta-section::after {
            content: "";
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.35;
            z-index: 0;
        }

        .cta-section::before {
            background: #3b82f6;
            top: -150px;
            left: -150px;
        }

        .cta-section::after {
            background: #8b5cf6;
            bottom: -150px;
            right: -150px;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 820px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-content h2 {
            font-size: 3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 22px;
            line-height: 1.25;
        }

        .cta-content p {
            font-size: 1.25rem;
            color: #cbd5f5;
            margin-bottom: 50px;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 22px;
            flex-wrap: wrap;
        }

        .cta-section .btn-primary {
            padding: 18px 38px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: #ffffff;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.45);
            transition: all 0.35s ease;
            text-decoration: none;
        }

        .cta-section .btn-secondary {
            padding: 18px 38px;
            border: 2px solid #60a5fa;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            background: transparent;
            transition: all 0.35s ease;
            text-decoration: none;
        }

        .cta-section .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 45px rgba(59, 130, 246, 0.6);
        }

        .cta-section .btn-secondary:hover {
            background: rgba(96, 165, 250, 0.15);
            transform: translateY(-4px);
        }

        .cta-section i {
            margin-right: 10px;
        }

      
       /* ===== FOOTER ===== */
.site-footer {
  background: #0f172a;
  color: #f1f5f9;
  margin-top: 0;
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 50px 20px 30px;
}

/* MAIN FOOTER */
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 0;
  border-radius: 8px;
}

.footer-logo p {
  max-width: 320px;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #94a3b8;
}
/* Footer logo + company name (no layout change) */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand img {
  height: 50px; /* same size jaisa pehle logo tha */
  width: auto;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-logo-span {
  font-size: 20px;
  font-weight: 700;
  color: #f1f5f9;
}

/* LINKS */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.link-column h4 {
  margin-bottom: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f1f5f9;
}

.link-column a,
.link-column p {
  display: block;
  margin-bottom: 10px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.link-column a:hover {
  color: #38bdf8;
}

/* FOOTER BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  flex-wrap: wrap;
  gap: 20px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(30, 41, 59, 0.7);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: #38bdf8;
  color: white;
  transform: translateY(-3px);
}

.copyright {
  text-align: right;
  font-size: 0.9rem;
  color: #94a3b8;
}

.copyright a {
  color:  #38bdf8;
  text-decoration: none;
}


        /* ===== BACK TO TOP BUTTON ===== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 1000;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            transform: translateY(-5px);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1100px) {
            .section-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .hero-heading {
                font-size: 2.8rem;
            }
            
            .hero-visual {
                height: 400px;
            }
            
            .visual-element {
                width: 350px;
                height: 350px;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .services-container {
                gap: 60px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(15, 23, 42, 0.98);
                flex-direction: column;
                justify-content: flex-start;
                padding-top: 40px;
                align-items: center;
                transition: right 0.5s;
                z-index: 999;
                backdrop-filter: blur(10px);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .hero-content {
                flex-direction: column;
                text-align: center;
                padding-top: 40px;
            }
            
            .hero-subheading {
                max-width: 100%;
            }
            
            .hero-buttons {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .hero-visual {
                height: 300px;
                margin-top: 40px;
            }
            
            .visual-element {
                width: 300px;
                height: 300px;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-content {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .services-category {
                padding: 30px 20px;
            }
            
            .footer-main {
                grid-template-columns: 1fr;
            }
            
            .footer-links {
                grid-template-columns: 1fr;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .cta-content h2 {
                font-size: 2.2rem;
            }
            
            .cta-content p {
                font-size: 1.05rem;
            }
            
            .cta-section .btn-primary,
            .cta-section .btn-secondary {
                width: 100%;
                max-width: 260px;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .hero-heading {
                font-size: 2.2rem;
            }
            
            .hero-subheading {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .section-header {
                margin-bottom: 40px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .cta-content h2 {
                font-size: 1.8rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        @media (max-width: 400px) {
            .hero-heading {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .info-card {
                padding: 30px 20px;
            }
            
            .services-category {
                padding: 20px 15px;
            }
        }