
.header {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.header-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

/* LOGO */
.logo img {
    width: 180px;
    height: auto;
}

/* NAVIGATION */
.nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #112240;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav ul li a:hover {
    color: #0072ff;
}

/* BUTTON */
.header-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.header-btn:hover {
    background: linear-gradient(135deg, #005ce6, #00a8db);
    transform: translateY(-2px);
}






body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Hero Section */
.hero {
    background: #f6f9ff;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 40px;
    font-weight: 700;
}

.breadcrumb {
    margin-top: 10px;
    color: #777;
    font-size: 14px;
}

/* Main Content Section */
.content-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 60px 10%;
}

/* Image left */
.left img {
    width: 700px;
    border-radius: 6px;
}

/* Text right */
.right {
    max-width: 700px;
}

/* Responsive */
@media(max-width: 900px) {
    .content-section {
        flex-direction: column;
        text-align: center;
    }

    .right h2 {
        font-size: 35px;
    }
}
.offer-section {
    text-align: center;
    padding: 60px 10%;
}

.top-heading {
    color: #266EFF;
    font-size: 20px;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.subtitle {
    max-width: 750px;
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 50px;
}

/* Grid Layout */
.offer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Each Box */
.offer-box {
    width: 30%;
    text-align: left;
}

.offer-box .icon {
    width: 50px;
    margin-bottom: 15px;
}

.offer-box h3 {
    color: #266EFF;
    font-size: 22px;
    margin-bottom: 10px;
}

.offer-box p {
    color: #444;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .offer-box {
        width: 100%;
    }

    .offer-grid {
        text-align: center;
    }

    .offer-box h3 {
        text-align: center;
    }

    .offer-box p {
        text-align: center;
    }
}
.three-box-section {
    display: flex;
    justify-content: space-between;
    padding: 60px 10%;
    gap: 40px;
    margin-top: 40px;
}

.box {
    width: 30%;
}

.box .icon {
    width: 55px;
    margin-bottom: 20px;
}

.box h3 {
    color: #1e63d7;
    font-size: 22px;
    margin-bottom: 15px;
}

.box p {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
}

/* Responsive */
@media (max-width: 900px) {
    .three-box-section {
        flex-direction: column;
        text-align: center;
    }

    .box {
        width: 100%;
    }

    .box h3 {
        text-align: center;
    }

    .box p {
        text-align: center;
    }
}



.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.9s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}


.main-footer {
    background: #0658c0;
    color: #fff;
    padding: 60px 0 30px;
    background-image: url('images/footer-wave.png'); /* Optional wave background */
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-container {
    width: 90%;
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

.footer-text {
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #0658c0;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
}

.footer-gallery {
    width: 250px;
    border-radius: 5px;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 15px;
    color: #dcdcdc;
    border-top: 1px solid rgba(255,255,255,0.2);
}
