* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
        }
        
    
        .roboto-<uniquifier> {
          font-family: "Roboto", sans-serif;
          font-optical-sizing: auto; 
          font-weight: <weight>;
          font-style: normal;
          font-variation-settings:
            "wdth" 100;
        }


        /* Navigation Styles */
        .navbar {
            background: rgba(255,255,255,0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 10px 0;
            background: rgba(255,255,255,1) !important;
        }

        .navbar-brand img {
            height: 60px;
            width: auto;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .navbar-brand img {
            height: 60px;
        }

        .social-icons {
            display: flex;
            flex-direction: row;
            gap: 12px;
            align-items: center;
        }

        .social-icons .nav-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #7a0a43 !important;
            color: white !important;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
        }

        .social-icons .nav-link:hover {
            background: #ff5252 !important;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255,107,107,0.4);
            color: white !important;
        }

        /* Hero Section Styles */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%), 
                        url('images/banner-1.jpeg') center/cover no-repeat;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-content { padding: 100px 0; }
        .hero-left h1 {
            font-size: 3.5rem; font-weight: 700; color: #fff;
            line-height: 1.2; margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero-left p { font-size: 1.2rem; color: rgba(255,255,255,0.9); margin-bottom: 30px; line-height: 1.6; font-weight: 300; }
        .courses-btn {
            background: linear-gradient(45deg, #7a0a43, #ff8e8e); border: none;
            padding: 15px 40px; font-size: 1.1rem; font-weight: 600; color: white;
            border-radius: 50px; transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255,107,107,0.4);
            text-decoration: none; display: inline-block;
        }
        .courses-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255,107,107,0.6); color: white !important; }
        .hero-form {
            background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
            padding: 40px; border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.2);
        }
        .form-title { color: #333; font-size: 1.5rem; font-weight: 600; margin-bottom: 25px; text-align: center; }
        .form-control, .form-select {
            border: 2px solid #e9ecef; border-radius: 12px;
            padding: 12px 15px; font-size: 1rem;
            transition: all 0.3s ease; height: calc(3.5rem + 2px); box-shadow: none;
        }
        .form-control:focus, .form-select:focus {
            border-color: #7a0a43; box-shadow: 0 0 0 0.25rem rgba(255,107,107,0.25); background-color: #fff;
        }
        .submit-btn {
            background:#7a0a43; border: none; width: 100%;
            padding: 15px; font-size: 1.1rem; font-weight: 600; color: white;
            border-radius: 12px; transition: all 0.3s ease; height: calc(3.5rem + 2px);
        }
        .submit-btn:hover {
            transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,107,0.4);
            color: white !important; background: linear-gradient(45deg, #ff5252, #ff7a7a);
        }

        /* Why Vision Academy Section */
        .why-vision-section {
            padding: 100px 0; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        .section-subtitle { color: #7a0a43; font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; }
        .section-title { font-size: 2.5rem; font-weight: 700; color: #333; margin-bottom: 30px; line-height: 1.2; }
        .section-description { font-size: 1.1rem; color: #666; line-height: 1.8; margin-bottom: 0; }
        .vision-image { width: 100%; height: 400px; object-fit: cover; border-radius: 5px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

        /* Our Courses Section */
        .courses-section {
            padding: 100px 0;
            background: #fff;
        }

        .courses-subtitle {
            color: #7a0a43;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            text-align: center;
        }

        .courses-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }

        .courses-desc {
            font-size: 1.2rem;
            color: #666;
            text-align: center;
            max-width: 600px;
            margin: 0 auto 80px;
            line-height: 1.6;
        }

        .course-item {
            margin-bottom: 80px;
        }

        .course-image {
            height: 300px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            width: 100%;
        }

        .course-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #333;
            margin: 25px 0 15px;
        }

        .course-desc {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .course-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .course-features li {
            padding: 8px 0;
            color: #555;
            position: relative;
            padding-left: 30px;
        }

        .course-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #7a0a43;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .join-btn {
            background: #7a0a43;
            border: none;
            padding: 12px 35px;
            font-size: 1rem;
            font-weight: 600;
            color: white;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255,107,107,0.3);
            text-decoration: none;
            display: inline-block;
        }

        .join-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(255,107,107,0.4);
            color: white !important;
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .hero-left h1 { font-size: 2.5rem; }
            .hero-form { margin-top: 30px; padding: 30px 25px; }
            .section-title, .courses-title { font-size: 2rem; }
            .vision-image { height: 300px; margin-top: 30px; }
            .course-image { height: 250px; }
        }

        @media (max-width: 767.98px) {
            .hero-left h1 { font-size: 2rem; }
            .hero-content { padding: 60px 0; }
            .social-icons .nav-link { width: 40px; height: 40px; font-size: 0.9rem; }
            .social-icons { gap: 8px; }
            .why-vision-section, .courses-section { padding: 60px 0; }
            .courses-title { font-size: 1.8rem; }
        }
        
        /* Branches Section */
        .branches-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .branches-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #333;
            text-align: center;
            margin-bottom: 15px;
            position: relative;
        }

        .branches-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #7a0a43, #ff8e8e);
            margin: 15px auto 0;
        }

        .branches-subtitle {
            font-size: 1.2rem;
            color: #666;
            text-align: center;
            max-width: 600px;
            margin: 0 auto 80px;
            line-height: 1.6;
        }

        .branch-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .branch-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: #7a0a43;
        }

        .branch-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

        .branch-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #7a0a43, #ff8e8e);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin: 0 auto 25px;
        }

        .branch-name {
            font-size: 1.6rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .center{
            text-align: center;
        }

        .branch-phone {
            font-size: 1.1rem;
            font-weight: 600;
            color: #7a0a43;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .branch-phone:hover {
            color: #ff5252;
            text-decoration: none;
        }

        .branch-email {
            font-size: 1rem;
            color: #666;
            text-decoration: none;
            display: block;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .branch-email:hover {
            color: #7a0a43;
        }

        .branch-address {
            font-size: 0.95rem;
            color: #777;
            line-height: 1.6;
            text-align: center;
        }
        
        /* Common styling for both icons */
    .call-icon {
        position: fixed;
        width: 80px;
        height: 80px;
        /*border-radius: 50%;*/
        text-align: center;
        font-size: 30px;
        /*box-shadow: 2px 2px 3px #999;*/
        z-index: 100;
        color: white; /* Ensure the icon itself is white */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .whatsapp-icon {
        position: fixed;
        width: 75px;
        height: 75px;
        /*border-radius: 50%;*/
        text-align: center;
        font-size: 30px;
        /*box-shadow: 2px 2px 3px #999;*/
        z-index: 100;
        color: white; /* Ensure the icon itself is white */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* WhatsApp specific styling and positioning */
    .whatsapp-icon {
        bottom: 40px; /* Position from bottom */
        right: 15px; /* Position from right */
    }

    /* Call specific styling and positioning */
    .call-icon {
        bottom: 110px; /* Position above the WhatsApp icon (40px + 60px icon height + 10px spacing) */
        right: 15px; /* Position from right */
    }

    /* Adjust the icon alignment within the circle if needed */
    .whatsapp-icon i, .call-icon i {
        margin-top: 0; /* Center the Font Awesome icon within the circle */
    }

        /* Responsive */
        @media (max-width: 991.98px) {
            .branches-section { padding: 80px 0; }
            .branches-title { font-size: 2.2rem; }
            .branch-card { margin-bottom: 30px; padding: 30px 25px; }
        }

        @media (max-width: 767.98px) {
            .branches-section { padding: 60px 0; }
            .branches-title { font-size: 1.8rem; }
            .branch-card { padding: 25px 20px; }
            .branch-name { font-size: 1.4rem; }
        }