/* -----------------------------
    index page banner section           
----------------------------- */
.hero {
    width: 100%;
    background-image: url("../images/Rectangle 9.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 255px;
    position: relative;
}

.hero-content {
    max-width: 480px;
}

.hero-content h1 {
    font-size: 43px;
    font-weight: 600;
    line-height: 1.2;
    color: #1e3a2f;
    margin-bottom: -20px;
}

.hero-content h1 span {
    color: #8a2c4c;
    font-weight: 900;
}

.hero-content p {
    margin: 25px 0;
    font-size: 20px;
    line-height: 1.7;
    color: #123821;
}

.hero-content button {
    background: #8a2c4c;
    color: white;
    border: none;
    padding: 14px 26px;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
}

.hero-images {
    position: relative;
    width: 520px;
    height: 360px;
}

.shape {
    position: absolute;
}

.shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shape1 {
    left: -161px;
    top: 20px;
    width: 259px;
}

.shape2 {
    left: 36px;
    top: 0;
    width: 269px;
}

.shape3 {
    left: 241px;
    top: 40px;
    width: 262px;
}

.plane {
    position: absolute;
    width: 419px;
    left: -55px;
    top: 120px;
    z-index: 10;
}

.text-rotate {
    white-space: nowrap;
    border-right: 2px solid black;
    animation: blink 1s step-end infinite;
    padding-right: 5px;
}

.text-rotate span {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.6s ease-in-out;
    display: block;
}

.text-rotate span.active {
    position: relative;
    opacity: 1;
}

@keyframes blink {
    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: black;
    }
}

/* -----------------------------
                   Tablet (769px - 1024px)
                ----------------------------- */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding: 50px 40px;
    }

    .hero-inner {
        max-width: 1024px;
        margin: 0 auto;
        padding: 80px 100px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 255px;
        position: relative;
    }

    .hero-images {
        width: 520px;
        height: 360px;
        transform: scale(0.9);
        transform-origin: center;
        left: 70px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-inner {
        flex-direction: column;
        gap: 40px;
        padding: 50px 40px;
    }
}

/* -----------------------------
                    Small Tablets / Large Mobiles (481px - 768px)
                ----------------------------- */

@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        padding: -1px 15px;
        gap: 0px;
    }

    .hero-inner {
        flex-direction: column-reverse;
        padding: 30px 15px;
        gap: 0;
    }

    .hero-images {
        position: relative;
        width: 100%;
        max-width: 520px;
        height: 360px;
        transform: scale(0.75);
        transform-origin: top center;
        left: 70px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }
}

/* -----------------------------
                    Mobile (up to 480px)
                ----------------------------- */

@media (max-width: 480px) {
    .hero-images {
        transform: scale(0.53);
        left: 2px;
        margin-bottom: -124px;
    }
}

/* -----------------------------
      index page about us
----------------------------- */

.about-section {
    padding: 40px 0;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 290px;
}

.about-images {
    position: relative;
    width: 440px;
}

.img-card {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.img-card img {
    width: 100%;
    height: auto;
    display: block;
}

.img-main {
    width: 420px;
}

.img-small {
    width: 320px;
    position: absolute;
    bottom: -80px;
    right: -40px;
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #1f7a4d;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 2;
}

.about-content {
    max-width: 480px;
}

.about-subtitle {
    color: #8a2c4c !important;
    font-weight: 600;
    font-size: 20px;
}

.about-content h2 {
    font-size: 30px;
    line-height: 1.3;
    color: #123d2a;
    margin: 10px 0 20px;
}

.about-content p {
    font-size: 20px;
    color: #123821;
    line-height: 1.4;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-content ul li {
    margin-bottom: 12px;
    font-size: 20px;
    color: #123d2a;
    position: relative;
    padding-left: 28px;
    font-weight: 600;
}

.about-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #8a2c4c;
    font-weight: bold;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    background: #8a2c4c;
    color: #fff;
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-images {
        transform: scale(0.85);
    }

    .img-small {
        right: 0;
    }

    .about-content {
        text-align: left;
        margin-left: 20px;
        margin-right: 20px;
    }

    .about-content ul li {
        text-align: left;
    }
}

/* -----------------------------
      index page policy banner
----------------------------- */

.policy-banner {
    padding: 40px;
    background: #fff;
}

.banner-inner {
    position: relative;
    max-width: 1400px;
    margin: auto;
    border-radius: 28px;
    overflow: hidden;
    height: 360px;
}

.banner-img {
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 63%;
    height: 100%;
    background: #7b2c4b;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 9% 100%);
    display: flex;
    align-items: center;
}

.banner-content {
    padding: 40px 60px;
    color: #fff;
    max-width: 520px;
    margin-left: 20px;
}

.banner-content h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 18px;
}

.banner-content p {
    font-size: 18px;
    line-height: 1.4;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .banner-inner {
        height: auto;
    }

    .banner-overlay {
        position: relative;
        width: 100%;
        clip-path: none;
    }

    .banner-content {
        padding: 30px 25px;
        text-align: left;
        max-width: 100%;
    }

    .banner-img {
        height: 240px;
        width: 100%;
    }
    .policy-banner {
    padding: 20px;
    background: #fff;
}
}

/* -----------------------------
      index page policy section
----------------------------- */

.policy-section {
    width: 100%;
    background: #f2f5f1;
    position: relative;
    overflow: hidden;
    position: relative;
    overflow: hidden;
}

.policy-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 60px;
    position: relative;
    z-index: 2;
}

.policy-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -13px;
    width: 1100px;
    height: 500px;
    background: url("../images/Vector (2).png") no-repeat;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.policy-section::before {
    content: "";
    position: absolute;
    top: -7px;
    right: -150px;
    width: 1100px;
    height: 500px;
    background: url("../images/Vector (3).png") no-repeat;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.policy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.policy-header h2 {
    font-size: 34px;
    color: #123d2a;
    font-weight: 600;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #8a2c4c;
    background: transparent;
    color: #8a2c4c;
    cursor: pointer;
    font-size: 18px;
}

.nav-btn.active {
    background: #8a2c4c;
    color: #fff;
}

.policy-carousel {
    overflow: hidden;
    width: 100%;
}

.policy-cards {
    display: flex;
    gap: 27px;
    transition: transform 0.6s ease;
}

.policy-card {
    flex: 0 0 calc((100% - 170px) / 4);
}

.policy-card img {
    width: 100%;
}

.policy-overlay {
    position: absolute;
    inset: 20px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 173px;
    top: 65px;
}

.policy-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    color: #123d2a;
    line-height: 1.3;
}

.policy-card img,
.policy-overlay,
.policy-overlay h3 {
    transition: all 0.4s ease;
}

.policy-card:hover img {
    transform: scale(1.1);
}

.policy-card:hover .policy-overlay {
    background: rgba(18, 61, 42, 0.9);
    transition: color 0.4s ease;
}

.policy-card:hover .policy-overlay h3 {
    color: #ffffff;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .policy-inner {
        padding: 50px 40px;
    }

    .policy-header h2 {
        font-size: 30px;
    }

    .nav-btn {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .policy-carousel {
        overflow: hidden;
        width: 100%;
    }

    .policy-cards {
        gap: 32px;
    }

    .policy-card {
        flex: 0 0 calc((100% - 32px) / 2);
    }

    .policy-card img {
        width: 100%;
        border-radius: 26px;
    }

    .policy-overlay {
        inset: 16px;
        height: 160px;
        top: 150px;
        border-radius: 20px;
    }

    .policy-overlay h3 {
        font-size: 18px;
    }

    .policy-section::before,
    .policy-section::after {
        opacity: 0.08;
    }

    .policy-section::before {
        right: -250px;
        width: 900px;
        height: 400px;
    }

    .policy-section::after {
        width: 900px;
        height: 400px;
        bottom: -120px;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 0;
    }

    .policy-inner {
        padding: 40px 24px;
        z-index: 2;
    }

    .policy-section::before,
    .policy-section::after {
        width: 100%;
        height: 300px;
        opacity: 0.08;
    }

    .policy-section::before {
        top: -40px;
        right: -40px;
    }

    .policy-section::after {
        bottom: -60px;
        left: -40px;
    }

    .policy-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
    }

    .policy-header h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .policy-cards {
        gap: 16px;
    }

    .policy-card {
        flex: 0 0 calc((100% - 60px) / 2);
        position: relative;
    }

    .policy-card img {
        border-radius: 18px;
    }

    .policy-overlay {
        inset: 12px;
        height: auto;
        top: auto;
        padding: 16px;
        border-radius: 16px;
    }

    .policy-overlay h3 {
        font-size: 16px;
        line-height: 1.3;
    }

    .policy-card:hover img {
        transform: none;
    }
}

@media (max-width: 480px) {
    .policy-carousel {
        overflow: hidden;
        width: 100%;
    }

    .policy-cards {
        gap: 0;
    }

    .policy-card {
        flex: 0 0 94%;
        max-width: 100%;
        margin: 0 auto;
    }

    .policy-card img {
        width: 100%;
        display: block;
    }
}

/* -----------------------------
      index page cancellation and baggage policy section
----------------------------- */

.cancellation {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 0px;
}

.cancellation h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1f3d2b;
}

.subtit {
    max-width: 850px;
    margin: 16px auto 50px;
    font-size: 20px;
    color: #123821;
    line-height: 1.6;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    height: 320px;
    width: 350px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.card {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.card {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: rgba(24, 128, 93, 0.85);
    transition: height 0.45s ease;
    z-index: 1;
}

.card:hover::before {
    height: 100%;
}

.overlay {
    position: absolute;
    bottom: 30px;
    left: 25px;
    z-index: 2;
    transition: transform 0.45s ease;
}

.overlay h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.card:hover .overlay {
    transform: translateY(-10px);
}

.overlay {
    position: absolute;
    bottom: 30px;
    left: 25px;
    right: 25px;
    z-index: 2;
}

.overlay h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.read-more {
    margin-top: 50px;
    padding: 14px 32px;
    border-radius: 30px;
    background: #ffffff;
    border: 1.5px solid #7b2c4b !important;
    color: #7b2c4b !important;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.read-more:hover {
    background: #7b2c4b !important;
    color: #ffffff !important;
}

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .cancellation {
        padding: 50px 16px;
    }

    .cancellation h2 {
        font-size: 30px;
    }

    .subtit {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card {
        width: 100%;
        height: 300px;
    }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    .cancellation h2 {
        font-size: 26px;
    }

    .subtit {
        font-size: 16px;
        line-height: 1.5;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card {
        height: 280px;
    }

    .overlay h3 {
        font-size: 20px;
    }
}

/* Small phones (max-width: 480px) */
@media (max-width: 480px) {
    .cancellation {
        padding: 0px 14px;
        padding-top: 20px;
    }

    .cancellation h2 {
        font-size: 22px;
    }

    .subtit {
        font-size: 15px;
    }

    .card {
        height: 240px;
        border-radius: 16px;
    }

    .overlay {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .overlay h3 {
        font-size: 18px;
    }

    .read-more {
        padding: 12px 26px;
        font-size: 15px;
    }
}

/* -----------------------------
      index page contact us 
----------------------------- */

.assistance-banner {
    position: relative;
    max-width: 1200px;
    margin: 60px auto;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    column-gap: 0;
    gap: 0;
}

.banner-left {
    background: #7a3a52;
    padding: 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.banner-left h3 {
    font-family: "Urbanist", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.banner-left p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 360px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.contact-button {
    display: inline-block;
    padding: 12px 34px;
    border-radius: 30px;
    background: #ffffff;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

/* Dots */
.dot {
    position: absolute;
    bottom: -2px;
    left: 63%;
    width: 100px;
    height: 50px;
    background-image: radial-gradient(#fff 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    transform: translateX(-50%);
    opacity: 0.6;
}

.banner-image {
    position: relative;
}

.banner-image::after {
    content: "";
    position: absolute;
    inset: -20px;
    background-image: url("../images/Mask group (2).png");
    transform: scale(1.1);
    z-index: 0;
}

.banner-image::before {
    content: "";
    position: absolute;
    inset: 0;
}

.banner-image img {
    position: absolute;
    left: -295px;
    top: -70%;
    width: 709px;
    z-index: 5;
    pointer-events: none;
    overflow: visible;
    transform: rotate(17deg);
    animation: planeFloat 6s ease-in-out infinite;
}

@keyframes planeFloat {
    0% {
        transform: translateY(0) rotate(17deg);
    }

    50% {
        transform: translateY(-20px) rotate(19deg);
    }

    100% {
        transform: translateY(0) rotate(17deg);
    }
}

@media (max-width: 768px) {
    .assistance-banner {
        grid-template-columns: 1fr;
        margin: 30px auto;
        border-radius: 12px;
        overflow: hidden;
    }

    .banner-left {
        padding: 30px 20px;
        text-align: center;
    }

    .banner-left h3 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .banner-left p {
        font-size: 14px;
        max-width: 100%;
        margin: 0 auto 18px;
        opacity: 0.9;
    }

    .contact-button {
        padding: 10px 26px;
        font-size: 16px;
    }

    .dot {
        bottom: -5px;
        left: 50%;
        width: 60px;
        height: 30px;
        background-size: 8px 8px;
        transform: translateX(-50%);
        opacity: 0.5;
    }

    .banner-image {
        min-height: 180px;
        position: relative;
    }

    .banner-image img {
        width: 400px;
        left: 52%;
        top: -130px;
        transform: translateX(-50%) rotate(17deg);
        /* initial state */
        pointer-events: none;
        z-index: 5;
        animation: planeFloatMobile 6s ease-in-out infinite;
    }

    @keyframes planeFloatMobile {
        0% {
            transform: translateX(-50%) translateY(0) rotate(17deg);
        }

        50% {
            transform: translateX(-50%) translateY(-15px) rotate(19deg);
        }

        100% {
            transform: translateX(-50%) translateY(0) rotate(17deg);
        }
    }

    .banner-image::after,
    .banner-image::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 0;
    }

    .banner-image::after {
        background-image: url("../images/Mask group (2).png");
    }
}

/* -----------------------------
      index page flight change 
----------------------------- */
.flight-policy {
    background: #faf6f6;
    padding: 0px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 30px;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: auto;
}

.flight-policy h2 {
    font-size: 34px;
    color: #0f3d2e;
    margin-bottom: 10px;
}

.subtitle {
    max-width: 909px;
    margin: 0 auto 40px;
    font-size: 20px;
    color: #2f4f34;
    line-height: 1.4;
    font-weight: 400;
}

.read-more a {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #8a4b5a;
    border-radius: 30px;
    color: #8a4b5a;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more a:hover {
    background: #8a4b5a;
    color: #fff;
}

.vector {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.1;
}

.vector-top-right {
    top: 0;
    right: 0;
    width: 867px;
}

.vector-bottom-left {
    bottom: 0;
    left: 0;
    width: 1347px;
}

/* -----------------------------
      index page name change 
----------------------------- */

.name-change-policy {
    max-width: 1440px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
    font-family: "Arial", sans-serif;
    color: #234027;
}

.name-change-policy h2 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 8px;
}

.name-change-policy .subtitle {
    font-size: 20px;
    color: #2f4f34;
    max-width: 909px;
    margin: 0 auto 40px;
    line-height: 1.4;
    font-weight: 400;
}

.check-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.check {
    background: #fff;
    border-radius: 20px;
    width: 364px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #8080805c;
    padding: 10px;
}

.check img {
    width: 100%;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.check h3 {
    margin: 16px 16px 4px;
    font-weight: 700;
    font-size: 20px;
    color: #234027;
    text-align: left;
}

.check-subtitle {
    margin: 0 16px 16px;
    font-size: 20px;
    color: #2f4f34cc;
    text-align: left;
}

.read-more {
    margin-top: 10px;
    padding: 10px 30px;
    border: 1px solid #8b5f5f;
    border-radius: 25px;
    background: transparent;
    color: #8b5f5f;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s ease, color 0.3s ease;
}

.read-more:hover {
    background: #8b5f5f;
    color: white;
}

.arrow {
    font-size: 18px;
    line-height: 1;
}

.image-hover {
    overflow: hidden;
    border-radius: 20px;
}

.image-hover img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
    object-fit: cover;
}

.image-hover:hover img {
    transform: scale(1.1);
}

.check {
    border-radius: 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
}

.check:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
    z-index: 10;
}

/* -----------------------------
      index page 2nd contact us 
----------------------------- */

.info-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 60px 20px;
    background: #1f7f53;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.08),
            transparent 40%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(0, 0, 0, 0.25),
            transparent 45%
        );
}

.info-container h3 {
    font-family: "Urbanist", sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 26px;
    margin-top: -17px;
}

.info-container h3 span {
    font-weight: 800;
}

.info-container p {
    max-width: 620px;
    margin: 0 auto 26px;
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.contact-btn {
    display: inline-block;
    padding: 12px 34px;
    border-radius: 30px;
    background: #8a2f4f;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: #732742;
}

.dots {
    position: absolute;
    width: 89px;
    height: 50px;
    background-image: radial-gradient(#ffffff 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.6;
}

.dots-left {
    top: -3px;
    left: 143px;
}

.dots-right {
    bottom: -3px;
    left: 1094px;
}

/* Responsive */
@media (max-width: 768px) {
    .info-container {
        padding: 40px 20px;
    }

    .info-container h3 {
        font-size: 22px;
        margin-top: 20px;
    }

    .info-container p {
        font-size: 13px;
    }
    .check {
    background: #fff;
    border-radius: 20px;
    width: 320px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #8080805c;
    padding: 10px;
}
}

/* -----------------------------
      index page latest blog
----------------------------- */
.latest-blogs {
    height: 600px;
    text-align: center;
    background: #fff;
}

.latest-blogs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}

.latest-blogs h2 {
    font-size: 34px;
    color: #0f3d2e;
    margin-bottom: 40px;
}

.view-all-btn {
    text-decoration: none;
    padding: 12px 24px;
    background: #0f3d2e;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
}

.view-all-btn:hover {
    background: #0c2f23;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    position: relative;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s ease;
    border-radius: 30px;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-content {
    position: absolute;
    bottom: -100px;
    left: 20px;
    right: 20px;
    background: #ffffffed;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.blog-content .icon {
    font-size: 22px;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0f3d2e;
    margin-bottom: 8px;
}

.blog-content p {
    font-size: 20px;
    color: #0f3d2e;
    line-height: 1.5;
    margin-bottom: 12px;
}

.blog-content .read-more {
    display: inline-block;
    font-size: 18px;
    color: #8a4b5a;
    text-decoration: none;
    border: 1px solid #8a4b5a;
    padding: 6px 16px;
    border-radius: 20px;
    transition: 0.3s ease;
}

.blog-content .read-more:hover {
    background: #8a4b5a;
    color: #fff;
}

.blog-content .icon {
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
}

.blog-content .icon img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.icon-hover {
    opacity: 0;
}

.blog-card:hover .icon-default {
    opacity: 0;
}

.blog-card:hover .icon-hover {
    opacity: 1;
}

.icon {
    position: relative;
}

.icon img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.icon img:first-child {
    opacity: 1;
}

.icon img:nth-child(2) {
    opacity: 0;
}

.blog-card:hover .icon img:first-child {
    opacity: 0;
}

.blog-card:hover .icon img:nth-child(2) {
    opacity: 1;
}

/* ===== Tablet (max-width: 991px) ===== */
@media (max-width: 991px) {
    .latest-blogs {
        height: auto;
        height: 594px;
    }

    .latest-blogs h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .blog-grid {
        gap: 24px;
    }

    .blog-card {
        height: 380px;
    }

    .blog-content {
        bottom: -100px;
        padding: 18px;
    }

    .blog-content h3 {
        font-size: 18px;
    }

    .blog-content p {
        font-size: 16px;
    }
}

/* ===== Mobile (max-width: 600px) ===== */
@media (max-width: 600px) {
    .latest-blogs {
        padding: 0px 15px;
        height: 920px;
    }

    .latest-blogs h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .blog-card {
        height: 200px;
    }

    .blog-content {
        bottom: -62px;
        left: 15px;
        right: 15px;
        padding: 16px;
        margin-bottom: 20px;
    }

    .blog-content .icon {
        width: 36px;
        height: 36px;
    }

    .blog-content h3 {
        font-size: 17px;
    }

    .blog-content p {
        font-size: 15px;
    }

    .blog-content .read-more {
        font-size: 12px;
        padding: 5px 14px;
    }
}

/* ===== Hover Effect (Green Card) ===== */
.blog-card:hover .blog-content {
    background: linear-gradient(180deg, #1f6b45, #0f3d2e);
}

.blog-card:hover .blog-content h3,
.blog-card:hover .blog-content p {
    color: #ffffff;
}

.blog-card:hover .blog-content .read-more {
    background: #8a4b5a;
    color: #ffffff;
    border-color: #8a4b5a;
}

.blog-card:hover .blog-content .read-more:hover {
    background: #7a3f4d;
}

/* -----------------------------
      index page Disclaimer
----------------------------- */
.disclaimer-bar {
    width: 100%;
    background: linear-gradient(90deg, #339e5d, #123821);
}

.disclaimer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 29px 69px;
    text-align: center;
}

.disclaimer-bar p {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
}

.disclaimer-bar strong {
    font-weight: 700;
}

/* Responsive padding */
@media (max-width: 768px) {
    .disclaimer-inner {
        padding: 20px;
    }

    .disclaimer-bar p {
        font-size: 14px;
    }
}

* {
    font-family: "Urbanist", sans-serif;
}
/* contact-us banner */
.page-header {
    height: 200px;
    background: linear-gradient(#984063, #321521),
        url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 600;
}

.breadcrumb {
    margin-top: 8px;
    font-size: 20px;
    color: #f2f2f2;
    font-weight: 600;
}

.breadcrumb span {
    margin: 0 6px;
}

/* BLOG PAGE */

.policy-wrapper {
    background: #fff;
    padding: 40px 20px;
}

.policy-layout {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 25px;
}

/* LEFT GRID */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 47px;
}

.policy-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    display: flex;
    box-shadow: none;
    /* default state */
    border: 1px solid transparent;
    transition: all 0.3s ease;
    padding: 10px;
}

.policy-card img {
    transition: transform 0.3s ease;
}

.policy-card:hover img {
    transform: scale(1.05);
}

.policy-card:hover {
    border: 1px solid #627b5b47;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    background: #627b5b14;
}

.policy-card img {
    width: 100%;
    object-fit: cover;
}

.policy-content {
    padding: 15px;
}

.policy-content h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: #374334;
}

.policy-content p {
    font-size: 13px;
    color: #374334;
    margin-bottom: 27px;
}

/* Show images ONLY inside policy cards */
.policy-card img {
    display: block;
}

.policy-content a {
    font-size: 13px;
    color: #7b2b4b;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #7b2b4b;
    border-radius: 20px;
    padding: 10px;
}

/* SIDEBAR */
.policy-sidebar {
    background: #f4f6f8;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #627b5b;
    height: 530px;
}

.search-boxed input {
    border: none;
    background: #f4f6f8;
    margin-bottom: 20px;
    font-size: 20px;
}

.search-icon {
    position: absolute;
    right: 17px;
    top: 14px;
}

.search-icon img {
    width: 31px;
    height: 31px;
    margin-bottom: 10px;
    right: 12px;
}

.sidebar-box h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.sidebar-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.sidebar-item img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
}

.sidebar-item p {
    font-size: 15px;
    color: #374334;
    font-weight: 700;
}

.sidebar-item {
    display: flex;
    gap: 10px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #161616;
}

/* Remove line from last item */
.sidebar-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.search-boxed {
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

/* Line after every 2 cards */
.policy-card:nth-child(2n)::after {
    content: "";
    position: absolute;
    left: -114%;
    width: 216%;
    bottom: -27px;
    height: 1px;
    background: #161616;
}

/* Remove line from last row */
.policy-card:nth-last-child(-n + 2)::after {
    display: none;
}

.policy-sidebar {
    padding: 15px;
    border-radius: 10px;

    /* Sticky settings */
    position: sticky;
    top: 20px; /* distance from top when scrolling */
}

/* Hide by default (mobile) */
.search-boxed {
    display: none;
}

/* Show on desktop (768px and up) */
@media (min-width: 768px) {
    .search-boxed {
        display: flex; /* or block */
    }
}

/* Show by default (mobile) */
.search-boxes {
    display: flex; /* or block */
}

/* Hide on desktop */
@media (min-width: 768px) {
    .search-boxes {
        display: none;
    }
}

.search-boxes input {
    border: 1px solid #123821;
    background: #f4f6f8;
    margin-bottom: 20px;
    font-size: 30px;

    border-radius: 20px;
}

.search-icons {
    position: absolute;
    right: 127px;
    top: 329px;
}

.search-icons img {
    width: 31px;
    height: 31px;
    margin-bottom: 10px;
    right: 12px;
}

/* Small tablets and below */
@media (max-width: 992px) {
    .policy-layout {
        grid-template-columns: 2fr 1fr; /* slightly smaller main area */
    }

    .policy-grid {
        gap: 30px;
    }

    /* Remove lines after every 2 cards because now only 1 card per row */
    .policy-card:nth-child(2n)::after {
        display: none;
    }

    .policy-card {
        width: 268px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .policy-layout {
        grid-template-columns: 1fr; /* Sidebar moves below content */
        gap: 20px;
    }

    .policy-sidebar {
        position: relative; /* Remove sticky on small screens */
        top: auto;
        height: auto;
        border: 1px solid #ddd;
    }

    .search-boxed input {
        font-size: 16px;
        padding: 8px 35px 8px 10px;
    }

    .search-icon img {
        width: 24px;
        height: 24px;
    }

    .policy-card {
        flex-direction: column; /* Stack image and content */
        padding: 10px;
    }

    .policy-card img {
        width: 100%;
        height: 200px;
    }

    .policy-content {
        padding: 10px 0 0 0;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .policy-content h3 {
        font-size: 14px;
    }

    .policy-card {
        width: auto;
    }

    .policy-card img {
        width: auto;
        height: 275px;
    }

    .policy-grid {
        grid-template-columns: 1fr; /* 1 column for cards */
        gap: 30px;
    }

    .policy-content p {
        font-size: 12px;
    }

    .policy-content a {
        font-size: 12px;
        padding: 6px 10px;
    }

    .sidebar-item p {
        font-size: 14px;
    }
}

/* BLOG PAGE END */





/* main blog page css */

.blogpage-header {
    height: 200px;
    background: linear-gradient(#984063, #321521),
        url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.blogpage-header h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 600;
}

.breadcrumb {
    margin-top: 8px;
    font-size: 20px;
    color: #f2f2f2;
    font-weight: 600;
}
.breadcrumb a {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.breadcrumb a {
    position: relative;
}

.breadcrumb a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.breadcrumb a:hover::after {
    width: 100%;
}


.breadcrumb span {
    margin: 0 6px;
}

/* BLOG blogpage */

.blogpolicy-wrapper {
    background: #fff;
    padding: 20px 0px;
}

.blogpolicy-layout {
    max-width: 1440px;
    margin: auto;
    display: grid;
    gap: 25px;
}

/* LEFT GRID */
.blogpolicy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 47px;
}

.blogpolicy-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column; /* 👈 KEY CHANGE */
    box-shadow: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    padding: 10px;
}

.blogpolicy-card img {
    transition: transform 0.3s ease;
}

.blogpolicy-card:hover img {
    transform: scale(1.05);
}

.blogpolicy-card:hover {
    border: 1px solid #627b5b47;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    background: #627b5b14;
}

.blogpolicy-card img {
    width: 100%;          /* 👈 was 55% */
    object-fit: cover;
    border-radius: 16px;
}


.blogpolicy-content {
    text-align: center;
    padding: 15px;
}

.blogpolicy-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #374334;
    text-decoration: none;
}

.blogpolicy-content p {
    font-size: 13px;
    color: #374334;
    margin-bottom: 27px;
}

/* Show images ONLY inside blogpolicy cards */
.blogpolicy-card img {
    display: block;
}

.blogpolicy-content a {
    display: inline-block;
    margin: 0 auto;
    font-size: 13px;
    color: #7b2b4b;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #7b2b4b;
    border-radius: 20px;
    padding: 10px 18px;
    text-align: center;
    background: transparent;
    transition: all 0.3s ease;
}

/* HOVER */
.blogpolicy-content a:hover {
    background: #7b2b4b;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(123, 43, 75, 0.35);
    transform: translateY(-2px);
}



/* SIDEBAR */
.blogpolicy-sidebar {
    background: #f4f6f8;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #627b5b;
    height: 530px;
}

.search-boxed input {
    border: none;
    background: #f4f6f8;
    margin-bottom: 20px;
    font-size: 20px;
}

.search-icon {
    position: absolute;
    right: 17px;
    top: 14px;
}

.search-icon img {
    width: 31px;
    height: 31px;
    margin-bottom: 10px;
    right: 12px;
}

/* Smooth transition for sidebar items */
.sidebar-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover effect */
.sidebar-item:hover {
    background: #627b5b14;
    padding-left: 6px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Image hover zoom */
.sidebar-item img {
    transition: transform 0.3s ease;
}

.sidebar-item:hover img {
    transform: scale(1.08);
}

/* Text hover color */
.sidebar-item p {
    transition: color 0.3s ease;
}

.sidebar-item:hover p {
    color: #7b2b4b;
}


.search-boxed {
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

/* Line after every 2 cards */
.blogpolicy-card:nth-child(2n)::after {
    content: "";
    position: absolute;
    left: -114%;
    width: 330%;
    bottom: -27px;
    height: 1px;
    background: #161616;
}

/* Remove line from last row */
.blogpolicy-card:nth-last-child(-n + 2)::after {
    display: none;
}

.blogpolicy-sidebar {
    padding: 15px;
    border-radius: 10px;

    /* Sticky settings */
    position: sticky;
    top: 20px; /* distance from top when scrolling */
}

/* Hide by default (mobile) */
.search-boxed {
    display: none;
}

/* Show on desktop (768px and up) */
@media (min-width: 768px) {
    .search-boxed {
        display: flex; /* or block */
    }
}

/* Show by default (mobile) */
.search-boxes {
    display: flex; /* or block */
}

/* Hide on desktop */
@media (min-width: 768px) {
    .search-boxes {
        display: none;
    }
}

.search-boxes input {
    border: 1px solid #123821;
    background: #f4f6f8;
    margin-bottom: 20px;
    font-size: 30px;

    border-radius: 20px;
}

.search-icons {
    position: absolute;
    right: 127px;
    top: 329px;
}

.search-icons img {
    width: 31px;
    height: 31px;
    margin-bottom: 10px;
    right: 12px;
}

/* Small tablets and below */
@media (max-width: 992px) {
    .blogpolicy-layout {
        grid-template-columns: 2fr 1fr; /* slightly smaller main area */
    }

    .blogpolicy-grid {
        gap: 30px;
    }

    /* Remove lines after every 2 cards because now only 1 card per row */
    .blogpolicy-card:nth-child(2n)::after {
        display: none;
    }

    .blogpolicy-card {
        width: 268px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .blogpolicy-layout {
        grid-template-columns: 1fr; /* Sidebar moves below content */
        gap: 20px;
    }

    .blogpolicy-sidebar {
        position: relative; /* Remove sticky on small screens */
        top: auto;
        height: auto;
        border: 1px solid #ddd;
    }

    .search-boxed input {
        font-size: 16px;
        padding: 8px 35px 8px 10px;
    }

    .search-icon img {
        width: 24px;
        height: 24px;
    }

    .blogpolicy-card {
        flex-direction: column; /* Stack image and content */
        padding: 10px;
    }

    .blogpolicy-card img {
        width: 100%;
        height: 200px;
    }

    .blogpolicy-content {
        padding: 10px 0 0 0;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .blogpolicy-content h3 {
        font-size: 20px;
    }

    .blogpolicy-card {
        width: auto;
    }

    .blogpolicy-card img {
        width: 100%;
        height: auto;
    }

    .blogpolicy-grid {
        grid-template-columns: 1fr; /* 1 column for cards */
        gap: 30px;
    }

    .blogpolicy-content p {
        font-size: 12px;
    }

    .blogpolicy-content a {
        font-size: 12px;
        padding: 6px 10px;
    }

    .sidebar-item p {
        font-size: 14px;
    }
}

/* BLOG blogpageblog END */