        :root {
            --primary: #ffffff;
            --secondary: #000000;
            --accent: #f0f0f0;
            --neutral: #000000;
            --light: #f8f8f8;
            --white: #000000;
            --gradient: linear-gradient(135deg, var(--primary), var(--accent));
            --accent-gradient: linear-gradient(135deg, #e0e0e0, #d0d0d0);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
           
            line-height: 1.6;
            color: var(--neutral);
            overflow-x: hidden;
        }

        /* Loader Section */
    /* Loader container */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Logo styling */
.logo-svg {
  width: 120px;
  height: 120px;
  opacity: 0;
  transform: scale(0.5);
  animation: fadeScale 2s ease forwards;
}

/* Animation for logo */
@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hide loader after animation */
body.loaded .loader {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

        .logo {
            width: 120px;
            height: 120px;
            background: var(--white);
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: logoAnimation 2s ease-in-out;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
          background: linear-gradient(135deg, #ffffff 0%, whitesmoke 100%);

            border-radius: 20px;
        }

        .logo-svg {
            position: relative;
            z-index: 2;
            width: 80px;
            height: 80px;
        }

        @keyframes logoAnimation {
            0% { opacity: 0; transform: scale(0.5); }
            50% { opacity: 1; transform: scale(1.1); }
            100% { opacity: 1; transform: scale(1); }
        }

/* Container */
.nav-container {
  max-width: 100%; /* slightly wider to give room for rounded corners */
  margin: 0 auto;
  padding: 10px 2rem;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10vh;
  background-color: whitesmoke;

  border-radius: 50px;
  box-sizing: border-box; /* to include padding in width */
  
  /* Optional: Add a subtle box-shadow or border to emphasize shape */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid transparent; /* transparent border to maintain size */
}


/* Menu (nav ul) */
.nav-menu {
  display: none; /* hidden by default on mobile */
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* Each menu item */
.nav-menu li {
  padding: 0 24px;
  list-style-type: none;
}

/* Menu links */
.nav-link {
  text-decoration: none;
  color: #241e09;
  font-size: 20px;
  font-family: 'Playfair Display', serif;
}

.nav-link:hover, .nav-link.active {
  color: silver;
}

/* Hamburger Icon Container */
.nav-toggle {
  width: 100px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  cursor: pointer;
  z-index: 1001; /* above menu */
}

/* Hamburger lines */
.nav-toggle span {
  background-color: black;
  width: 1.78rem;
  height: 0.2rem;
  transition: all 0.2s ease-in-out;
  position: relative;
  z-index: 10;
  margin-bottom: 6px;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

/* Show class to turn hamburger into X */
.nav-toggle.show span:nth-child(1) {
  transform: translateY(10px) rotate(135deg);
}

.nav-toggle.show span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.show span:nth-child(3) {
  transform: translateY(-8.6px) rotate(-135deg);
}

/* Show Menu */
.nav-menu.show {
  display: flex !important; /* flex when visible */
  position: fixed;
  background-color:whitesmoke;
  top: 8vh;
  left: 0;
  height: 100%;
  width: 100%;
  margin-top: -8vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.nav-menu.show li {
  margin: 1rem 0;
}

/* Responsive */
@media (min-width: 850px) {
  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: transparent;
    height: auto;
    width: auto;
    margin: 0;
    align-items: center;
  }
  .nav-toggle {
    display: none;
  }
}


        /* Hero CTA Button */
        .hero-cta {
            position: absolute;
            top: 70px;
            right: 2rem;
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background: var(--secondary);
            color: var(--primary);
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 2px solid var(--secondary);
            z-index: 999;
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            background: var(--primary);
            color: var(--secondary);
        }

        /* Hero Section */
     .hero {
    height: 100vh;
    background-image: url('../img/main.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--secondary);
    position: relative;
    
}


        .hero-content {
            max-width: 1200px;
            padding: 0 2rem;
            animation: fadeInUp 1s ease 0.5s both;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            text-align: left;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
        }

        .hero-right {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .hero-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 2rem;
            color: var(--secondary);
            letter-spacing: 0.5px;
            color: black;
        }

        .hero h1 {
            font-size: 6.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--secondary), black);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            letter-spacing: 2px;
            font-family: 'Playfair Display', serif;
        }

        .hero-tagline {
            font-size: 1rem;
            font-style: italic;
            opacity: 0.8;
            color: black;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--secondary);
            color: var(--primary);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border: 2px solid var(--secondary);
        }

       /* Styling for cursor blink */
  @keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
  }
  #cursor {
    animation: blink 1s steps(2, start) infinite;
  }

  .cta-button {
    margin-top: 1.5rem;
    background-color: #f0f0f0;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
  }
  .cta-button:hover {
    background-color: var(--secondary);
    color: white;
  }

        /* Section Styles */
        .section {
            padding: 5rem 0;
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: var(--secondary);
            font-family: 'Playfair Display', serif;
        }

        /* About Section */
        .about {
            background: #f5f5f5;
            border-top: 3px solid var(--secondary);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            animation: slideInLeft 0.8s ease;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--secondary);
            font-family: 'Dancing Script', cursive;
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #666666;
            font-family: 'Inter', sans-serif;
            line-height: 1.8;
            font-weight: 400;
        }

        .about-image {
            text-align: center;
            animation: slideInRight 0.8s ease;
        }

        .about-img {
            width: 350px;
            height: 250px;
            border-radius: 30px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--secondary);
            margin: 0 auto;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transform: rotate(-5deg);
            transition: all 0.3s ease;
        }

        .about-img:hover {
            transform: rotate(0deg) scale(1.05);
        }

        /* Services Section */
        #services {
    background-color: #ddd;
}
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
.section-title {
    color: var(--secondary);
    font-size: 90px;
}

        .service-card {
            background: var(--primary);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            opacity: 0;
            transform: translateY(-100px) rotateX(90deg);
            border: 2px solid var(--accent);
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0) rotateX(0deg);
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 25px 60px rgba(0,0,0,0.2);
            border-color: var(--secondary);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--neutral);
           
        }

        .service-card p {
            color: #666666;
        }

        /* Portfolio Section */
        .portfolio {
            background: var(--light);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .portfolio-item {
            position: relative;
            height: 250px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
.portfolio-intro {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    text-align: center;
}

        .portfolio-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .portfolio-item:hover {
            transform: scale(1.05);
        }

        .portfolio-bg {
            width: 100%;
            height: 100%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--white);
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-title {
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 600;
        }
.portfolio-item .slider {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
}

.portfolio-item .slider img {
  position: absolute;
  width: 100%;
  height: 180px;
  object-fit: cover;
  top: 0;
  left: 100%;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.portfolio-item .slider img.active {
  left: 0;
  opacity: 1;
}

        /* Blog Section */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .blog-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .blog-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .blog-image {
            height: 200px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--neutral);
        }

        .blog-card p {
            color: #666666;
            margin-bottom: 1rem;
        }

        .tiktok-highlight {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 25px;
    margin: 40px auto;
    max-width: 700px;
    border-radius: 10px;
    text-align: center;
}

.tiktok-intro {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.cta-button-container {
    margin-top: 20px;
}

.cta-button {
    background-color: #1e90ff;
    color: white;
    padding: 3px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 200;
    display: inline-block;
    transition: background 0.3s ease;
    font-style: italic;
}

.cta-button:hover {
    background-color: #0d74d1;
}

        .read-more {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .read-more:hover {
            color: var(--secondary);
        }

        /* Certificates Section */
        .certificates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .certificate-card {
            background: var(--primary);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px) rotateY(10deg);
            border: 2px solid var(--accent);
        }

        .certificate-card.visible {
            opacity: 1;
            transform: translateY(0) rotateY(0deg);
        }

        .certificate-card:hover {
            transform: translateY(-10px) rotateY(-5deg);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .certificate-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            background: var(--accent-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            animation: bounce 2s ease-in-out infinite;
        }

        .certificate-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .certificate-card p {
            color: #666666;
            margin-bottom: 1rem;
        }

        .certificate-date {
            font-weight: 600;
            color: var(--secondary);
            font-size: 1.1rem;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        /* Training Section */
        .training {
            background: var(--light);
        }

        .training-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .training-text h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .training-text p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: #666666;
        }

        .training-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--secondary);
            font-weight: 500;
        }

        .feature-icon {
            font-size: 1.2rem;
        }

        .training-btn {
            padding: 1rem 2rem;
            background: var(--gradient);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255,255,255,0.1);
        }

        .training-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255,255,255,0.2);
        }

        .training-visual {
            background: var(--primary);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .code-lines {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .code-line {
            height: 8px;
            border-radius: 4px;
            animation: codeAnimation 2s ease-in-out infinite;
        }

        .code-line:nth-child(2) { animation-delay: 0.2s; }
        .code-line:nth-child(3) { animation-delay: 0.4s; }
        .code-line:nth-child(4) { animation-delay: 0.6s; }
        .code-line:nth-child(5) { animation-delay: 0.8s; }

        @keyframes codeAnimation {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        /* Contact Section */
        .contact {
            background: var(--secondary);
            color: var(--primary);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-form {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            background: rgba(255,255,255,0.1);
            color: var(--white);
            font-family: inherit;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.7);
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: var(--accent-gradient);
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #e91e63, #f5576c);
            transform: translateY(-2px);
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: var(--accent-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255,255,255,0.4);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: var(--primary);
            border: none;
            border-radius: 50%;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.6);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-title {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-content,
            .contact-content,
            .training-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .services-grid,
            .portfolio-grid,
            .blog-grid {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section {
                padding: 3rem 0;
            }

            .about-img {
                width: 200px;
                height: 200px;
                font-size: 3rem;
            }
        }
        