/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
    background: #f36f21;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #e55a0e;
}

/* Header/Navigation Styles */
#header {
    background: linear-gradient(135deg, #b4babd 0%, #9ca4a7 100%);
    height: 80px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700 !important;
    font-size: 20px !important;
    letter-spacing: -0.5px;
}

.navbar-nav {
    margin-right: 3rem;
}

.navbar-nav .nav-item {
    margin-right: 2rem;
}

.navbar-light .navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 16px !important;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #f36f21 !important;
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #f36f21;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ff9a56 0%, #ff7c39 100%);
    padding: 140px 0 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(243, 111, 33, 0.1);
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact-form-header {
    margin-bottom: 30px;
    text-align: center;
}

.contact-form-header h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.contact-form-header p {
    color: #718096;
    font-size: 1rem;
}

/* Form Group Styles */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.3px;
    display: block;
    height: 22px;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 20px 15px 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: #2d3748;
    height: auto;
}

.form-control:focus {
    border-color: #f36f21;
    box-shadow: 0 0 0 3px rgba(243, 111, 33, 0.1);
    background: white;
    outline: none;
}

.form-control::placeholder {
    color: #a0aec0;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    padding-top: 15px;
}

/* Special positioning for textarea icons */
textarea.form-control + .form-icon {
    top: 55px;
}

/* Form Icons */
.form-icon {
    position: absolute;
    left: 18px;
    top: 2.9rem;
    color: #a0aec0;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.form-group.focused .form-icon,
.form-control:focus + .form-icon {
    color: #f36f21;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, #f36f21 0%, #e55a0e 100%);
    border: none;
    padding: 15px 10px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 111, 33, 0.3);
    width: 30%;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 111, 33, 0.4);
    background: linear-gradient(135deg, #e55a0e 0%, #d4530c 100%);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    padding: 40px 30px;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info-header h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.contact-info-header p {
    color: #718096;
    font-size: 1rem;
}

/* Contact Cards */
.contact-info-cards {
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(243, 111, 33, 0.1);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #f36f21 0%, #e55a0e 100%);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-card:hover::before {
    width: 6px;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f36f21 0%, #e55a0e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(243, 111, 33, 0.3);
}

.contact-card-icon i {
    color: white;
    font-size: 20px;
}

.contact-card-content h5 {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-card-content p {
    color: #4a5568;
    margin-bottom: 2px;
    font-weight: 500;
}

.contact-timing {
    color: #718096;
    font-size: 0.85rem;
    font-style: italic;
}



/* Map Section */
.map-section {
    margin-top: 40px;
}

.map-section iframe {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer Styles */
.footer {
    background: #595c63;
    padding: 70px 0 40px 0;
    margin-top: 80px;
}

.footer-col {
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 600;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #f36f21;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
}

/* Responsive Design */
@media(max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .contact-form-header h3,
    .contact-info-header h3 {
        font-size: 1.5rem;
    }
    
    .navbar-nav {
        margin-right: 0;
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-card-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .contact-card-icon i {
        font-size: 18px;
    }
    
    .form-control {
        padding: 12px 15px 12px 45px;
    }
    
    .form-icon {
        left: 15px;
        top: 2.7rem;
    }
    
    .btn-submit {
    background: linear-gradient(135deg, #f36f21 0%, #e55a0e 100%);
    border: none;
    padding: 12px 00px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 111, 33, 0.3);
    width: 50%;
    margin-top: 10px;
}

#navbarNav{
    width: 230px;
    border-radius:10px;
    height: auto;
    background-color: orange;
}
}

@media(max-width: 576px) {
    .hero-section {
        padding: 120px 0 60px 0;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        border-radius: 15px;
        padding: 25px 15px;
    }
    
    .why-choose-us {
        padding: 20px;
    }
    
    .footer {
        padding: 50px 0 30px 0;
        margin-top: 60px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* reCAPTCHA Styling */
#recaptcha-container {
    margin: 20px 0;
    display: flex;
    justify-content: flex-start;
}

/* Additional Utility Classes */
.text-brand {
    color: #f36f21 !important;
}

.bg-brand {
    background-color: #f36f21 !important;
}

.border-brand {
    border-color: #f36f21 !important;
}
