@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #003869;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Header Styles */
header {
    background-color: #003869;
    padding: 17px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    background-color: #003869;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    background-color: #003869;
    justify-content: space-between; /* Updated from flex-start */
    align-items: center;
    padding: 0 20px;
}

.phone-number-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.phone-number {
    color: #e6eef7;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}




.logo-image {
    max-height: 70px;
    width: auto;
    display: flex;
    align-items: flex-start;
    /* margin-left: -30px; */
    transition: transform 0.3s ease-in-out;
}


.logo-image:hover {
    transform: scale(1.1);
}

.logo-text {
    color: white;
}
.main-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.main-nav a {
    text-decoration: none;
    color: #003869;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #FF5C35;
    transition: width 0.3s ease-in-out;
}

.main-nav a:hover::after {
    width: 100%;
}

.get-started {
    background: #FF5C35;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-left: 20px;
    transition: all 0.3s ease-in-out;
}

.get-started:hover {
    background-color: #e64a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 74, 46, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease-in-out;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #003869;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

/* Hero Section Styles */
.hero-section {
    background-color: #003869;
    padding: 140px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    color: white;
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    max-width: 1000px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-in-out 0.2s forwards;
}

.hero-underline {
    width: 0;
    height: 8px;
    background: #FF5C35;
    margin: 30px auto;
    transition: width 0.5s ease-in-out;
    animation: expandWidth 0.5s ease-in-out 0.7s forwards;
}

.hero-description {
    color: white;
    font-size: 20px;
    max-width: 600px;
    margin: 30px auto;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-in-out 0.4s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.terms-checkbox {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.terms-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.checkbox-label {
    font-size: 14px;
    margin-top: 10px;
    color: #003869;
}

.terms-link {
    color: #FF5C35;
    
    text-decoration: underline;
}

.terms-link:hover {
    color: #e64a2e;
}
@keyframes expandWidth {
    from { width: 0; }
    to { width: 100px; }
}

/* Main Content Styles */
main {
    margin-top: 30px;
    padding: 60px 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-in-out 0.6s forwards;
}
.phone-number {
    color: #e6eef7;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center; /* Aligns text and icon vertically */
}

.phone-number:hover {
    color: #FF5C35; /* Changes text and icon color on hover */
}

.call-icon {
    width: 20px; /* Size of the call icon */
    height: 20px;
    margin-right: 8px; /* Space between icon and phone number */
    display: flex;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

/* Hover effect for both text and icon */
.phone-number:hover .call-icon {
    transform: scale(1.1);
}

.consultation-title {
    color: #e6eef7;
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.required-text {
    text-align: center;
    font-size: 14px;
    color: #afb3b6;
    margin-bottom: 40px;
    font-weight: 300;
}




.form-group {
    margin-bottom: 30px;
}




.required-field::after {
    content: "*";
    color: #FF5C35;
    margin-left: 4px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #fda7a7;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    border-color: #FF5C35;
    box-shadow: 0 0 0 2px rgba(255, 92, 53, 0.2);
}

.submit-button {
    background: #FF5C35;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 30px;
    transition: all 0.3s ease-in-out;
}

.submit-button:hover {
    background: #e64a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 74, 46, 0.3);
}

/* Blog Section Styles */
.blog-section {
    background-color: #e6eef7;
    padding: 60px 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-in-out 0.8s forwards;
}

.blog-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-title {
    color: #003869;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    transition: transform 0.3s ease-in-out;
}

.blog-subtitle {
    color: #003869;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    transition: transform 0.3s ease-in-out;
}

.blog-content {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
    font-weight: 400;
}

.read-more {
    display: inline-block;
    background: #FF5C35;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
}

.read-more:hover {
    background: #e64a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 74, 46, 0.3);
}

/* Poppins Font Classes */
.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        margin-right: -90px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: #003869;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px;
        transition: left 0.3s ease-in-out;
    }
    .consultation-form{
        border-color: #e64a2e;
    }

    .main-nav.active {
        left: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 18px;
    }

    .logo-image {
        max-height: 60px;
        margin-left: -10px;
    }
    .logo-text {
        color: white;
    }

    .blog-title {
        font-size: 24px;
    }

    .blog-subtitle {
        font-size: 20px;
    }

    .blog-content {
        font-size: 14px;
    }
}



/* Updated Form Styles */
.consultation-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #e6eef7;
    border-color: #e64a2e;
    border-radius: 8px;
}
.consultation-form:hover {
    transform: translateY(-5px);
}
.form-group {
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-column {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #003869;
    font-size: 16px;
}

.required-field::after {
    content: "*";
    color: #FF5C35;
    margin-left: 4px;
}


.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
}

.radio-option input[type="radio"] {
    margin-right: 12px;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.form-footer {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}

.captcha {
    margin-top: 30px;
    background: #f0f0f0;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    color: #f19999;
}

