  :root {
            --primary: #4f46e5;      /* Deep Indigo */
            --accent: #22d3ee;       /* Cyan */
            --dark: #0f172a;         /* Slate Dark */
            --light: #f8fafc;
        }
        
        * { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
        
        body {
           font-family: Verdana, sans-serif;
            background: var(--dark);
            color: #e2e8f0;
            line-height: 1.7;
        }
        ul.navbar-nav{align-items: center; display: flex;}
        /* Modern Navbar */
        .navbar {
            background: rgba(15, 23, 42, 0.98) !important;
            backdrop-filter: blur(20px);
            box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
        }
        
        .navbar-brand {
            font-size: 2.1rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .nav-link {
            color: white !important;
            font-weight: 600;
        }
        
        .nav-link:hover {
            color: var(--accent) !important;
        }
        
        /* New Hero Layout - Full bleed with overlay */
        .hero {
      min-height: 100vh;
    background: linear-gradient(135deg, rgb(10 15 28 / 70%), rgb(6 182 212 / 13%)), url(../img/background/banner.jpg) center / cover no-repeat fixed;
    display: flex
;
    align-items: center;
    position: relative;    padding: 110px 20px 60px;
        }
        

        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        footer a{color: #fff; text-decoration: none;}
        .hero h1 {
            font-size: clamp(3.5rem, 7.5vw, 6rem);
            font-weight: 900;
            line-height: 1.05;
            color: white;
        }
        
        .hero-subtitle {
            font-size: 1.6rem;
            color: #bae6fd;
        }
        .just-cent{justify-content: center;}
        .hero-image-wrapper {
            position: relative;
            z-index: 2;
        }
        
        .hero-image {
            border-radius: 40px;
            box-shadow: 0 40px 90px -20px rgba(34, 211, 238, 0.5);
            border: 8px solid rgba(255,255,255,0.1);
        }
        
        /* Section Title - New Style */
        .section-title {
            font-size: 2.9rem;
            font-weight: 800;
            color: white;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            bottom: -10px;
            left: 0;
            border-radius: 10px;
        }
        
        /* Services - New Stacked Layout with Gradient */
        .service-card {
            background: rgba(255,255,255,0.06);
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }
        
        .service-card:hover {
            transform: translateY(-20px);
            box-shadow: 0 35px 70px rgba(34, 211, 238, 0.25);
        }
        
        .service-img {
            height: 270px;
            object-fit: cover;
        }
        
        /* Why Choose Us - New Horizontal Timeline Style */
        .why-section {
            background: #1e2937;
        }
        
        .why-card {
            background: rgba(255,255,255,0.05);
            border-radius: 24px;
            padding: 2.5rem;
            text-align: center;
            border-left: 6px solid var(--accent);
        }
        
        .why-number {
            font-size: 4rem;
            font-weight: 900;
            color: var(--accent);
            opacity: 0.15;
            position: absolute;
            top: 20px;
            right: 30px;
            line-height: 1;
        }
        
        /* Contact - New Minimal Modern Form */
        .contact-section {
            background: linear-gradient(135deg, #1e2937, #0f172a);
        }
        
        .contact-form {
            background: rgba(255,255,255,0.07);
            backdrop-filter: blur(25px);
            border-radius: 32px;
            border: 1px solid rgba(186, 230, 253, 0.15);
            padding: 3.5rem;
        }
        
        .form-control {
             background: rgb(255 255 255);
            border: 1px solid rgba(186, 230, 253, 0.3);
            color: #000;
            border-radius: 16px;
            padding: 16px 22px;
        }
        
        .form-control:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.3);
        }
        
        /* Scroll to Top */
        #scrollToTop {
            position: fixed;
            bottom: 35px;
            right: 35px;
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.7rem;
            box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }