:root {
            --primary-color: #0d4c92;
            --secondary-color: #00a8cc;
            --accent-color: #ff7b54;
            --light-color: #f5f7fa;
            --dark-color: #1a1a2e;
            --success-color: #2ecc71;
            --warning-color: #f39c12;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            max-width: 100%;
            overflow-x: hidden;
            width: 100%;

        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
            position: relative;
            background-color: #fff;
            /* Ensure white background */
            line-height: 1.6;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--dark-color);
        }

        /* Header & Navigation */
        .navbar {
            background-color: rgb(116, 5, 5) !important;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            padding: 0;
            transition: all 0.4s ease;
            z-index: 1000;
            min-height: 80px;
        }

        /* Logo and Brand Styling */
        .navbar-brand {
            display: flex;
            align-items: center;
            padding: 5px 0;
            text-decoration: none;
            white-space: nowrap;
            z-index: 2;
            position: relative;
            margin-right: 0;
            height: 80px;
            /* Match navbar height */
        }

        .navbar-brand .logo-img {
            height: 150px !important;
            /* Reasonable logo size */
            width: auto;
            max-width: 300px;
            /* Prevent logo from being too wide */
            object-fit: contain;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
        }

        .logo-img:hover {
            transform: scale(1.05);
        }

        /* Navbar Collapse Container */
        .container.navbar-collapse {
            display: flex !important;
            justify-content: center;
            align-items: center;
            flex-grow: 1;
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 100%;
            z-index: 1;
        }

        /* Navigation Links Styling - Centered */
        .navbar-collapse .navbar-nav {
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            margin: 0 auto;
            padding: 0;
            gap: 3px;
            justify-content: center;
            width: auto;
        }

        .nav-item {
            display: inline-block;
            flex-shrink: 0;
        }

        .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 10px 15px !important;
            border-radius: 30px;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
            font-size: 0.95rem;
            margin: 0 0px;
        }

        .nav-link:hover {
            color: rgb(211, 161, 24) !important;
            background-color: var(--primary-color);
            transform: translateY(-2px);
        }

        .nav-link.active {
            color: white !important;
            background-color: var(--primary-color);
            font-weight: 600;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            width: 70%;
            height: 3px;
            background: var(--accent-color);
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* Apply Now Button */
        .nav-button {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            margin-left: 15px;
        }

        .nav-button .btn-primary-custom {
            background-color: var(--primary-color);
            color: rgb(255, 255, 255);
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            white-space: nowrap;
            text-decoration: none;
            display: inline-block;
        }

        .nav-button .btn-primary-custom:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            color: white;
        }

        /* Navbar Toggler */
        .navbar-toggler {
            border: none;
            padding: 8px 10px;
            font-size: 1.2rem;
            color: var(--primary-color);
            background: none;
            z-index: 3;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            display: none;
        }

        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }

        /* Responsive Design */
        @media (min-width: 992px) {
            .navbar-expand-lg .navbar-toggler {
                display: none;
            }

            /* Adjust for larger screens */
            .logo-img {
                height: 75px !important;
            }

            .nav-link {
                padding: 12px 18px !important;
                font-size: 1rem;
            }
        }

        @media (max-width: 1400px) {
            .nav-link {
                padding: 10px 14px !important;
                font-size: 0.9rem;
            }

            .logo-img {
                height: 65px !important;
            }
        }

        @media (max-width: 1200px) {
            .nav-link {
                padding: 9px 12px !important;
                font-size: 0.85rem;
            }

            .logo-img {
                height: 60px !important;
            }

            .btn-primary-custom {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 991px) {
            .navbar-toggler {
                display: block;
            }

            .navbar-collapse {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background-color: rgb(116, 5, 5);
                padding: 20px;
                border-radius: 0 0 10px 10px;
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
                z-index: 1000;
                display: none !important;
                height: auto;
                min-height: auto;
            }

            .navbar-collapse.show {
                display: flex !important;
                flex-direction: column;
            }

            .navbar-nav {
                flex-direction: column;
                width: 100%;
                gap: 10px;
                margin: 0 0 15px 0;
            }

            .nav-item {
                width: 100%;
            }

            .nav-link {
                display: block;
                text-align: center;
                margin: 5px 0;
                padding: 12px 15px !important;
                font-size: 1rem;
            }

            .nav-link.active::after {
                display: none;
            }

            .nav-button {
                position: static;
                transform: none;
                margin: 10px 0 0 0;
                width: 100%;
                text-align: center;
            }

            .btn-primary-custom {
                width: 100%;
                max-width: 250px;
                padding: 12px 25px;
                font-size: 1rem;
            }

            .navbar-brand {
                height: 70px;
            }

            .logo-img {
                height: 55px !important;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                min-height: 70px;
            }

            .navbar-brand {
                height: 60px;
            }

            .logo-img {
                height: 50px !important;
            }

            .navbar-collapse {
                top: 70px;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 10px;
            }

            .navbar {
                min-height: 65px;
            }

            .navbar-brand {
                height: 55px;
            }

            .logo-img {
                height: 45px !important;
            }

            .navbar-collapse {
                top: 65px;
            }
        }

        /* Ensure logo doesn't overlap on very small screens */
        @media (max-width: 400px) {
            .navbar-brand {
                max-width: 200px;
            }

            .logo-img {
                max-width: 100%;
                height: auto !important;
                max-height: 45px;
            }
        }

        /* Hero Section - Redesigned */
        .hero-section {
            background: linear-gradient(135deg,
                    rgba(116, 5, 5, 0.452) 0%,
                    rgba(116, 5, 5, 0.466) 50%,
                    rgba(0, 0, 0, 0.9) 100%),
                url('/img/banner.jpg');
            background-size: cover;
            background-position: center;
            /* background-attachment: fixed; */
            color: white;
            padding: 180px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23f5f7fa"></path></svg>');
            background-size: cover;
            background-repeat: no-repeat;
        }

        .hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            color: #ca0101;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow:         -1px -1px 0 #ffffff,
        1px -1px 0 #ffffff,
        -1px 1px 0 #ffffff,
        1px 1px 0 #ffffff,
        0 0 10px rgba(0, 0, 0, 0.7); /* Optional glow */;
            
        }

        .hero-highlight {
            color: #ffcf5e;
            position: relative;
            display: inline-block;
            text-shadow: 2px 2px 8px rgb(0, 0, 0);
        }

        .hero-highlight::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 10px;
            background-color: rgba(255, 123, 84, 0.3);
            bottom: 5px;
            left: 0;
            z-index: -1;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            max-width: 600px;
            color: #ffffff;
            text-shadow: 2px 2px 8px rgb(0, 0, 0);
            /* opacity: 0.9; */
            line-height: 1.8;
            font-weight: 900;
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }

        .stat-box {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            min-width: 140px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s;
        }

        .stat-box:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.25);
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffd166;
            margin-bottom: 5px;
        }

        .stat-text {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Enquiry Card */
        .enquiry-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            margin-bottom: 20px;
        }

        .enquiry-header {
            background: linear-gradient(135deg, #0d4c92, #00a8cc);
            color: white;
            padding: 25px;
            border-bottom: 4px solid #ffd166;
        }

        .enquiry-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.8rem;
        }

        .enquiry-body {
            padding: 30px;
        }

        .form-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .form-control,
        .form-select {
            padding: 14px 20px;
            border-radius: 10px;
            border: 2px solid #e0e0e0;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: #0d4c92;
            box-shadow: 0 0 0 0.25rem rgba(13, 76, 146, 0.25);
        }

        .input-group {
            border-radius: 10px;
            overflow: hidden;
        }

        .input-group-text {
            background-color: #f8f9fa;
            border: 2px solid #e0e0e0;
            border-right: none;
            color: #666;
            font-weight: 500;
            min-width: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .input-group .form-control {
            border-left: none;
            border-radius: 0 10px 10px 0;
        }

        .flag {
            font-size: 1.2rem;
            margin-right: 5px;
        }

        .btn-submit {
            background: linear-gradient(135deg, #0d4c92, #00a8cc);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 8px 20px rgba(13, 76, 146, 0.3);
        }

        .btn-submit:hover {
            background: linear-gradient(135deg, #00a8cc, #0d4c92);
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(13, 76, 146, 0.4);
            color: white;
        }

        /* Enquiry Footer */
        .enquiry-footer {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-icon {
            width: 50px;
            height: 50px;
            background: #ffd166;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #333;
            font-size: 1.5rem;
        }

        .footer-text {
            color: #ffd166;
            font-weight: 700;
        }

        .footer-text h5 {
            color: #fff
        }

        /* Responsive Design for Hero Section */
        @media (max-width: 1199px) {
            .hero-title {
                font-size: 2.8rem;
            }

            .stat-box {
                min-width: 120px;
                padding: 15px;
            }

            .stat-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 991px) {
            .hero-section {
                padding: 150px 0 80px;
                background-attachment: scroll;
            }

            .hero-title {
                font-size: 2.5rem;
                text-align: center;
            }

            .hero-subtitle {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-stats {
                justify-content: center;
            }

            .enquiry-card {
                margin-top: 40px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .stat-box {
                min-width: 110px;
                padding: 12px;
            }

            .stat-number {
                font-size: 1.8rem;
            }

            .enquiry-header {
                padding: 20px;
            }

            .enquiry-body {
                padding: 25px;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                padding: 130px 0 60px;
            }

            .hero-title {
                font-size: 1.9rem;
            }

            .hero-stats {
                gap: 15px;
            }

            .stat-box {
                min-width: 100px;
                padding: 10px;
            }

            .stat-number {
                font-size: 1.6rem;
            }

            .stat-text {
                font-size: 0.8rem;
            }

            .enquiry-card {
                border-radius: 15px;
            }

            .enquiry-header {
                padding: 15px;
            }

            .enquiry-body {
                padding: 20px;
            }

            .form-control,
            .form-select {
                padding: 12px 15px;
                font-size: 0.95rem;
            }

            .btn-submit {
                padding: 14px;
                font-size: 1rem;
            }
        }

        @media (max-width: 375px) {
            .hero-title {
                font-size: 1.7rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-stats {
                flex-direction: column;
                align-items: center;
            }

            .stat-box {
                width: 100%;
                max-width: 200px;
            }
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .section-title {
            color: var(--primary-color);
            font-weight: 800;
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 5px;
        }

        .section-subtitle {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .btn-primary-custom-about{
            background-color: var(--primary-color);
            color: rgb(255, 255, 255);
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            white-space: nowrap;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary-custom-about:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            color: white;
        }

        /* Cards */
        .feature-card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
            height: 100%;
            background-color: white;
            position: relative;
            padding: 30px 25px;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            animation: pulse 2s infinite;
            z-index: -1;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.8);
                opacity: 0.7;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.3;
            }

            100% {
                transform: scale(0.8);
                opacity: 0.7;
            }
        }

        /* University Cards */
        .university-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
            height: 100%;
            background-color: white;
            position: relative;
        }

        .university-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
        }

        .university-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }

        .university-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--accent-color);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.8rem;
        }

        /* Timeline Process */
        .process-timeline {
            position: relative;
            padding: 50px 0;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
            left: 50%;
            transform: translateX(-50%);
            top: 0;
        }

        .timeline-step {
            display: flex;
            align-items: center;
            margin-bottom: 70px;
            position: relative;
        }

        .timeline-step:nth-child(even) {
            flex-direction: row-reverse;
        }

        .step-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            box-shadow: 0 8px 20px rgba(13, 76, 146, 0.3);
        }

        .step-content {
            width: 45%;
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .timeline-step:nth-child(odd) .step-content {
            margin-right: auto;
        }

        .timeline-step:nth-child(even) .step-content {
            margin-left: auto;
        }

        /* Comparison Table */
        .comparison-table {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        }

        .table-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            font-weight: 600;
        }

        .table-row-highlight {
            background-color: rgba(13, 76, 146, 0.05);
        }

        /* Testimonials */
        .testimonial-slider {
            padding: 50px 0;
        }

        .testimonial-card {
            background-color: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            margin: 20px;
            position: relative;
        }

        .testimonial-card::before {
            content: "\201C";
            position: absolute;
            top: -20px;
            left: 30px;
            font-size: 5rem;
            color: var(--secondary-color);
            font-family: Georgia, serif;
            opacity: 0.3;
        }

        .student-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* FAQ Section */
        .faq-accordion .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .faq-accordion .accordion-button {
            background-color: white;
            color: var(--dark-color);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 20px 25px;
            border: none;
            box-shadow: none;
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: white;
        }

        .faq-accordion .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }

        .faq-accordion .accordion-body {
            padding: 20px 25px;
            background-color: var(--light-color);
        }

        /* Contact Form */
        .contact-form {
            background-color: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .form-control,
        .form-select {
            padding: 12px 20px;
            border-radius: 10px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
            transition: all 0.3s;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(13, 76, 146, 0.25);
        }

        /* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

/* Footer Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
}

.footer-logo {
    height: 100px;
    width: auto;
    max-width: 300px;
    margin-bottom: 20px;
    /* filter: brightness(0) invert(1); */
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.footer-logo-text {
    max-width: 350px;
}

/* Footer Titles */
.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-size: 1.3rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
}

/* Footer Links */
.footer-links a {
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 8px;
    transform: translateX(5px);
}

/* Contact Items */
.contact-item {
    color: #bbb;
    margin-bottom: 15px;
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 0, 0, 0.568);
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-icons a:nth-child(1):hover { background-color: #1877F2; } /* Facebook */
.social-icons a:nth-child(2):hover { background-color: #1DA1F2; } /* Twitter */
.social-icons a:nth-child(3):hover { background-color: #E4405F; } /* Instagram */
.social-icons a:nth-child(4):hover { background-color: #0077B5; } /* LinkedIn */
.social-icons a:nth-child(5):hover { background-color: #FF0000; } /* YouTube */
.social-icons a:nth-child(6):hover { background-color: #25D366; } /* WhatsApp */

/* Copyright */
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 50px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.copyright a {
    color: #ffd166;
    text-decoration: none;
    margin: 0 5px;
    transition: all 0.3s;
}

.copyright a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-logo {
        height: 80px;
        max-width: 250px;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-logo {
        height: 70px;
        max-width: 220px;
        margin: 0 auto 20px;
    }
    
    .footer-logo-section {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo-text {
        max-width: 100%;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-logo {
        height: 60px;
        max-width: 200px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .copyright {
        font-size: 0.8rem;
        padding-top: 20px;
    }
    
    .social-icons a {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .footer-logo {
        height: 50px;
        max-width: 180px;
    }
    
    .copyright {
        font-size: 0.75rem;
    }
}
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 1000;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(13, 76, 146, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(13, 76, 146, 0.4);
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            z-index: -1;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(13, 76, 146, 0.1), rgba(0, 168, 204, 0.1));
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }

            .process-timeline::before {
                left: 30px;
            }

            .timeline-step,
            .timeline-step:nth-child(even) {
                flex-direction: row;
            }

            .step-icon {
                left: 30px;
            }

            .step-content {
                width: calc(100% - 100px);
                margin-left: 100px !important;
            }

            .stat-box {
                min-width: 120px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-section {
                padding: 150px 0 100px;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: flex-start;
            }

            .hero-stats {
                justify-content: center;
            }

            .stat-box {
                min-width: 140px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .step-content {
                padding: 20px;
            }

            .contact-form {
                padding: 25px;
            }
        }

        /* WhatsApp Button */
        .whatsapp-toggle {
            position: fixed;
            bottom: 120px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #25D366;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            z-index: 1000;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            opacity: 1;
            visibility: visible;
        }

        .whatsapp-toggle:hover {
            background-color: #128C7E;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-toggle a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }

        /* Call Button */
        .call-toggle {
            position: fixed;
            bottom: 190px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #007bff;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            z-index: 1000;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
            transition: all 0.3s ease;
            opacity: 1;
            visibility: visible;
        }

        .call-toggle:hover {
            background-color: #0056b3;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 12px 30px rgba(0, 123, 255, 0.4);
        }

        .call-toggle a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }

        /* Back to Top Button - Updated positioning */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 1000;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(13, 76, 146, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(13, 76, 146, 0.4);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {

            .whatsapp-toggle,
            .call-toggle,
            .back-to-top {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                right: 20px;
            }

            .whatsapp-toggle {
                bottom: 110px;
            }

            .call-toggle {
                bottom: 170px;
            }

            .back-to-top {
                bottom: 20px;
            }
        }

        @media (max-width: 576px) {

            .whatsapp-toggle,
            .call-toggle,
            .back-to-top {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
                right: 15px;
            }

            .whatsapp-toggle {
                bottom: 105px;
            }

            .call-toggle {
                bottom: 160px;
            }

            .back-to-top {
                bottom: 15px;
            }
        }