
        :root {
            --primary-blue: #136aec;
            --secondary-red: #dc2626;
            --accent-orange: #f97316;
            --dark-blue: #0f172a;
            --light-gray: #f1f5f9;
            --medium-gray: #cbd5e1;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #1e293b;
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        
        /* Custom Buttons */
        .btn-primary {
            background: linear-gradient(135deg, var(--secondary-red), #b91c1c);
            border: none;
            padding: 14px 32px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, #b91c1c, #991b1b);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
        }
        
        .btn-outline-light {
            border: 2px solid white;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-light:hover {
            background: white;
            color: var(--primary-blue) !important;
            transform: translateY(-2px);
        }
        
        /* Animated Gradient Background */
        .gradient-bg {
            background: linear-gradient(135deg, rgb(0 51 197 / 95%), rgb(19 19 19 / 90%));
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* Navbar Styling */
        .navbar {
            background: rgba(255, 255, 255, 0.98) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            padding: 12px 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            padding: 0;
        }
        
        .navbar-brand img {
            height: 50px;
            width: auto;
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-nav {
            align-items: center;
        }
        
        .nav-link {
            font-weight: 500;
            color: #475569 !important;
            margin: 0 12px;
            padding: 8px 16px !important;
            position: relative;
            transition: color 0.3s ease;
            border-radius: 8px;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 16px;
            right: 16px;
            width: calc(100% - 32px);
            height: 2px;
            background: linear-gradient(90deg, var(--secondary-red), var(--accent-orange));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--secondary-red) !important;
            background: rgba(220, 38, 38, 0.05);
        }
        
        .nav-link:hover:after {
            transform: scaleX(1);
        }
        
        .nav-link.active {
            color: var(--secondary-red) !important;
        }
        
        .navbar-cta {
            margin-left: 20px;
        }
        
        .btn-nav-cta {
            background: linear-gradient(135deg, var(--secondary-red), var(--accent-orange));
            color: white !important;
            border: none;
            padding: 10px 24px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
        }
        
        .btn-nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
        }
        
        @media (max-width: 991px) {
            .navbar-cta {
                margin-left: 0;
                margin-top: 10px;
            }
            
            .navbar-brand img {
                height: 40px;
            }
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }
        
        .hero-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
           background: linear-gradient(135deg, rgb(0 51 197 / 95%), rgb(19 19 19 / 90%));
            z-index: 1;
        }
        
        .hero-section:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 100 0 L 0 0 0 100' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
            background-size: 100px 100px;
            background-repeat: repeat;
            z-index: 2;
        }
        
        .hero-content {
            position: relative;
            z-index: 3;
        }
        
        .hero-section h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 1s ease;
        }
        
        .hero-section .lead {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.95);
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        .hero-buttons {
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Floating Animation */
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        /* Section Styling */
        .section-padding {
            padding: 100px 0;
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            margin-bottom: 50px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-red), var(--accent-orange));
            border-radius: 2px;
        }
        
        /* Service Cards */
        .service-card {
            border: none;
            border-radius: 20px;
            background: white;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-red), var(--accent-orange));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(38, 81, 220, 0.15);
        }
        
        .service-card:hover:before {
            transform: scaleX(1);
        }
        
        .service-icon {
            font-size: 3.5rem;
            background: linear-gradient(135deg, var(--secondary-red), var(--accent-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            transition: transform 0.4s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        /* Value Cards */
        .value-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 4px solid var(--secondary-red);
            height: 100%;
        }
        
        .value-card:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(38, 81, 220, 0.15);
        }
        
        .value-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--secondary-red), var(--accent-orange));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, rgb(0 51 197 / 95%), rgb(19 19 19 / 90%));
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .stats-section:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 50%;
            height: 200%;
            background: rgba(255, 255, 255, 0.05);
            transform: rotate(15deg);
        }
        
        .stat-item {
            text-align: center;
            padding: 30px;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: rgb(255, 255, 255);
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Vision Mission Cards */
        .vision-mission-card {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(220, 38, 38, 0.05));
            border: 2px solid var(--medium-gray);
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .vision-mission-card:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(41, 38, 220, 0.1), transparent);
            transition: all 0.6s ease;
        }
        
        .vision-mission-card:hover {
            border-color: var(--secondary-red);
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(38, 81, 220, 0.2);
        }
        
        .vision-mission-card:hover:before {
            top: -25%;
            right: -25%;
        }
        
        .vision-mission-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-red), var(--accent-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            margin: 0 auto 25px;
            position: relative;
            z-index: 1;
        }
        
        /* Branch Cards */
        .branch-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
        }
        
        .branch-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(220, 38, 38, 0.8)); */
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }
        
        .branch-card:hover:before {
            opacity: 1;
        }
        
        .branch-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 60px rgba(220, 38, 38, 0.2);
        }
        
        .branch-card img {
            transition: transform 0.4s ease;
        }
        
        .branch-card:hover img {
            transform: scale(1.1);
        }
        
        .branch-card .card-body {
            position: relative;
            z-index: 2;
        }
        
        /* Contact Section */
        .contact-info-box {
               background: linear-gradient(135deg, rgb(0 51 197 / 95%), rgb(19 19 19 / 90%));
            color: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(38, 81, 220, 0.3);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .contact-info-box:before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .contact-item {
            display: flex;
            align-items: start;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }
        
        .contact-icon-wrapper {
            width: 50px;
            height: 50px;
            background: var(--secondary-red);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            margin-bottom: 8px;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--);
        }
        
        /* Footer */
        .footer {
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: white;
            padding: 80px 0 30px;
            position: relative;
        }
        
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-red), var(--accent-orange), var(--primary-blue));
        }
        
        .footer h5 {
            color: white;
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer a:hover {
            color: var(--accent-orange);
            transform: translateX(5px);
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--secondary-red);
            transform: translateY(-3px) !important;
        }
        
        /* Pulse Animation */
        .pulse {
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        /* Badge Styling */
        .custom-badge {
            background: linear-gradient(135deg, var(--secondary-red), var(--accent-orange));
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            display: inline-block;
            margin: 5px;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
            transition: all 0.3s ease;
        }
        
        .custom-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .hero-section {
                min-height: auto;
                padding: 80px 0;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            /* Fix contact info overflow */
            .contact-item {
                flex-direction: column;
            }
            
            .contact-item div {
                word-break: break-word;
                overflow-wrap: break-word;
            }
            
            .contact-info-box {
                padding: 30px 20px;
            }
            
            /* Fix tracking input size */
            .input-group-lg .form-control {
                padding: 15px 20px !important;
                font-size: 0.9rem;
            }
            
            .input-group-lg .btn {
                padding: 15px 20px !important;
                font-size: 0.9rem;
            }
            
            /* Fix service icon background width */
            .value-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            
            .card-body .d-flex > div[style*="width: 60px"] {
                width: 50px !important;
                height: 50px !important;
                min-width: 50px;
            }
            
            .card-body .d-flex > div[style*="width: 60px"] i {
                font-size: 1.3rem !important;
            }
            
            /* Contact info responsive */
            .contact-item {
                flex-direction: column !important;
                align-items: flex-start !important;
            }
            
            .contact-item div {
                width: 100%;
                word-break: break-word;
                overflow-wrap: break-word;
            }
            
            .contact-item p {
                word-break: break-all;
            }
        }
        
        /* Contact Item Styles */
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .contact-item > div:last-child {
            flex: 1;
            min-width: 0;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        
        .contact-item p {
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            word-break: break-word;
        }
        
        .contact-item a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            word-break: break-all;
        }
        
        .contact-item a:hover {
            color: #fff;
            text-decoration: underline;
        }
        
        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-red), var(--accent-orange));
            z-index: 9999;
            transition: width 0.2s ease;
        }
  