        html {
        scroll-behavior: smooth;
        }
     
        :root {
            --neon-pink: #ff00ff;
            --neon-blue: #00bfff;
            --neon-purple: #9932cc;
            --dark-bg: #0c0c14;
            --brick-color: #221b2e;
            --text-color: #f5f5f5;
            --gradient-dark: linear-gradient(135deg, #121212, #1e1e2d);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--brick-color);
            color: var(--text-color);
            overflow-x: hidden;
        }
        
        .neon-text-pink {
            color: var(--neon-pink);
            text-shadow: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink);
        }
        
        .neon-text-blue {
            color: var(--neon-blue);
            text-shadow: 0 0 1px var(--neon-blue), 0 0 2px var(--neon-blue);

        }

        .neon-text-purple {
            color: var(--neon-purple);
            text-shadow: 0 0 5px var(--neon-purple), 0 0 10px var(--neon-purple);
        }
        
        
        /* Preload fonts */
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
        
        /* Header */
        .header {
            padding: 20px 0;
            background-color: rgba(12, 12, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 191, 255, 0.3);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.4s ease;
        }
        
        .header.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(255, 0, 255, 0.2);
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        
        .logo-image {
            height: 80px;
       
        }
        
        .nav-link {
            color: var(--text-color) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s;
            opacity: 0.8;
        }
        
        .nav-link:before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-pink);
            box-shadow: 0 0 8px var(--neon-pink);
            transition: width 0.3s;
        }
        
        .nav-link:hover {
            opacity: 1;
            color: var(--text-color) !important;
        }
        
        .nav-link:hover:before {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background-color: var(--dark-bg);
            position: relative;
            display: flex;
            align-items: center;
            margin-top: 80px;
            overflow: hidden;
        }
        
        .hero-image-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
            background-color: ;
        }
        
        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            filter: brightness(0.6) saturate(1.2);
            transform: scale(1.1);
            animation: subtle-zoom 30s infinite alternate;
        }
        
        @keyframes subtle-zoom {
            0% { transform: scale(1.1); }
            100% { transform: scale(1.2); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
        }
        
        .hero-brand {
            margin-bottom: 30px;
        }
        
        .hero-logo {
            max-width: 500px;
            margin-bottom: -5%;
        }
        
        .hero-title {
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
            text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto 40px;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
            opacity: 0.9;
        }
        
        .hero-btn {
            display: inline-block;
            padding: 12px 32px;
            background: var(--neon-blue);
            color: white;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
            margin: 0 10px 20px;
        }
        
        .hero-btn-outline {
            background: transparent;
            border: 2px solid var(--neon-pink);
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
        }
        
        .hero-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 191, 255, 0.7);
            color: white;
        }
        
        .hero-btn-outline:hover {
            background: var(--neon-pink);
            box-shadow: 0 10px 20px rgba(255, 0, 255, 0.7);
        }
        
        .wave-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            z-index: 3;
        }
        
        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title,
        .section-title2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            width: 80px;
            height: 3px;
            background: var(--neon-pink);
            transform: translateX(-50%);
            box-shadow: 0 0 10px var(--neon-pink);
        }
        
        .section-title2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            width: 80px;
            height: 3px;
            background: var(--neon-pink);
            transform: translateX(-50%);
            box-shadow: 0 0 10px var(--neon-pink);
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.8;
        }
        
        /* Blog & Article Sections */
        .blog-section, .article-section {
            padding: 100px 0;
            position: relative;
           
        }
       
        
        .blog-section:before, .article-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2000 2000" preserveAspectRatio="none"><path fill="none" stroke="%23ff00ff10" stroke-width="2" d="M0,0 L2000,2000 M0,50 L2000,2050 M0,100 L2000,2100"/></svg>');
            background-size: cover;
            opacity: 0.2;
            pointer-events: none;
        }
        
        .blog-card, .article-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            background-color: var(--brick-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.5s;
            height: 100%;
        }
        
     
        .card-img-container {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        
        .card-img-container img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            
        }
       
        
        .date-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--neon-blue);
            color: white;
            border-radius: 30px;
            padding: 5px 15px;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 1;
            box-shadow: 0 0 15px rgba(0, 191, 255, 0.6);
        }
        
        .article-card .date-badge {
            background-color: var(--neon-pink);
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
        }
        
        .card-body {
            padding: 25px;
        }
        
        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: white;
            transition: color 0.3s;
            text-align: justify;
        }
        
        .blog-card:hover .card-title {
            color: var(--neon-blue);
        }
        
        .article-card:hover .card-title {
            color: var(--neon-pink);
        }
        
        .card-text {
            margin-bottom: 20px;
            opacity: 0.8;
            font-size: 0.95rem;
            line-height: 1.6;
            text-align: justify;
        }
        
        .learn-more {
            display: inline-flex;
            align-items: center;
            color: var(--neon-blue);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .article-card .learn-more {
            color: var(--neon-pink);
        }
        
        .learn-more:hover {
            transform: translateX(5px);
        }
        
        .learn-more i {
            margin-left: 8px;
            transition: transform 0.3s;
        }
        
        .learn-more:hover i {
            transform: translateX(5px);
        }


        /*Modal*/
        .modal {
          display: none;
          position: fixed;
          z-index: 1000;
          left: 0; top: 0;
          width: 100%; height: 100%;
          background-color: rgba(0,0,0,0);
          margin-top: -2%;
        } 

        .modal-content {
          background-color: #fff;
          margin: 10% auto;
          padding: 20px;
          border-radius: 8px;
          width: 80%;
          max-width: 600px;
          position: relative;
        }

        .modal-text{
          color: #000;
        }

        .modal-text p{
          
        }

        .close {
          position: absolute;
          top: 10px; right: 15px;
          font-size: 24px;
          cursor: pointer;
          color: #000;
        }

        
        /* Section Dividers */
        .divider {
            position: relative;
            height: 150px;
            overflow: hidden;
        }
        
        .divider svg {
            position: absolute;
            width: 100%;
            height: 150px;
        }
        
        .divider.top svg {
            top: 0;
        }
        
        .divider.bottom svg {
            bottom: 0;
            transform: rotate(180deg);
        }
        
        /* Footer */
        .footer {
            background-color: var(--brick-color);
            position: relative;
            padding: 100px 0 30px;
            color: var(--text-color);
            overflow: hidden;
        }
        
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2000 2000" preserveAspectRatio="none"><circle cx="100" cy="100" r="2" fill="%2300bfff" opacity="0.5"/><circle cx="300" cy="300" r="2" fill="%23ff00ff" opacity="0.5"/><circle cx="500" cy="500" r="2" fill="%2300bfff" opacity="0.5"/><circle cx="700" cy="700" r="2" fill="%23ff00ff" opacity="0.5"/><circle cx="900" cy="900" r="2" fill="%2300bfff" opacity="0.5"/><circle cx="1100" cy="1100" r="2" fill="%23ff00ff" opacity="0.5"/><circle cx="1300" cy="1300" r="2" fill="%2300bfff" opacity="0.5"/><circle cx="1500" cy="1500" r="2" fill="%23ff00ff" opacity="0.5"/><circle cx="1700" cy="1700" r="2" fill="%2300bfff" opacity="0.5"/><circle cx="1900" cy="1900" r="2" fill="%23ff00ff" opacity="0.5"/></svg>');
            background-size: 2000px 2000px;
            opacity: 0.1;
        }
        
        .footer-content {
            position: relative;
            z-index: 1;
        }
        
        .footer-logo {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
        }
        
        .footer-logo img {
            height: 60px;
            margin-right: 10px;
        }
        
        .footer-about {
            margin-bottom: 30px;
            opacity: 0.8;
            line-height: 1.8;
        }
        
        .footer-heading {
            font-size: 40px;
            margin-bottom: 25px;
            color: var(--neon-blue);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-left: 60%;
            white-space: nowrap;
            margin-top: 5%;
        }

        
        .footer-links {
            list-style: none;
            padding: 0;
            margin-left: 38% !important; //68%
            font-size: 18px;
            white-space: nowrap !important;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links i{
            color: var(--neon-pink);
        }

       
        
        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s;
            opacity: 0.8;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-links a:before {
            content: '';
            position: absolute;
            left: 0;
            transition: transform 0.3s;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--neon-pink);
            padding-left: 20px;
        }
        
        .footer-links a:hover:before {
            transform: translateX(5px);
            color: var(--neon-pink);
        }

        .footer-info-right {
          margin-left: 18%;         
         }

        
        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-info i {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(0, 191, 255, 0.2);
            border-radius: 50%;
            margin-right: 15px;
            color: var(--neon-blue);
            font-size: 0.9rem;
        }

        
        
      .social-icons {
    margin-top: 2px;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    margin-right: 15px;
    color: white;
    text-decoration: none;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: transform 0.5s;
    border-radius: 50%;
    z-index: -1;
}

/* Facebook */
.social-icons a[aria-label="Facebook"]:before {
    background: #1877f2;
}
.social-icons a[aria-label="Facebook"]:hover {
    color: white;
}

/* YouTube */
.social-icons a[aria-label="Youtube"]:before {
    background: #ff0000;
}
.social-icons a[aria-label="Youtube"]:hover {
    color: white;
}

/* Instagram */
.social-icons a[aria-label="Instagram"]:before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-icons a[aria-label="Instagram"]:hover {
    color: white;
}

/* TikTok */
.social-icons a[aria-label="Tiktok"]:before {
    background: #000000;
}
.social-icons a[aria-label="Tiktok"]:hover {
    color: #ff0050;
}

/* Shared hover behavior */
.social-icons a:hover {
    transform: translateY(-5px);
    border-color: transparent;
}

.social-icons a:hover:before {
    transform: scale(1);
}

        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 70px;
            opacity: 0.7;
            font-size: 0.9rem;
        }
        
        /* Glow effect */
        .glow {
            position: relative;
        }
        
        .glow:after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            z-index: -1;
            background-color: var(--neon-blue);
            filter: blur(20px);
            opacity: 0;
            transition: opacity 0.5s;
        }
        
        .glow:hover:after {
            opacity: 0.3;
        }
        
        /* Call to Action */
        .cta-section {
            padding: 80px 0;
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }
        
        .cta-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .cta-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-text {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        /* Animated background */
        .animated-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }
        
        .animated-bg span {
            position: absolute;
            display: block;
            width: 20px;
            height: 20px;
            background: var(--neon-blue);
            border-radius: 50%;
            opacity: 0;
            animation: fadeInOut 3s linear infinite;
        }
        
        .animated-bg span:nth-child(odd) {
            background: var(--neon-pink);
        }
        
        @keyframes fadeInOut {
            0% {
                transform: scale(0) translateY(0);
                opacity: 0;
            }
            50% {
                opacity: 0.3;
            }
            100% {
                transform: scale(2) translateY(-200px);
                opacity: 0;
            }
        }
        

        @media (max-width: 1024px) {
            .footer-heading {
             font-size: 35px;
             margin-left: 60%;
             white-space: nowrap;
            }
        
            .footer-links {
             margin-left: 30%;
             font-size: 20px;
             white-space: nowrap;
            }

            .footer-info-right {
             margin-left: 15%;         
            }
            .modal{
             margin-top: 1%;
            }

            .hero-logo {
            max-width: 400px;
            margin-bottom: -5%;
           }
        
        }

        /* Responsive styles */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 3.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .footer [class*="col-"] {
                margin-bottom: 40px;
            }
            
        }

        @media (max-width: 768px) {
            
            .footer-info-right {
             margin-left: 28%;         
            }

             .modal{
             margin-top: 5%;
            }

            .hero-logo {
             max-width: 300px;
             margin-bottom: -5%;
             margin-left: 3%;
           }
        }
        
        @media (max-width: 767px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .blog-card, .article-card {
                margin-bottom: 20px;
            }
            
            .divider {
                height: 80px;
            }
            
            .divider svg {
                height: 80px;
            }

             
        }

        @media (max-width: 480px) {
            .modal {
              margin-top: 20%;
            }
            .footer-heading {
             font-size: 30px;
             margin-left: 6%;
             white-space: nowrap;
            }
        
            .footer-links {
             margin-left: 3%;
             font-size: 18px;
             white-space: nowrap;
            }

             .footer-info-right {
             margin-left: 5%;         
            }

             
        }

          @media (max-width: 375px) {
            .modal {
              margin-top: 24%;
            }

            .footer-heading {
             font-size: 25px;
             margin-left: 1%;
             white-space: nowrap;
            }

            .footer-links {
             margin-left: -3%;
             font-size: 18px;
             white-space: nowrap;
            }

            .footer-info-right {
             margin-left: 1%;         
            }

            .hero-logo {
             max-width: 250px;
             margin-bottom: -5%;
             margin-left: 3%;
           }
        }

        @media (max-width: 320px) {
            .modal {
              margin-top: 40%;
            }

            .footer-heading {
             font-size: 25px;
             margin-left: 6%;
             white-space: nowrap;
            }
        }