:root {
            --primary: #00c2ff;
            --secondary: #0088cc;
            --accent: #00ff9d;
            --bg-dark: #0a1128;
            --bg-card: rgba(20, 35, 70, 0.75);
            --text: #e0f4ff;
            --text-light: #a8d0ff;
            --border: rgba(0, 194, 255, 0.45);
            --glow: 0 0 35px rgba(0, 194, 255, 0.6);
        }
        * { box-sizing: border-box; }
        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-dark) url('../img/about/bg.jpg') repeat center/cover fixed;
            background-blend-mode: overlay;
            color: var(--text);
            line-height: 1.7;
            position: relative; padding: 0px; margin: 0px;
        }
p{    font-size: 15px;}
        .glass {
            background: var(--bg-card);
            border-radius: 24px;
            border: 1px solid var(--border);
            box-shadow: var(--glow);
            backdrop-filter: blur(16px);
            transition: all 0.5s ease;
        }
        .glass:hover {
            box-shadow: 0 0 60px rgba(0,194,255,0.8);
            transform: translateY(-10px);
        }

        /* Header/Navbar */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 17, 40, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 4px 30px rgba(0,0,0,0.4);
            z-index: 1000;
        }
        .logo {
           font-size: 30px;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M8 8l14 14M8 22L22 8'/%3e%3c/svg%3e");
        }
        .navbar-nav .nav-link {
            color: var(--text-light) !important;
            font-weight: 600;
            position: relative;
                padding-left: 2rem !important;
    padding-right: 25px !important;

        }
        .navbar-nav .nav-link i {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary);
            font-size: 1.2rem;
        }
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -8px;
            left: 0rem;
            background: var(--primary);
            transition: all 0.4s;
        }
        .navbar-nav .nav-link:hover::after {
            width: calc(100% - 2.5rem);
        }
        .navbar-nav .nav-link:hover {
            color: var(--primary) !important;
        }

        /* Hero */
        #hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
        }
        .hero-title {
            font-size: 5.5rem;
            font-weight: 800;
            line-height: 1.05;
            text-shadow: var(--glow);
        }
        .hero-subtitle {
            font-size: 1.8rem;
            color: var(--accent);    line-height: 45px;
        }
        .hero-desc {
            font-size: 1.45rem;
            color: var(--text-light);
        }
        #hero img {
              border-radius: 28px;
    box-shadow: var(--glow);
    border: 1px solid var(--border);
    margin-top: 80px;
    height: 600px;    object-fit: cover;
        }

        /* Section Common */
        section { padding: 50px 0; position: relative; z-index: 2; }
        .section-title {
            font-size: 3.5rem;    margin-bottom: 15px;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            width: 160px;
            height: 6px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
        }
        .section-desc {
            font-size: 1.35rem;
            color: var(--text-light);
            max-width: 900px;
            margin: 2rem auto 0;
        }

        /* Horizontal Timeline (Desktop) / Vertical (Mobile) */
        .horizontal-timeline {
            position: relative;
            margin: 0 auto;
        }
        .horizontal-timeline::before {
            content: '';
            position: absolute;
               top: 14%;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 3px;
            box-shadow: var(--glow);
            z-index: 1;
            transform: translateY(-50%);
        }
        .timeline-item {
            position: relative;
            text-align: center;
            padding: 0 20px;
        }
        .timeline-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: black;
            box-shadow: var(--glow);
            z-index: 2;
            position: relative;
        }
        .timeline-content {
            background: var(--bg-card);
            padding: 2rem;
            border-radius: 24px;
            border: 1px solid var(--border);
            box-shadow: var(--glow);
            transition: all 0.5s;
        }
        .timeline-content:hover {
            transform: translateY(-15px);
            box-shadow: 0 0 60px rgba(0,194,255,0.8);
        }
        .timeline-content h4 {
            color: var(--accent);
                font-size: 20px;
            margin-bottom: 1rem;
        }

        /* Mobile Adjustments */
        @media (max-width: 992px) {
          #about img{margin-top: 30px;}
          #hero{padding-top: 100px!important;}
          .section-title {
    font-size: 2rem;}
          .logo {
    font-size: 25px;}
            .horizontal-timeline::before {
                top: 45px;
                left: 50%;
                width: 6px;
                height: calc(100% - 90px);
                transform: translateX(-50%);
            }
            .timeline-item {
                text-align: center;
                     padding: 0px 20px 0px;
            }
            .timeline-icon {
                position: relative;
                top:-20px;
                left: 50%;
                transform: translateX(-50%);
            }
            .timeline-content {
                margin-top: 20px;
            }
            .hero-title { font-size: 2.8rem; }
            .hero-subtitle { font-size: 2rem; }
        }

        /* Services */
        .service-img {
            height: 280px;
            overflow: hidden;
            border-radius: 24px 24px 0 0;
        }
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        .glass:hover .service-img img {
            transform: scale(1.2);
        }

        /* Contact */
        .form-control {
            background: rgba(255,255,255,0.06);
            border: 1px solid var(--border);
            border-radius: 16px;
            color: white;
            padding: 1.3rem;
            font-size: 1.05rem;
        }
        .form-control:focus {
    background: rgba(255, 255, 255, 0.06);}
        .form-control::placeholder {
            color: rgba(255,255,255,0.6);
        }
        .btn-submit {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            color: black;
            padding: 1.3rem 4rem;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: var(--glow);
            transition: all 0.5s;
        }
        .btn-submit:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,194,255,0.6);
        }

  footer {
            background: rgba(5, 10, 30, 0.95);
            color: #a8d0ff;
            padding: 4rem 0 0.5rem;
            border-top: 1px solid rgba(0, 194, 255, 0.45);
            font-family: 'Inter', sans-serif;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }
        .footer-text {
            margin-bottom: 2rem;
            font-size: 1rem;
            opacity: 0.9;
        }
        .social-links {
            margin-bottom: 2rem;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            margin: 0 10px;
            background: rgba(0, 194, 255, 0.2);
            color: #00c2ff;
            font-size: 1.5rem;
            border-radius: 50%;
            transition: all 0.4s ease;
            box-shadow: 0 0 20px rgba(0, 194, 255, 0.3);
            text-decoration: none;
        }
        .social-links a:hover {
            background: #00c2ff;
            color: #000;
            transform: translateY(-8px);
            box-shadow: 0 0 40px rgba(0, 194, 255, 0.6);
        }
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0, 194, 255, 0.2);
        }
        @media (max-width: 576px) {
            .social-links a {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
                margin: 0 8px;
            }
        }

        /* Scroll to Top Button */
        #scrollTopBtn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: black;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--glow);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }
        #scrollTopBtn.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        #scrollTopBtn:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 50px rgba(0,194,255,0.8);
        }

        /* Mobile Responsive Fixes - Add this to your existing <style> tag */
/* This ensures no left/right space (padding/margin) on small screens */
/* Targets screens up to 992px (Bootstrap lg breakpoint and below) */

@media (max-width: 992px) {
    /* Remove container padding on mobile */
    .container {
        padding: 0 !important;
        max-width: 100% !important;
    }

    /* Remove any horizontal padding from sections */
    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Ensure rows and columns take full width */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Fix horizontal timeline line spacing on mobile */
    .horizontal-timeline::before {
                left: 92% !important;
        width: 6px !important;
        height: calc(100% - 90px) !important;
        transform: translateX(-50%) !important;
    }

    /* Adjust section padding for better mobile view */
    section {
        padding: 80px 15px !important;
    }

    /* Hero section full width */
    #hero {
        padding-top: 100px !important;
    }

    /* Contact grid full width */
    .contact-grid {
        margin: 0 !important;
    }

    /* Footer full width */
    footer {
            padding: 3rem 10px 5px 10px !important;
    }

    /* Scroll to top button - adjust position on small screens */
    #scrollTopBtn {
        right: 15px;
        bottom: 15px;
    }

    /* Ensure images don't overflow */
    img.img-fluid {
        max-width: 100%;
        height: 300px;
    }

    /* Remove any extra margins on headings/text */
    .hero-title, .hero-subtitle, .hero-desc, .section-title, .section-desc {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Timeline content full width on mobile */
    .timeline-content {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }
    .navbar {margin-left: 15px; margin-right: 15px;}
}

/* Extra small devices (phones) - even tighter */
@media (max-width: 576px) {
    .container {
        padding: 0 !important;
    }

    [class*="col-"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    section {
               padding: 30px 10px !important;
    }


    .hero-subtitle {
        font-size: 2rem !important;
    }

    .section-title {
               font-size: 30px;
    }

    #scrollTopBtn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        right: 10px;
        bottom: 10px;
    }
}
textarea.form-control {
    /* min-height: 40px; */
       height: 69px;
}