:root {
            --dark-bg: #0c0e15;
            --darker-bg: #080a10;
            --card-bg: #151a25;
            --primary: #1a56db;
            --primary-light: #2e6bf0;
            --accent: #ff6b00;
            --accent-light: #ff8a3d;
            --text: #e0e6f0;
            --text-light: #a0a8bd;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .text-gradient {
            background: linear-gradient(90deg, var(--primary-light), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Navigation */
        .navbar {
            background: rgba(8, 10, 16, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            border-bottom: 1px solid rgba(64, 70, 100, 0.2);
            transition: all 0.4s ease;
        }
        
        .navbar-brand {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--text) !important;
        }
        
        .navbar-brand span {
            color: var(--primary-light);
        }
        
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-light);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: white !important;
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(26, 86, 219, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 86, 219, 0.4);
        }
        
        .btn-accent {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
        }
        
        .btn-accent:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(26, 86, 219, 0.15), transparent 30%), 
                        radial-gradient(circle at bottom left, rgba(255, 107, 0, 0.15), transparent 30%),
                        var(--dark-bg);
            z-index: -2;
        }
        
        .hero-content {
            z-index: 1;
        }
        
        .hero-title {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 40px;
            max-width: 700px;
        }
        
        .hero-highlight {
            background: rgba(26, 86, 219, 0.2);
            padding: 5px 15px;
            border-radius: 30px;
            display: inline-block;
            margin-bottom: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--primary-light);
            animation: pulse 2s infinite;
        }
        
        .hero-image {
            position: relative;
            animation: float 6s ease-in-out infinite;
        }
        
        .hero-image:before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary), transparent);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
            filter: blur(80px);
            opacity: 0.5;
        }

        /* Success Page */
        .success-subtitle {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 40px;
            width: 100%;
        }
        
        /* Sections */

        .section-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(26, 86, 219, 0.15), transparent 30%), radial-gradient(circle at bottom left, rgba(255, 107, 0, 0.15), transparent 30%), var(--dark-bg);
            z-index: -2;
        }
        .section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 60px;
            text-align: center;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .section-title p {
            color: var(--text-light);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* About */
        .about-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(64, 70, 100, 0.2);
            transition: all 0.4s ease;
        }
        
        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(26, 86, 219, 0.2);
        }
        
        .about-icon {
            width: 70px;
            height: 70px;
            border-radius: 15px;
            background: rgba(26, 86, 219, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 30px;
            color: var(--primary-light);
        }
        .logo-img {
            width: auto;
            height: 85px;
            align-items: center;
            justify-content: center;
        }
        .logo-bg{
            width: 100%;
            height: 70px;
            background: rgb(35 43 77);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-light);
        }
        /* Products */
        .product-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(64, 70, 100, 0.2);
            transition: all 0.4s ease;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(26, 86, 219, 0.2);
            border-color: rgba(26, 86, 219, 0.3);
        }
        
        .product-img {
            height: 220px;
            background: linear-gradient(45deg, #1a1e2e, #2a3250);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }
        
        .product-img i {
            font-size: 4rem;
            color: var(--primary-light);
            opacity: 0.8;
        }
        
        .product-content {
            padding: 30px;
        }
        
        /* Timeline */
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
            border-radius: 10px;
        }
        
        .timeline-item {
            padding: 10px 10px;
            position: relative;
            width: 50%;
            animation: fadeIn 0.6s ease-out;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
            animation-delay: 0.2s;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
            animation-delay: 0.4s;
        }
        
        .timeline-content {
            padding: 30px;
            background: var(--card-bg);
            position: relative;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(64, 70, 100, 0.2);
        }
        
        .timeline-year {
            position: absolute;
            top: 20px;
            margin:0px 20px;
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-light), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .timeline-item:nth-child(odd) .timeline-year {
            right: -70px;
        }
        
        .timeline-item:nth-child(even) .timeline-year {
            left: -70px;
        }
        
        /* Contact Section with Map */
        .contact-section {
            padding: 100px 0;
            position: relative;
        }
        
        .contact-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(64, 70, 100, 0.2);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background: rgba(26, 86, 219, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary-light);
            margin-bottom: 20px;
        }
        
        .form-control {
            background: rgba(20, 25, 40, 0.5);
            border: 1px solid rgba(64, 70, 100, 0.3);
            color: var(--text);
            padding: 12px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            background: rgba(25, 30, 45, 0.7);
            border-color: var(--primary-light);
            box-shadow: 0 0 0 0.25rem rgba(26, 86, 219, 0.25);
            color: white;
        }
        
        /* Map Container */
        .map-container {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(64, 70, 100, 0.2);
            position: relative;
        }
        
        #company-map {
            width: 100%;
            height: 400px;
            border-radius: 15px;
            border: none;
        }
        
        .map-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(21, 26, 37, 0.9);
            padding: 15px 25px;
            border-radius: 10px;
            max-width: 300px;
            z-index: 1000;
            border: 1px solid rgba(64, 70, 100, 0.3);
        }
        
        .map-overlay h5 {
            color: var(--primary-light);
            margin-bottom: 5px;
        }
        
        .map-overlay p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        
        /* Footer */
        footer {
            background: var(--darker-bg);
            padding: 80px 0 30px;
            position: relative;
        }
        
        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--text);
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: var(--primary-light);
        }
        
        .footer-links h5 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            background: var(--card-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid rgba(64, 70, 100, 0.2);
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(26, 86, 219, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(26, 86, 219, 0); }
            100% { box-shadow: 0 0 0 0 rgba(26, 86, 219, 0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-year {
                left: -70px !important;
                right: auto !important;
            }
            
            #company-map {
                height: 300px;
            }
            .timeline-year {
            position: fixed;
            top: 0px;
            margin:0px 37px;
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-light), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        }
        
        @media (max-width: 767px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .map-overlay {
                position: relative;
                bottom: auto;
                left: auto;
                margin: 15px;
                max-width: 100%;
            }
            .timeline-year {
            position: fixed;
            top: 0px;
            margin:0px 36px;
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-light), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        }

         @media (max-width: 425px) {
        .timeline-year {
            position: fixed;
            top: 0px;
            margin:0px 36px;
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-light), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-highlight {
            margin-bottom: 20px;
            margin-top: 110px;
            font-size: 0.8rem;
        }
        .logo-img {
            width: auto;
            height: 70px;
            align-items: center;
            justify-content: center;
        }
         .footer-logo img {
            width: auto;
            height: 60px;
            margin-bottom: 60px;
        }
        .contact-card{
            padding: 20px 12px;
        }
        
        }


        

    .form-control::placeholder {
                    color: rgb(114, 114, 114);
                    opacity: 1;
                    /* Firefox */
                }
        
    .form-control::-ms-input-placeholder {
                    /* Edge 12 -18 */
                    color: rgb(134, 134, 134);
                }
.btn-send{
    padding:4px 15px;
}
