                                                                                                                                         :root {
                                                                                                                                            --primary: #2563eb;
                                                                                                                                            --primary-dark: #1d4ed8;
                                                                                                                                            --secondary: #7c3aed;
                                                                                                                                            --accent: #ec4899;
                                                                                                                                            --dark: #0f172a;
                                                                                                                                            --light: #f8fafc;
                                                                                                                                            --gradient: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
                                                                                                                                            --gradient-reverse: linear-gradient(135deg, var(--accent), var(--secondary), var(--primary));
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        * img {
                                                                                                                                            height: 100%;
                                                                                                                                            width: 100%;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        body {
                                                                                                                                            font-family: 'Inter', sans-serif;
                                                                                                                                            color: #334155;
                                                                                                                                            overflow-x: hidden;
                                                                                                                                            background-color: #f8fafc;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        h1,
                                                                                                                                        h2,
                                                                                                                                        h3,
                                                                                                                                        h4,
                                                                                                                                        h5,
                                                                                                                                        h6 {
                                                                                                                                            font-family: 'Poppins', sans-serif;
                                                                                                                                            font-weight: 700;
                                                                                                                                            /* color: white; */
                                                                                                                                        }
                                                                                                                                        /* Navigation */
                                                                                                                                        
                                                                                                                                        .navbar {
                                                                                                                                            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
                                                                                                                                            padding: 15px 0;
                                                                                                                                            /* background: rgba(255, 255, 255, 0.95); */
                                                                                                                                            background: #331f4cd5 !important;
                                                                                                                                            color: white;
                                                                                                                                            backdrop-filter: blur(12px);
                                                                                                                                            -webkit-backdrop-filter: blur(12px);
                                                                                                                                            transition: all 0.4s ease;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .navbar-brand {
                                                                                                                                            width: 14%;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .nav {
                                                                                                                                            margin: 0 3px;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .navbar-nav {
                                                                                                                                            /*     border: 1px solid black; */
                                                                                                                                            font-size: 15px;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .nav-link {
                                                                                                                                            font-weight: 700;
                                                                                                                                            position: relative;
                                                                                                                                            padding: 10px 7px !important;
                                                                                                                                            border-radius: 8px;
                                                                                                                                            transition: all 0.3s;
                                                                                                                                            color: var(--white) !important;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .nav-link::before {
                                                                                                                                            content: '';
                                                                                                                                            position: absolute;
                                                                                                                                            top: 0;
                                                                                                                                            left: 0;
                                                                                                                                            width: 100%;
                                                                                                                                            height: 100%;
                                                                                                                                            background: var(--gradient);
                                                                                                                                            opacity: 0;
                                                                                                                                            border-radius: 8px;
                                                                                                                                            transition: all 0.3s;
                                                                                                                                            z-index: -1;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .nav-link:hover {
                                                                                                                                            color: rgb(245, 238, 238) !important;
                                                                                                                                            transform: translateY(-2px);
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .nav-active {
                                                                                                                                            color: #c9abe1 !important;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .nav-link:hover::before {
                                                                                                                                            opacity: 1;
                                                                                                                                        }
                                                                                                                                        /* .hero h1 {
      font-size: 3.2rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }
    
    .hero h1 span {
      color: var(--accent);
      position: relative;
    } */
                                                                                                                                        /* Hero Section */
                                                                                                                                        /* .hero {
     background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9)), url('../img/home-header.jpeg') center/cover no-repeat;
      color: white;
      padding:  1rem 0 5rem;           
      position: relative;
      overflow: hidden;
    } */
                                                                                                                                        
                                                                                                                                        .hero {
                                                                                                                                            position: relative;
                                                                                                                                            color: white;
                                                                                                                                            padding: 1rem 0 5rem;
                                                                                                                                            overflow: hidden;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .hero-video {
                                                                                                                                            position: absolute;
                                                                                                                                            top: 0;
                                                                                                                                            left: 0;
                                                                                                                                            width: 100%;
                                                                                                                                            height: 100%;
                                                                                                                                            object-fit: cover;
                                                                                                                                            z-index: 1;
                                                                                                                                        }
                                                                                                                                        /* Optional dark overlay for better text contrast */
                                                                                                                                        
                                                                                                                                        .hero-overlay {
                                                                                                                                            position: absolute;
                                                                                                                                            top: 0;
                                                                                                                                            left: 0;
                                                                                                                                            width: 100%;
                                                                                                                                            height: 100%;
                                                                                                                                            /* background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9)); */
                                                                                                                                            z-index: 2;
                                                                                                                                        }
                                                                                                                                        /* Content stays on top of video and overlay */
                                                                                                                                        
                                                                                                                                        .hero .container {
                                                                                                                                            position: relative;
                                                                                                                                            z-index: 3;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .hero h1 {
                                                                                                                                            font-size: 2.0rem;
                                                                                                                                            font-weight: 800;
                                                                                                                                            margin-bottom: 1.5rem;
                                                                                                                                            line-height: 1.2;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .hero h1 span {
                                                                                                                                            color: var(--accent);
                                                                                                                                            position: relative;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .hero-badge {
                                                                                                                                            background-color: rgba(255, 255, 255, 0.15);
                                                                                                                                            backdrop-filter: blur(10px);
                                                                                                                                            border: 1px solid rgba(255, 255, 255, 0.2);
                                                                                                                                            color: var(--white);
                                                                                                                                            padding: 0.6rem 1.2rem;
                                                                                                                                            border-radius: 50px;
                                                                                                                                            font-weight: 500;
                                                                                                                                            margin-bottom: 1.5rem;
                                                                                                                                            display: inline-block;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .display-1 {
                                                                                                                                            font-size: 4.5rem;
                                                                                                                                            margin-bottom: 1.5rem;
                                                                                                                                            /* background: linear-gradient(135deg, #ffffff 20%, #f1f3f5 60%, #ddd6fe 100%); */
                                                                                                                                            /* /* -webkit-background-clip: text; */
                                                                                                                                            /* -webkit-text-fill-color: transparent; */
                                                                                                                                            /* text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
                                                                                                                                            position: relative;
                                                                                                                                            display: inline-block;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .display-12 {
                                                                                                                                            /* font-size: 1.5rem; */
                                                                                                                                            margin-bottom: 1.5rem;
                                                                                                                                            /* background: linear-gradient(135deg, #fff 20%, #93c5fd 60%, #ddd6fe 100%); */
                                                                                                                                            /* -webkit-background-clip: text; */
                                                                                                                                            /* -webkit-text-fill-color: transparent; */
                                                                                                                                            /* text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
                                                                                                                                            position: relative;
                                                                                                                                            display: inline-block;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .display-1::after {
                                                                                                                                            content: '';
                                                                                                                                            position: absolute;
                                                                                                                                            bottom: -10px;
                                                                                                                                            left: 50%;
                                                                                                                                            transform: translateX(-50%);
                                                                                                                                            width: 100px;
                                                                                                                                            height: 4px;
                                                                                                                                            background: var(--gradient);
                                                                                                                                            border-radius: 4px;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        @keyframes float {
                                                                                                                                            0%,
                                                                                                                                            100% {
                                                                                                                                                transform: translateY(0) translateX(0) rotate(0deg);
                                                                                                                                            }
                                                                                                                                            25% {
                                                                                                                                                transform: translateY(-20px) translateX(10px) rotate(5deg);
                                                                                                                                            }
                                                                                                                                            50% {
                                                                                                                                                transform: translateY(10px) translateX(-15px) rotate(-5deg);
                                                                                                                                            }
                                                                                                                                            75% {
                                                                                                                                                transform: translateY(-10px) translateX(-10px) rotate(3deg);
                                                                                                                                            }
                                                                                                                                        }
                                                                                                                                        /* Ensure hero content sits above particles */
                                                                                                                                        
                                                                                                                                        .hero-home>.container {
                                                                                                                                            position: relative;
                                                                                                                                            z-index: 2;
                                                                                                                                        }
                                                                                                                                        /* Buttons */
                                                                                                                                        
                                                                                                                                        .btn-primary {
                                                                                                                                            background-color: var(--primary);
                                                                                                                                            border-color: var(--primary);
                                                                                                                                            padding: 10px;
                                                                                                                                            font-weight: 500;
                                                                                                                                            border-radius: 8px;
                                                                                                                                            transition: all 0.3s ease;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .btn-primary:hover {
                                                                                                                                            background-color: var(--primary-dark);
                                                                                                                                            border-color: var(--primary-dark);
                                                                                                                                            transform: translateY(-2px);
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .btn-light {
                                                                                                                                            background-color: rgba(255, 255, 255, 0.9);
                                                                                                                                            color: var(--primary);
                                                                                                                                            border: none;
                                                                                                                                            padding: 0.8rem 1.8rem;
                                                                                                                                            font-weight: 500;
                                                                                                                                            border-radius: 8px;
                                                                                                                                            transition: all 0.3s ease;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .btn-light:hover {
                                                                                                                                            background-color: var(--white);
                                                                                                                                            color: var(--primary-dark);
                                                                                                                                            transform: translateY(-2px);
                                                                                                                                        }
                                                                                                                                        /* Cards */
                                                                                                                                        
                                                                                                                                        .card {
                                                                                                                                            height: 640px;
                                                                                                                                            border: none;
                                                                                                                                            border-radius: 12px;
                                                                                                                                            box-shadow: var(--card-shadow);
                                                                                                                                            transition: all 0.3s ease;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .card:hover {
                                                                                                                                            transform: translateY(-8px);
                                                                                                                                            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
                                                                                                                                        }
                                                                                                                                        /* .icon-bubble {
      width: 70px;
      height: 70px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      margin-bottom: 1.5rem;
      font-size: 1.8rem;
  } */
                                                                                                                                        /* Section Titles */
                                                                                                                                        
                                                                                                                                        .section-title {
                                                                                                                                            position: relative;
                                                                                                                                            margin-bottom: 1rem;
                                                                                                                                            font-weight: 800;
                                                                                                                                            color: var(--dark-text);
                                                                                                                                        }
                                                                                                                                        /* .section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin-top: 15px;
    border-radius: 2px;
}

.section-title.center:after {
    margin-left: auto;
    margin-right: auto;
} 
.section-subtitle {
    color: var(--light-text);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}


/* Services Section */
                                                                                                                                        
                                                                                                                                        .services-section {
                                                                                                                                            background: linear-gradient(rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 0.9)), url('../img/services.png') center/cover;
                                                                                                                                            padding: 3rem 0;
                                                                                                                                            background-attachment: fixed;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .service-card {
                                                                                                                                            padding: 40px 30px;
                                                                                                                                            border-radius: 15px;
                                                                                                                                            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                                                                                                                                            transition: all 0.4s ease;
                                                                                                                                            background: white;
                                                                                                                                            height: 100%;
                                                                                                                                            position: relative;
                                                                                                                                            overflow: hidden;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .service-card:before {
                                                                                                                                            content: '';
                                                                                                                                            position: absolute;
                                                                                                                                            top: 0;
                                                                                                                                            left: 0;
                                                                                                                                            width: 5px;
                                                                                                                                            height: 0;
                                                                                                                                            background: var(--gradient);
                                                                                                                                            transition: height 0.5s ease;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .service-card:hover:before {
                                                                                                                                            height: 100%;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .service-card:hover {
                                                                                                                                            transform: translateY(-10px);
                                                                                                                                            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
                                                                                                                                        }
                                                                                                                                        /* Stats Section */
                                                                                                                                        
                                                                                                                                        .stats {
                                                                                                                                            background: linear-gradient(135deg, rgba(32, 35, 41, 0.9) 0%, rgba(124, 58, 237, 0.9) 100%), url('../img/stats.png') center/cover;
                                                                                                                                            background-attachment: fixed;
                                                                                                                                            color: white;
                                                                                                                                            padding: 5rem 0;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .stat-number {
                                                                                                                                            font-size: 3rem;
                                                                                                                                            font-weight: 800;
                                                                                                                                            margin-bottom: 0.5rem;
                                                                                                                                        }
                                                                                                                                        /* Approach Section */
                                                                                                                                        
                                                                                                                                        .approach-section {
                                                                                                                                            background: linear-gradient(135deg, rgba(32, 40, 56, 0.9) 0%, rgba(124, 58, 237, 0.9) 100%), url('../img/approach.png') center/cover;
                                                                                                                                            background-attachment: fixed;
                                                                                                                                            padding: 3rem 0;
                                                                                                                                            position: relative;
                                                                                                                                        }
                                                                                                                                        /* Expertise Section */
                                                                                                                                        
                                                                                                                                        .expertise-section {
                                                                                                                                            background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('../img/expertis.jpeg') center/cover;
                                                                                                                                            padding: 2.5rem 0;
                                                                                                                                        }
                                                                                                                                        /* CTA Section */
                                                                                                                                        
                                                                                                                                        .cta-section {
                                                                                                                                            background: linear-gradient(rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 0.9)), url('../img/cta.png') center/cover;
                                                                                                                                            color: var(--white);
                                                                                                                                            padding: 1rem 0;
                                                                                                                                            text-align: center;
                                                                                                                                        }
                                                                                                                                        /* btn Primary */
                                                                                                                                        
                                                                                                                                        .btn-primary {
                                                                                                                                            background: var(--gradient);
                                                                                                                                            border: none;
                                                                                                                                            padding: 15px 15px;
                                                                                                                                            font-weight: 600;
                                                                                                                                            border-radius: 12px;
                                                                                                                                            transition: all 0.4s;
                                                                                                                                            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
                                                                                                                                            position: relative;
                                                                                                                                            overflow: hidden;
                                                                                                                                            z-index: 1;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .btn-primary::before {
                                                                                                                                            content: '';
                                                                                                                                            position: absolute;
                                                                                                                                            top: 0;
                                                                                                                                            left: 0;
                                                                                                                                            width: 100%;
                                                                                                                                            height: 100%;
                                                                                                                                            background: var(--gradient-reverse);
                                                                                                                                            opacity: 0;
                                                                                                                                            transition: all 0.4s;
                                                                                                                                            z-index: -1;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .btn-primary:hover {
                                                                                                                                            transform: translateY(-5px) scale(1.05);
                                                                                                                                            box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .btn-primary:hover::before {
                                                                                                                                            opacity: 1;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .btn-outline-primary {
                                                                                                                                            border: 2px solid;
                                                                                                                                            border-image: var(--gradient) 1;
                                                                                                                                            color: var(--primary);
                                                                                                                                            font-weight: 600;
                                                                                                                                            border-radius: 0 px;
                                                                                                                                            transition: all 0.4s;
                                                                                                                                            background: transparent;
                                                                                                                                            position: relative;
                                                                                                                                            overflow: hidden;
                                                                                                                                            z-index: 1;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .btn-outline-primary::before {
                                                                                                                                            content: '';
                                                                                                                                            position: absolute;
                                                                                                                                            top: 0;
                                                                                                                                            left: 0;
                                                                                                                                            width: 100%;
                                                                                                                                            height: 0;
                                                                                                                                            background: var(--gradient);
                                                                                                                                            transition: all 0.4s;
                                                                                                                                            z-index: -1;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .btn-outline-primary:hover {
                                                                                                                                            color: white;
                                                                                                                                            transform: translateY(-5px);
                                                                                                                                            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .btn-outline-primary:hover::before {
                                                                                                                                            height: 100%;
                                                                                                                                        }
                                                                                                                                        /* Footer */
                                                                                                                                        
                                                                                                                                        footer {
                                                                                                                                            background-color: var(--dark);
                                                                                                                                            color: white;
                                                                                                                                            padding: 100px 0 40px;
                                                                                                                                            position: relative;
                                                                                                                                            background: linear-gradient(rgba(30, 41, 59, 0.95), rgba(30, 41, 59, 0.95)), url('../img/footer.png') center/cover;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        footer::before {
                                                                                                                                            content: '';
                                                                                                                                            position: absolute;
                                                                                                                                            top: 0;
                                                                                                                                            left: 0;
                                                                                                                                            width: 100%;
                                                                                                                                            height: 100%;
                                                                                                                                            /* background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .footer-links a {
                                                                                                                                            color: rgba(255, 255, 255, 0.7);
                                                                                                                                            text-decoration: none;
                                                                                                                                            transition: all 0.3s;
                                                                                                                                            position: relative;
                                                                                                                                            padding-left: 4px;
                                                                                                                                            display: inline-block;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .footer-links a:hover {
                                                                                                                                            color: white;
                                                                                                                                            /* padding-left: 10px; */
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .footer-links a::before {
                                                                                                                                            content: '→';
                                                                                                                                            position: absolute;
                                                                                                                                            left: -15px;
                                                                                                                                            transition: all 0.3s;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .footer-links a:hover::before {
                                                                                                                                            opacity: 1;
                                                                                                                                            left: -13px;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        @keyframes pulse {
                                                                                                                                            0%,
                                                                                                                                            100% {
                                                                                                                                                transform: scale(1);
                                                                                                                                                opacity: 0.1;
                                                                                                                                            }
                                                                                                                                            50% {
                                                                                                                                                transform: scale(1.2);
                                                                                                                                                opacity: 0.15;
                                                                                                                                            }
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .shape-1 {
                                                                                                                                            width: 400px;
                                                                                                                                            height: 400px;
                                                                                                                                            top: -200px;
                                                                                                                                            right: -200px;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .shape-2 {
                                                                                                                                            width: 300px;
                                                                                                                                            height: 300px;
                                                                                                                                            bottom: 100px;
                                                                                                                                            left: -150px;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .social-icon {
                                                                                                                                            display: inline-flex;
                                                                                                                                            align-items: center;
                                                                                                                                            justify-content: center;
                                                                                                                                            width: 50px;
                                                                                                                                            height: 50px;
                                                                                                                                            border-radius: 50%;
                                                                                                                                            background: rgba(255, 255, 255, 0.1);
                                                                                                                                            color: white;
                                                                                                                                            margin-right: 15px;
                                                                                                                                            transition: all 0.4s;
                                                                                                                                            position: relative;
                                                                                                                                            overflow: hidden;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .social-icon::before {
                                                                                                                                            content: '';
                                                                                                                                            position: absolute;
                                                                                                                                            top: 0;
                                                                                                                                            left: 0;
                                                                                                                                            width: 100%;
                                                                                                                                            height: 0;
                                                                                                                                            background: var(--gradient);
                                                                                                                                            transition: all 0.4s;
                                                                                                                                            z-index: -1;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .social-icon:hover {
                                                                                                                                            transform: translateY(-5px) rotate(10deg);
                                                                                                                                            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .social-icon:hover::before {
                                                                                                                                            height: 100%;
                                                                                                                                        }
                                                                                                                                        /* Utilities */
                                                                                                                                        
                                                                                                                                        .rounded-lg {
                                                                                                                                            border-radius: 16px;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .text-gradient {
                                                                                                                                            background: linear-gradient(135deg, var(--primary), var(--secondary));
                                                                                                                                            -webkit-background-clip: text;
                                                                                                                                            -webkit-text-fill-color: transparent;
                                                                                                                                            background-clip: text;
                                                                                                                                        }
                                                                                                                                        /* Responsive adjustments */
                                                                                                                                        
                                                                                                                                        @media (max-width: 768px) {
                                                                                                                                            .navbar-brand {
                                                                                                                                                /* border: 1px solid black; */
                                                                                                                                                width: 23%;
                                                                                                                                            }
                                                                                                                                            .hero h1 {
                                                                                                                                                font-size: 2.5rem;
                                                                                                                                            }
                                                                                                                                            .stat-number {
                                                                                                                                                font-size: 2.5rem;
                                                                                                                                            }
                                                                                                                                            .card {
                                                                                                                                                height: auto;
                                                                                                                                            }
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .floating-icon {
                                                                                                                                            position: absolute;
                                                                                                                                            font-size: 2rem;
                                                                                                                                            opacity: 0.1;
                                                                                                                                            color: var(--primary);
                                                                                                                                            z-index: 0;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .floating-icon-1 {
                                                                                                                                            top: 20%;
                                                                                                                                            left: 5%;
                                                                                                                                            animation: float-icon 15s infinite ease-in-out;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .floating-icon-2 {
                                                                                                                                            top: 60%;
                                                                                                                                            right: 5%;
                                                                                                                                            animation: float-icon 18s infinite ease-in-out reverse;
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        @keyframes float-icon {
                                                                                                                                            0%,
                                                                                                                                            100% {
                                                                                                                                                transform: translateY(0) translateX(0) rotate(0deg);
                                                                                                                                            }
                                                                                                                                            25% {
                                                                                                                                                transform: translateY(-30px) translateX(15px) rotate(10deg);
                                                                                                                                            }
                                                                                                                                            50% {
                                                                                                                                                transform: translateY(20px) translateX(-20px) rotate(-10deg);
                                                                                                                                            }
                                                                                                                                            75% {
                                                                                                                                                transform: translateY(-15px) translateX(-15px) rotate(5deg);
                                                                                                                                            }
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .parallax-element {
                                                                                                                                            transform-style: preserve-3d;
                                                                                                                                        }
                                                                                                                                        /*** About ***/
                                                                                                                                        
                                                                                                                                        @media (min-width: 992px) {
                                                                                                                                            .container.about {
                                                                                                                                                max-width: 100% !important;
                                                                                                                                            }
                                                                                                                                            .about-text {
                                                                                                                                                padding-right: calc(((100% - 960px) / 2) + .75rem);
                                                                                                                                            }
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        @media (min-width: 1200px) {
                                                                                                                                            .about-text {
                                                                                                                                                padding-right: calc(((100% - 1140px) / 2) + .75rem);
                                                                                                                                            }
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        @media (min-width: 1400px) {
                                                                                                                                            .about-text {
                                                                                                                                                padding-right: calc(((100% - 1320px) / 2) + .75rem);
                                                                                                                                            }
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        @media (max-width:1200px) {
                                                                                                                                            .btn-primary {
                                                                                                                                                padding: 6px 5px;
                                                                                                                                                border-color: var(--primary);
                                                                                                                                                font-weight: 500;
                                                                                                                                                border-radius: 8px;
                                                                                                                                                transition: all 0.3s ease;
                                                                                                                                            }
                                                                                                                                            .btn-primary:hover {
                                                                                                                                                background-color: var(--primary-dark);
                                                                                                                                                border-color: var(--primary-dark);
                                                                                                                                                transform: translateY(-2px);
                                                                                                                                            }
                                                                                                                                        }
                                                                                                                                        
                                                                                                                                        .text-justify {
                                                                                                                                            text-align: justify;
                                                                                                                                        }