@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo img {
    height: 100px;
    width: 150px;
}

.search-container {
    display: flex;
    align-items: center;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 5px 15px;
}

.Head-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.animated-header {
    font-family: 'Times New Roman', Times, serif;
    font-size: 32px;
    color: #000;   
    letter-spacing: 5px;
    animation: pulse 2s ease-in-out infinite;
    margin: 0;
}

.sub-heading {
    /* font-family: 'Orbitron', sans-serif; */
    font-family: 'Times New Roman', Times, serif;
    font-size: 12px;
    color: #4b4b4b;
    margin-top: 5px;
    letter-spacing: 2px;
}

.animated-header, .sub-heading {
    transition: transform 0.3s ease, color 0.3s ease;
}

.animated-header:hover, .sub-heading:hover {
    transform: scale(1.1);
    color: #ff3600;
}

@media (min-width: 768px) and (max-width: 991px) {
    .animated-header {
        font-size: 32px;
        letter-spacing: 13px;
    }
    
    .sub-heading {
        font-size: 18px;
        text-align: center;
    }
}
@media (min-width: 425px) {
    .animated-header {
        font-size: 52px;
        letter-spacing: 8px;
    }
    
    .sub-heading {
        font-size: 14px;
        text-align: center;
    }
}

.search-container input {
    flex: 1;
    border: none;
    padding: 8px;
    outline: none;
}

.search-container button {
    background: none;
    border: none;
    cursor: pointer;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-right a {
    text-decoration: none;
}

.icon {
    font-size: 24px;
    color: #333;
}

.request-btn {
    background-color: #0ad6ff;
    color: white;
    padding: 10px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.request-btn:hover {
    background-color: #0a6577;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
    height: 70px;
}

.navbar-nav .nav-item {
    margin: 0 10px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #e44a4c !important;
    transform: scale(1.1);
}

/* Underline effect */
.navbar-nav .nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #e44a4c;
    transition: width 0.3s ease;
    margin: auto;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Close Button Styling */
.close-btn {
    display: none; /* Hide by default */
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    background: none;
    border: none;
    color: black;
    cursor: pointer;
    z-index: 1100;
}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-nav {
        gap: 9px; /* Add space between nav links */
        flex-wrap: nowrap; /* Prevent wrapping */
    }

    .navbar-nav .nav-item {
        white-space: nowrap; /* Keep text in a single line */
        padding: 0 10px; /* Add more horizontal spacing */
    }
}


/* Show Close Button When Navbar is Open */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        z-index: 1000;
        padding-top: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    
}

/* Tablet & Desktop - Show Normal Navbar */
@media (min-width: 768px) {
    .navbar-toggler {
        display: none;
    }
    .navbar-collapse {
        display: flex !important;
        position: static !important;
        height: auto !important;
        background: transparent !important;
    }
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        flex-direction: column;
    }
    
    .navbar-collapse.show {
        left: 0;
    }

    .navbar-nav .nav-link {
        color: white !important;
        font-size: 1.5em;
        padding: 15px;
        display: block;
    }
}
@media (max-width: 425px) {
    .close-btn {
        display: block; /* Show when menu is open */
    }
    
    .close-btn {
        color: white;
        font-size: 2em;
    }
}


/* Main Content Section */
.main-content {
    display: flex;
    height: calc(100vh - 140px);
    width: 100%;
}

.slider-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    transition: opacity 0.5s ease;
}

.slider-image.active {
    display: block;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 5;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    width: 80%;
}

.overlay-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background-color: rgba(228, 74, 76, 0.8);
    padding: 10px 30px;
    display: inline-block;
}

.form-section {
    flex: 0.3;
    padding: 40px;
    background-color: #fcf4e1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.form-container p {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #e44a4c;
}
@media (min-width: 768px) and (max-width: 991px) {
    .form-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 500px; /* Adjust width as needed */
        margin: 0 auto; /* Center horizontally */
    }

    form {
        width: 100%;
        text-align: center;
    }
}


.country-code {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-code img {
    width: 24px;
    height: 16px;
}

.connect-options {
    margin: 20px 0;
}

.connect-options h3 {
    margin-bottom: 15px;
    color: #333;
}

.option-group {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input {
    margin-top: 5px;
}

.checkbox-group p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

/* Improved Mobile Responsive Styles */
@media (max-width: 1024px) {
    .main-content {
        height: auto;
    }
    
    .slider-section {
        height: 60vh;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 50px;
        width: auto;
    }
    
    .search-container {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .navbar {
        top: 60px;
        height: auto;
    }
    
    .navbar-nav {
        flex-direction: column;
        padding: 0;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 15px;
        border-bottom: 1px solid #eee;
    }
    
    .nav-right {
        gap: 10px;
    }
    
    .request-btn {
        padding: 8px 12px;
        font-size: 14px;
        /* width: 3em; */
        /* display: none; */
    }
    
    .main-content {
        flex-direction: column;
    }
    
    .slider-section, .form-section {
        flex: none;
        width: 100%;
    }
    
    .slider-section {
        height: 40vh;
    }
    
    .form-section {
        padding: 20px;
    }
    
    .overlay-text {
        left: 5%;
        width: 90%;
    }
    
    .overlay-text h1 {
        font-size: 1.8rem;
        padding: 8px 15px;
    }
    
    /* .animated-header {
        font-size: 32px;
        letter-spacing: 3px;
    }
    
    .sub-heading {
        font-size: 14px;
        text-align: center;
    } */
    
    .option-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 10px;
    }
    
    .logo img {
        height: 45px;
        width: auto;
    }
    
    .icon {
        font-size: 20px;
    }
    
    .slider-section {
        height: 30vh;
    }
    
    .overlay-text h1 {
        font-size: 1.5rem;
        padding: 5px 10px;
    }
    
    .prev-btn, .next-btn {
        padding: 5px 10px;
        font-size: 14px;
    }
    
    .form-container h2 {
        font-size: 1.5rem;
    }
    
    .animated-header {
        font-size: 24px;
        letter-spacing: 2px;
    }
}

/* Window curtain section */
.section {
    text-align: center;
    padding: 50px 20px;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.container {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.card {
    position: relative;
    width: 400px;
    overflow: hidden;
    border-radius: 15px;
    transition: 0.3s;
}

.card img {
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.card:hover img {
    opacity: 0.6;
}

.card .title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.card .title span {
    margin-left: 8px;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .container {
        flex-wrap: wrap;
    }
    
    .card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        width: 100%;
        max-width: 350px;
        margin: 10px 0;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .section p {
        font-size: 1rem;
    }
}

/* How it works Section */
.how-it-works-section {
    font-family: 'Arial', sans-serif;
    background-color: #fff9e9;
    color: #333;
    padding: 40px 0;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #222;
}

.how-it-works-header p {
    font-size: 20px;
    color: #555;
}

.process-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
    position: relative;
}

.process-item {
    width: 22%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 10px;
    margin-bottom: 20px;
}

.number {
    font-size: 80px;
    font-weight: bold;
    color: #d53b4c;
    line-height: 1;
    margin-bottom: 10px;
    font-family: serif;
}



.icon-container {
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.icon {
    font-size: 48px;
    color: #333;
}

.how-it-works-section .title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.how-it-works-section .description {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 20px;
}

/* Dashed lines connecting the process items */
.dashed-line {
    position: absolute;
    top: 150px;
    border-top: 2px dashed #999;
    width: 15%;
    z-index: 0;
}

.line-1 {
    left: 18%;
}

.line-2 {
    left: 42%;
}

.line-3 {
    left: 68%;
}

/* Media queries for responsive design */
@media screen and (max-width: 992px) {
    .process-container {
        justify-content: center;
    }
    
    .process-item {
        width: 45%;
        margin-bottom: 40px;
    }
    
    .dashed-line {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .process-item {
        width: 100%;
        max-width: 320px;
        margin-bottom: 50px;
    }
    
    .how-it-works-header h1 {
        font-size: 36px;
    }
    
    .how-it-works-header p {
        font-size: 18px;
    }
}

/* Contact section */
.contact-section {
    font-family: 'Arial', sans-serif;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.illustration {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
}

.illustration img {
    width: 100%;
    height: auto;
}

.form-container {
    flex: 1;
    min-width: 300px;
}

.form-field {
    margin-bottom: 25px;
    position: relative;
}

.form-field input {
    width: 100%;
    padding: 10px 2px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    outline: none;
}

.form-field label {
    position: absolute;
    top: -20px;
    left: 0;
    color: #888;
    font-size: 14px;
}

.phone-input {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

.phone-input .country-flag {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.phone-input .country-flag img {
    width: 24px;
    height: auto;
    margin-right: 5px;
}

.phone-input input {
    flex: 1;
    border: none;
    padding: 10px 2px;
    font-size: 16px;
    outline: none;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.consent-checkbox input {
    margin-top: 3px;
    margin-right: 10px;
}

.consent-checkbox label {
    font-size: 14px;
    color: #444;
    line-height: 1.4;
}

.submit-button {
    width: 100%;
    padding: 14px;
    background-color: #e63946;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #c1272d;
}

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }
    
    .illustration {
        order: 1;
        max-width: 100%;
    }
    
    .form-container {
        order: 2;
        width: 100%;
    }
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 50px 0 20px;
    width: 100%;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: white;
    border-radius: 4px;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.8;
}

.facebook { background-color: #3b5998; }
.twitter { background-color: #1da1f2; }
.instagram { background-color: #e1306c; }
.linkedin { background-color: #0077b5; }
.whatsapp { background-color: #25d366; }

.footer-column h3 {
    color:#0ad6ff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color:#0ad6ff;;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #12a3c0;;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon {
    color: #fff;
    margin-right: 15px;
    font-size: 20px;
    min-width: 20px;
}

.contact-text {
    color: #ccc;
    line-height: 1.3;
}

.contact-text strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #333;
    width: 100%;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
}

.gold-text {
    color: #fff;
}

@media (max-width: 992px) {
    .footer-column {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .footer-column {
        flex: 0 0 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .social-icons{
        display: flex;
        justify-content: center;
    }
    .contact-icon{
        display: none;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-text p {
        display: inline-block;
        text-align: center;
    }
    .contact-text .gold-text-ph{
        display: flex;
        flex-direction: column;   
    }
    .footer-column h3::after{
        display: none;
    }
}


/* WhatsApp Float Button */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
}

.float-whatsapp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s ease;
}

.float-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: #fff;
}

.float-whatsapp:active::before {
    transform: scale(1.5);
    opacity: 0;
    transition: 0s;
}

/* Pulse animation */
.float-whatsapp-wrapper {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
}

/* Tooltip styles */
.tooltip {
    position: absolute;
    top: -45px;
    right: 50px;
    background: #fff;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.float-whatsapp-wrapper:hover .tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .float-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
    
    .float-whatsapp-wrapper {
        bottom: 20px;
        right: 20px;
    }
    
    .pulse {
        width: 50px;
        height: 50px;
    }
}
.product-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    font-family: Arial, sans-serif;
    width: 180px;
}

.product-options p {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.product-options ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-options li {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
    font-size: 14px;
}

.product-options li:hover {
    background-color: #f1f1f1;
    color: #25d366;
}

.hidden {
    display: none;
}


/* Improved Mobile Responsive Styles */
@media (max-width: 1024px) {
    .main-content {
        height: auto;
    }
    
    .slider-section {
        height: 60vh;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 50px;
        width: auto;
    }
    
    .search-container {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .navbar {
        top: 60px;
        height: auto;
    }
    
    .navbar-nav {
        flex-direction: column;
        padding: 0;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 15px;
        border-bottom: 1px solid #eee;
    }
    
    .nav-right {
        gap: 10px;
    }
    
    .nav-right .request-btn {
        padding: 8px 12px;
        font-size: 14px;
        display: none;
    }
    
    .main-content {
        flex-direction: column;
    }
    
    .slider-section, .form-section {
        flex: none;
        width: 100%;
    }
    
    .slider-section {
        height: 40vh;
    }
    
    .form-section {
        padding: 20px;
    }
    
    .overlay-text {
        left: 5%;
        width: 90%;
    }
    
    .overlay-text h1 {
        font-size: 1.8rem;
        padding: 8px 15px;
    }
    
    /* .animated-header {
        font-size: 32px;
        letter-spacing: 3px;
    }
    
    .sub-heading {
        font-size: 14px;
        text-align: center;
    } */
    
    .option-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 10px;
    }
    
    .logo img {
        height: 45px;
        width: auto;
    }
    
    .icon {
        font-size: 20px;
    }
    
    .slider-section {
        height: 30vh;
    }
    
    .overlay-text h1 {
        font-size: 1.5rem;
        padding: 5px 10px;
    }
    
    .prev-btn, .next-btn {
        padding: 5px 10px;
        font-size: 14px;
    }
    
    .form-container h2 {
        font-size: 1.5rem;
    }
    
    /* .animated-header {
        font-size: 24px;
        letter-spacing: 2px;
    } */
}

/* -------------------Testimonial */

.testimonial-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 100%;
    margin: 40px auto;
    padding: 20px;
    overflow: hidden;
  }
  
  .testimonial-container {
    position: relative;
    max-width: 1000px; /* Reduced from 1200px for better card spacing */
    margin: 0 auto;
    padding: 30px 0;
  }
  
  .testimonial-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .testimonial-header h2 {
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 15px;
  }
  
  .testimonial-header p {
    font-size: 18px;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .testimonial-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 10px;
  }
  
  .testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .testimonial-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 15px;
    transition: opacity 0.3s ease;
  }
  
  .testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    border-top: 5px solid #0ad6ff;;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .quote-icon {
    font-size: 28px;
    color: #0ad6ff;;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 25px;
  }
  
  .testimonial-content {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  
  .testimonial-author {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
  
  .author-name {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
  }
  
  .author-title {
    font-size: 14px;
    color: #718096;
  }
  
  .testimonial-rating {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .testimonial-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    align-items: center;
    padding: 0 20px;
  }
  
  .nav-button {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    font-size: 20px;
    color: #ff3600;
  }
  
  .nav-button:hover {
    background: #4299e1;
    color: white;
    transform: scale(1.05);
  }
  
  .nav-button:focus {
    outline: none;
  }
  
  .nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .dot.active {
    background: #ff3600;
    transform: scale(1.2);
  }
  
  /* Progress timer bar */
  .progress-container {
    width: 100%;
    height: 4px;
    background-color: #e2e8f0;
    border-radius: 2px;
    margin-top: 30px;
    overflow: hidden;
  }
  
  .progress-bar {
    height: 100%;
    background-color: #4299e1;
    width: 0%;
    border-radius: 2px;
    transition: width 0.1s linear;
  }
  
  /* Updated media queries for better responsiveness */
  @media (min-width: 576px) {
    .testimonial-card {
      padding: 25px;
    }
    
    .testimonial-content {
      font-size: 16px;
    }
  }
  
  @media (min-width: 768px) {
    .testimonial-slide {
      flex: 0 0 50%;
      min-width: 50%;
    }
    
    .testimonial-card {
      padding: 30px;
    }
    
    .testimonial-content {
      font-size: 18px;
    }
  }
  
  /* Changed from 1024px to show 2 cards instead of 3 on desktop */
  @media (min-width: 1024px) {
    .testimonial-slide {
      flex: 0 0 50%; /* Changed from 33.333% to 50% to show 2 cards */
      min-width: 50%; /* Changed from 33.333% to 50% */
    }
    
    .testimonial-card {
      padding: 35px;
    }
  }
  
  /* Added extra large breakpoint for even better spacing */
  @media (min-width: 1280px) {
    .testimonial-container {
      max-width: 1100px;
    }
    
    .testimonial-slide {
      padding: 0 20px;
    }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .testimonial-card {
    animation: fadeIn 0.5s ease-out forwards;
  }



  .foot-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.animated-footheader {
    font-family: 'Times New Roman', Times, serif;
    font-size: 32px;
    color: #fff;   
    letter-spacing: 5px;
    animation: pulse 2s ease-in-out infinite;
    margin: 0;
}

.sub-footheading {
    /* font-family: 'Orbitron', sans-serif; */
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    color: #fff;
    margin-top: 5px;
    letter-spacing: 2px;
}

.animated-footheader, .sub-footheading {
    transition: transform 0.3s ease, color 0.3s ease;
}

.animated-footheader:hover, .sub-footheading:hover {
    transform: scale(1.1);
    color: #ff3600;
}

@media (min-width: 768px) and (max-width: 991px) {
    .animated-footheader {
        font-size: 32px;
        letter-spacing: 3px;
    }
    
    .sub-footheading {
        font-size: 10px;
        text-align: center;
    }
}
@media (min-width: 425px) {
    .animated-footheader {
        font-size: 52px;
        letter-spacing: 8px;
    }
    
    .sub-footheading {
        font-size: 14px;
        text-align: center;
    }
}