


        /* Hero Section */
        .hero {
            text-align: center;
            padding: 3rem 0;
            color: white;
            height: 400px;
            background:  linear-gradient(135deg, #45c0c7 0%, #050f94 100%) !important;
        }
        a:hover {
        color: #001f5a;
        text-decoration: none;
      }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            margin-top: 5rem;
        }

        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Content */
        .main-content {
            background: white;
            margin: 2rem 0;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        /* Locations Section */
        .locations-section {
            padding: 3rem 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 3rem;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .location-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.1);
        }

        .location-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .location-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1.5rem;
        }

        .location-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #45c0c7 0%, #4b6ea2 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .location-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2c3e50;
        }

        .location-address {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .location-phone {
            color: #66acea;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .location-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #45c0c7 0%, #4b6ea2 100%);
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .location-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        /* Contact Form Section */
        .contact-form-section {
            padding: 3rem 0;
            background: white;
        }

        .form-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .form-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 3rem;
        }

        .contact-form {
            display: grid;
            gap: 2rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .form-group {
            position: relative;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-input {
            width: 100%;
            padding: 1.2rem 1.5rem;
            border: 2px solid #e1e8ed;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8f9ff;
        }

        .form-input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            background: white;
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }

        .submit-btn {
            background:  linear-gradient(45deg, #45c0c7 0%, #4b6ea2 100%);
            color: white;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            justify-self: center;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Success Message */
        .success-message {
            background: linear-gradient(45deg, #56ab2f, #a8e6cf);
            color: white;
            padding: 1rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 600;
            display: none;
        }

        .success-message.show {
            display: block;
        }

        

        /* Responsive Design */
        @media (max-width: 768px) {
           
            .hero h1 {
                font-size: 2rem;
            }

            .locations-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
            }

            .footer-links {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .location-card {
            animation: slideInUp 0.6s ease forwards;
        }

        .location-card:nth-child(1) { animation-delay: 0.1s; }
        .location-card:nth-child(2) { animation-delay: 0.2s; }
        .location-card:nth-child(3) { animation-delay: 0.3s; }
        .location-card:nth-child(4) { animation-delay: 0.4s; }
        .location-card:nth-child(5) { animation-delay: 0.5s; }
        .location-card:nth-child(6) { animation-delay: 0.6s; }
        .location-card:nth-child(7) { animation-delay: 0.7s; }
        .location-card:nth-child(8) { animation-delay: 0.8s; }
        .location-card:nth-child(9) { animation-delay: 0.9s; }
        .location-card:nth-child(10) { animation-delay: 1.0s; }