:root {
    --navy: #082a62;
    --gold: #c99a43;
    --ink: #13233e;
    --muted: #5c6879;
    --soft: #f4f7fb;
    --line: #dce4ed;
    --white: #fff;
    --shadow: 0 18px 45px rgba(11, 38, 82, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden
}

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto
}

.section {
    padding: 100px 0
}

.section-soft {
    background: var(--soft)
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase
}

.section h2,
.contact h2 {
    margin: 0 0 18px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.12
}

.section p,
.contact p {
    color: var(--muted)
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;

    /* पीछे website blurred दिखेगी */
    background: rgba(225, 240, 248, 0.18);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);

    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.preloader img {
    width: min(420px, 82vw);
    max-height: 280px;
    object-fit: contain;

    /* Logo एक बार बड़ा होकर zoom होगा */
    animation: preloader-zoom 1.5s ease-in-out forwards;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes preloader-zoom {
    0% {
        opacity: 0;
        transform: scale(0.55);
    }

    35% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@media (max-width: 560px) {
    .preloader img {
        width: min(310px, 85vw);
        max-height: 210px;
    }
}

.header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%
}

.nav-wrap {
    width: min(1320px, calc(100% - 50px));
    min-height: 138px;
    margin: auto;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr)auto;
    align-items: center;
    gap: 28px
}

.brand img {
    /* The supplied square logo has generous transparent padding.  A taller
       rendered canvas makes the visible Sangam mark read at a useful size. */
    width: 185px;
    max-height: 185px;
    object-fit: contain
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.2vw, 42px)
}

.menu a {
    font-size: .97rem;
    font-weight: 700;
    white-space: nowrap;
    transition: color .2s
}

.menu a:hover,
.menu a:focus-visible {
    color: var(--gold)
}

.menu a:first-child {
    color: var(--gold)
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform .2s, box-shadow .2s
}

.nav-cta {
    padding: 15px 24px;
    background: var(--gold);
    color: #fff;
    white-space: nowrap
}

.nav-cta:hover,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(159, 109, 21, .24)
}

.menu-button {
    display: none
}

.hero {
    min-height: 780px;
    min-height: 100svh;
    display: flex;
    align-items: center;
    /* A light left gradient keeps the white copy legible without dulling the
       Santorini photograph across the rest of the hero. */
    background: linear-gradient(90deg, rgba(4, 24, 59, .48) 0%, rgba(4, 24, 59, .26) 36%, rgba(4, 24, 59, .05) 62%, rgba(4, 24, 59, 0) 100%), url('../assets/background.jpg') center/cover no-repeat
}

.hero-content {
    padding-top: 155px
}

.hero h1 {
    max-width: 750px;
    margin: 0;
    color: #0e0492;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(4.2rem, 7vw, 6.8rem);
    line-height: .98;
    letter-spacing: -.055em;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .2)
}

.hero-copy {
    max-width: 620px;
    margin: 25px 0;
    color: #0f0234;
    font-size: 1.18rem;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .25)
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px
}

.btn {
    min-height: 52px;
    padding: 0 25px;
    border: 2px solid transparent
}

.btn-gold {
    background: var(--gold);
    color: #fff
}

.btn-outline {
    border-color: #fff;
    background: rgba(4, 24, 59, .25);
    color: #fff
}

.benefits {
    position: absolute;
   
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 38px;
    padding: 24px;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow)
}

.benefits article {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 10px 18px;
    border-right: 1px solid var(--line)
}

.benefits article:last-child {
    border: 0
}

.benefits i {
    color: var(--gold);
    font-size: 2rem
}

.benefits h2 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3
}

.benefits p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.35
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(38px, 7vw, 100px);
    align-items: center
}

.about-image {
    position: relative
}

.about-image>img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 18px
}
/*=========================
    ABOUT SECTION
=========================*/

.aboutContent h6{
    color:#c88a12;
    font-size:18px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.aboutContent h2{
    font-family:"Playfair Display",serif;
    font-size:72px;
    font-weight:700;
    line-height:1.08;
    color:#163d8f;   /* Same Blue */
    margin-bottom:40px;
}

.aboutContent p{
    font-size:20px;
    line-height:1.9;
    color:#454545;
}


/*=========================
    ICON LIST
=========================*/

.aboutPoints{
    margin:40px 0;
}

/*=========================
    ABOUT ICONS
=========================*/

.aboutPoint{
    display:flex;
    align-items:flex-start;
    gap:22px;
    margin-bottom:30px;
}

.aboutPoint i{
    width:42px;
    height:42px;
    min-width:42px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#163d8f;
    color:#fff;

    border-radius:50%;

    font-size:20px;

    box-shadow:0 8px 20px rgba(22,61,143,.20);

    transition:.3s;
}

.aboutPoint:hover i{
    transform:translateY(-3px);
    background:#0f3279;
}

.aboutPoint p{
    margin:0;
    font-size:18px;
    line-height:1.8;
    color:#4b4b4b;
}
/*=========================
    BUTTON
=========================*/

.aboutBtn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 42px;

    background:#d39a17;

    color:#fff;

    font-size:22px;

    font-weight:600;

    border-radius:12px;

    text-decoration:none;

    transition:.3s;
}

.aboutBtn:hover{

    background:#163d8f;

    color:#fff;
}
.experience {
    position: absolute;
    right: -20px;
    bottom: 28px;
    max-width: 170px;
    padding: 20px;
    border-radius: 14px;
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow)
}

.experience strong {
    display: block;
    color: #efc979;
    font-family: "Playfair Display", serif;
    font-size: 2.35rem;
    line-height: 1
}

.experience span {
    font-size: .83rem
}

.text-link {
    display: inline-flex;
    gap: 8px;
    margin-top: 10px;
    color: var(--navy);
    font-weight: 700
}

/*======================================
SERVICES heading start here
================ ======================*/

.services{

    background:linear-gradient(
    180deg,
    #F7FAFF 0%,
    #EEF4FC 100%);

    position:relative;

    overflow:visible;

    
    padding: 70px ;
    margin:0;
    min-height:auto;
    height:auto;


}

.sectionHeading{

text-align:center;

max-width:760px;

margin:auto auto 70px;

}

.sectionHeading span{

color:#c9911c;

font-size:26px;

font-weight:700;

letter-spacing:3px;

}

.sectionHeading h2{

font-family:"Playfair Display",serif;

font-size:54px;

color:#072b6f;

margin:15px 0;

}

.sectionHeading p{

font-size:18px;

line-height:1.8;

color:#5b6780;

}

.servicesGrid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}
.swiper-slide-active{

    transform:scale(1.08);
    z-index:10;
}

.swiper-slide-prev,
.swiper-slide-next{

    transform:scale(.86);
    opacity:.9;
}
.swiper-pagination-bullet-active {
    background: var(--gold) !important
}
.servicesSlider{
    position: relative;
    padding:120px 0 80px;
    overflow: visible;
}

.serviceSwiper{
    width:100%;
    padding:34px 0 58px;
    overflow:hidden;
}

.serviceSwiper .swiper-wrapper{
    align-items:center;
}

.serviceSwiper .swiper-slide{
    overflow:visible;
    width:min(270px, 78vw);
    height:auto;
}



.serviceSwiper .swiper-slide-active{

transform:scale(1);

opacity:1;

}


.serviceCard img{

width:100%;

height:260px;

object-fit:cover;

display:block;

}

.serviceContent{

padding:30px;

}

.swiper-pagination-bullet{

width:12px;

height:12px;

background:#c9911c;

opacity:.4;

}

.swiper-pagination-bullet-active{

opacity:1;

width:28px;

border-radius:20px;

}

/*==============================
    PREMIUM SERVICE CARD 
==============================*/

.serviceCard{

    width:100%;
    min-height:260px;

    background:linear-gradient(160deg,#0A2E73,#123F9C);

    border-radius:28px;

    padding:28px 22px;

    color:#fff;

    position:relative;

    overflow:hidden;

    border:2px solid #D4A017;

    box-shadow:
    0 18px 40px rgba(10,46,115,.35),
    inset 0 0 0 2px rgba(255,255,255,.08);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    transition:.45s;
}


/* Inner Gold Outline */

.serviceCard::before{

    content:"";

    position:absolute;

    top:10px;
    left:10px;
    right:10px;
    bottom:10px;

    border:1.5px solid rgba(212,160,23,.8);

    border-radius:20px;

    pointer-events:none;

}


/* Golden Top Glow */

.serviceCard::after{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:rgba(212,160,23,.15);

    border-radius:50%;

    top:-100px;
    right:-80px;

}


/* ICON */

.serviceCard i{

    width:64px;
    height:64px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:28px;

    color:#fff;

    border:2px solid #D4A017;

    background:rgba(255,255,255,.08);

    margin-bottom:18px;

}


/* TITLE */

.serviceCard h3{

    font-size:23px;

    color:#fff;

    margin-bottom:10px;

    font-family:'Playfair Display',serif;

}


/* GOLD LINE */

.serviceCard h3::after{

    content:"";

    display:block;

    width:55px;

    height:2px;

    background:#D4A017;

    margin:11px auto;

}


/* TEXT */

.serviceCard p{

    color:#e8edf9;

    font-size:14px;

    line-height:1.55;

}


/* ACTIVE CARD */

.swiper-slide-active .serviceCard{
    transform:scale(1.03);
}

/* SIDE CARD */

.swiper-slide-prev .serviceCard,
.swiper-slide-next .serviceCard{

    opacity:.88;

}


/* Hover */

.serviceCard:hover{

    transform:translateY(-12px);

    box-shadow:
    0 35px 70px rgba(10,46,115,.45),
    0 0 35px rgba(212,160,23,.35);

}







.holiday-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    perspective: 1200px
}

.holiday-card {
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(11, 38, 82, .16);
    transform: translateZ(0);
    transition: transform .32s ease, box-shadow .32s ease
}

.holiday-card:hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(-3deg);
    box-shadow: 0 24px 42px rgba(11, 38, 82, .24)
}

.holiday-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .35s
}

.holiday-card:hover img {
    transform: scale(1.06)
}

.holiday-card div {
    padding: 22px
}

.holiday-card h3 {
    margin: 0 0 6px;
    font-size: 1.25rem
}

.holiday-card p {
    margin: 0;
    color: var(--muted);
    font-size: .93rem
}

.corporate {
    background: var(--navy);
    color: #fff
}

.corporate p {
    color: #d4deec
}

.corporate img {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
    filter: brightness(1.12)
}

.contact {
    padding: 100px 0;
    background: #f7f8fb
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: start
}

.contact ul {
    padding: 0;
    list-style: none
}

.contact li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin: 13px 0;
    color: var(--muted)
}

.contact li i {
    width: 18px;
    margin-top: 5px;
    color: var(--gold)
}

.enquiry-form {
    display: grid;
    gap: 15px;
    padding: 30px;
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--shadow)
}

.enquiry-form label {
    display: grid;
    gap: 6px;
    color: var(--ink);
    font-size: .88rem;
    font-weight: 700
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #cbd6e3;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-weight: 400
}

.enquiry-form textarea {
    resize: vertical
}

.enquiry-form .btn {
    justify-self: start;
    border: 0;
    cursor: pointer
}

footer {
    padding: 26px 0;
    background: #061c43;
    color: #d6dfef
}

.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.footer-wrap p {
    margin: 0;
    font-size: .86rem
}

.footer-brand img {
    width: 120px;
    max-height: 55px;
    filter: brightness(0) invert(1)
}

.footer-wrap>a:last-child {
    font-size: 1.3rem
}

.whatsapp-widget {
    position: fixed;
    right: 23px;
    bottom: 23px;
    z-index: 30
}

.whatsapp {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
    cursor: pointer
}

.whatsapp-panel {
    position: absolute;
    right: 0;
    bottom: 72px;
    width: 270px;
    padding: 12px;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .2s
}

.whatsapp-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.whatsapp-panel p {
    margin: 0 -12px 10px;
    padding: 12px;
    color: #fff;
    background: var(--navy);
    font-size: .86rem;
    font-weight: 700
}

.whatsapp-panel a {
    display: block;
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f1f5f8
}

.whatsapp-panel a:hover {
    background: #e5f7eb
}

.whatsapp-panel span,
.whatsapp-panel strong {
    display: block
}

.whatsapp-panel span {
    font-size: .73rem;
    color: var(--muted)
}

.whatsapp-panel strong {
    color: var(--navy);
    font-size: .9rem
}

@media(max-width:1050px) {
    .nav-wrap {
        grid-template-columns: 200px minmax(0, 1fr)auto;
        gap: 16px
    }

    .brand img {
        width: 190px
    }

    .menu {
        gap: 15px
    }

    .menu a {
        font-size: .86rem
    }

    .hero h1 {
        font-size: clamp(3.8rem, 7vw, 5.8rem)
    }
}

@media(max-width:820px) {
    .header {
        position: relative;
        background: #fff;
        box-shadow: 0 2px 15px rgba(7, 35, 79, .08)
    }

    .nav-wrap {
        width: min(100% - 32px, 720px);
        min-height: 76px;
        grid-template-columns: 1fr auto
    }

    .brand img {
        width: 170px;
        max-height: 64px
    }

    .menu-button {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border: 1px solid #d6dfeb;
        border-radius: 8px;
        background: #fff;
        color: var(--navy);
        font-size: 1.2rem;
        cursor: pointer
    }

    .nav-cta {
        display: none
    }

    .menu {
        position: absolute;
        top: calc(100% + 7px);
        right: 16px;
        left: 16px;
        display: none;
        padding: 8px;
        border-radius: 12px;
        background: #fff;
        box-shadow: var(--shadow)
    }

    .menu.is-open {
        display: grid
    }

    .menu a {
        padding: 12px 11px;
        font-size: 1rem
    }

    .hero {
        min-height: 620px;
        min-height: calc(100svh - 76px);
        align-items: flex-end;
        background: linear-gradient(90deg, rgba(4, 24, 59, .70), rgba(4, 24, 59, .14)), url('../assets/background.jpg') 65% center/cover
    }

    .hero-content {
        padding-top: 80px;
        padding-bottom: 80px
    }

    .hero h1 {
        font-size: clamp(3.2rem, 12vw, 5.4rem)
    }

    .benefits {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -28px
    }

    .benefits article:nth-child(2) {
        border-right: 0
    }

    .benefits article:nth-child(-n+2) {
        border-bottom: 1px solid var(--line)
    }

    .section {
        padding: 76px 0
    }

    .two-column,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .about-image {
        max-width: 610px
    }

    .holiday-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .corporate .two-column {
        gap: 30px
    }

    .corporate img {
        grid-row: 1
    }

    .footer-wrap {
        flex-wrap: wrap
    }
}

@media(max-width:540px) {
    .container {
        width: min(100% - 32px, 500px)
    }

    .hero {
        min-height: 600px
    }

    .hero-content {
        padding-top: 50px;
        padding-bottom: 56px
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.5rem)
    }

    .hero h1 br {
        display: none
    }

    .hero-copy {
        font-size: 1rem
    }

    .hero-actions {
        display: grid
    }

    .btn {
        width: 100%
    }

    .benefits {
        grid-template-columns: 1fr;
        padding: 8px
    }

    .benefits article,
    .benefits article:nth-child(2),
    .benefits article:nth-child(-n+2) {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .benefits article:last-child {
        border-bottom: 0
    }

    .experience {
        right: 12px;
        bottom: 12px
    }

    .holiday-grid {
        grid-template-columns: 1fr
    }

    .holiday-card img {
        height: 235px
    }

    .contact {
        padding: 76px 0
    }

    .footer-wrap {
        justify-content: center;
        text-align: center
    }

    .footer-brand {
        width: 100%
    }

    .footer-brand img {
        margin: auto
    }

    .whatsapp-widget {
        right: 16px;
        bottom: 16px
    }

    .whatsapp {
        width: 54px;
        height: 54px
    }

    .whatsapp-panel {
        width: min(270px, calc(100vw - 32px))
    }

    .enquiry-form .btn {
        width: 100%
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }
}

:root {
    --navy: #082a62;
    --gold: #c99a43;
    --ink: #13233e;
    --muted: #5c6879;
    --soft: #f4f7fb;
    --line: #dce4ed;
    --white: #fff;
    --shadow: 0 18px 45px rgba(11, 38, 82, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden
}

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto
}

.section {
    padding: 100px 0
}

.section-soft {
    background: var(--soft)
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase
}

.section h2,
.contact h2 {
    margin: 0 0 18px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.12
}

.section p,
.contact p {
    color: var(--muted)
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: transparent;
    transition: opacity .3s ease, visibility .3s ease
}

.preloader img {
    width: 250px;
    max-height: 140px;
    object-fit: contain;
    animation: preloader-zoom .9s ease-in-out infinite alternate
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%
}

.nav-wrap {
    width: min(1320px, calc(100% - 50px));
    min-height: 138px;
    margin: auto;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr)auto;
    align-items: center;
    gap: 28px
}

.brand img {
    /* The supplied square logo has generous transparent padding.  A taller
       rendered canvas makes the visible Sangam mark read at a useful size. */
    width: 185px;
    max-height: 185px;
    object-fit: contain
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.2vw, 42px)
}

.menu a {
    font-size: .97rem;
    font-weight: 700;
    white-space: nowrap;
    transition: color .2s
}

.menu a:hover,
.menu a:focus-visible {
    color: var(--gold)
}

.menu a:first-child {
    color: var(--gold)
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform .2s, box-shadow .2s
}

.nav-cta {
    padding: 15px 24px;
    background: var(--gold);
    color: #fff;
    white-space: nowrap
}

.nav-cta:hover,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(159, 109, 21, .24)
}

.menu-button {
    display: none
}

.hero {
    min-height: 780px;
    min-height: 100svh;
    display: flex;
    align-items: center;
    /* A light left gradient keeps the white copy legible without dulling the
       Santorini photograph across the rest of the hero. */
    background: linear-gradient(90deg, rgba(4, 24, 59, .48) 0%, rgba(4, 24, 59, .26) 36%, rgba(4, 24, 59, .05) 62%, rgba(4, 24, 59, 0) 100%), url('../assets/background.jpg') center/cover no-repeat
}

.hero-content {
    padding-top: 155px
}

.hero h1 {
    max-width: 750px;
    margin: 0;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(4.2rem, 7vw, 6.8rem);
    line-height: .98;
    letter-spacing: -.055em;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .2)
}

.hero-copy {
    max-width: 620px;
    margin: 25px 0;
    color: #fff;
    font-size: 1.18rem;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .25)
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px
}

.btn {
    min-height: 52px;
    padding: 0 25px;
    border: 2px solid transparent
}

.btn-gold {
    background: var(--gold);
    color: #fff
}

.btn-outline {
    border-color: #fff;
    background: rgba(4, 24, 59, .25);
    color: #fff
}

.benefits {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Keep this feature panel below the hero instead of covering its CTA. */
    margin-top: 30px;
    padding: 24px;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow)
}

.benefits article {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 10px 18px;
    border-right: 1px solid var(--line)
}

.benefits article:last-child {
    border: 0
}

.benefits i {
    color: var(--gold);
    font-size: 2rem
}

.benefits h2 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3
}

.benefits p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.35
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(38px, 7vw, 100px);
    align-items: center
}

.about-image {
    position: relative
}

.about-image>img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 18px
}

.experience {
    position: absolute;
    right: -20px;
    bottom: 28px;
    max-width: 170px;
    padding: 20px;
    border-radius: 14px;
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow)
}

.experience strong {
    display: block;
    color: #efc979;
    font-family: "Playfair Display", serif;
    font-size: 2.35rem;
    line-height: 1
}

.experience span {
    font-size: .83rem
}

.text-link {
    display: inline-flex;
    gap: 8px;
    margin-top: 10px;
    color: var(--navy);
    font-weight: 700
}

.section-heading {
    max-width: 670px;
    margin: 0 auto 44px;
    text-align: center
}

.section-heading h2 {
    margin-bottom: 10px
}

.section-heading p:last-child {
    margin: 0
}

.services-swiper {
    padding: 3px 3px 52px
}

.service-card {
    min-height: 245px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff
}

.service-card i {
    display: inline-grid;
    place-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #eef3fb;
    color: var(--navy);
    font-size: 1.45rem
}

.service-card h3 {
    margin: 19px 0 5px;
    font-size: 1.18rem
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important
}

.holiday-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    perspective: 1200px
}

.holiday-card {
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(11, 38, 82, .16);
    transform: translateZ(0);
    transition: transform .32s ease, box-shadow .32s ease
}

.holiday-card:hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(-3deg);
    box-shadow: 0 24px 42px rgba(11, 38, 82, .24)
}

.holiday-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .35s
}

.holiday-card:hover img {
    transform: scale(1.06)
}

.holiday-card div {
    padding: 22px
}

.holiday-card h3 {
    margin: 0 0 6px;
    font-size: 1.25rem
}

.holiday-card p {
    margin: 0;
    color: var(--muted);
    font-size: .93rem
}

.corporate {
    background: var(--navy);
    color: #fff
}

.corporate p {
    color: #d4deec
}

.corporate img {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
    filter: brightness(1.12)
}

.contact {
    padding: 100px 0;
    background: #f7f8fb
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: start
}

.contact ul {
    padding: 0;
    list-style: none
}

.contact li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin: 13px 0;
    color: var(--muted)
}

.contact li i {
    width: 18px;
    margin-top: 5px;
    color: var(--gold)
}

.enquiry-form {
    display: grid;
    gap: 15px;
    padding: 30px;
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--shadow)
}

.enquiry-form label {
    display: grid;
    gap: 6px;
    color: var(--ink);
    font-size: .88rem;
    font-weight: 700
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #cbd6e3;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-weight: 400
}

.enquiry-form textarea {
    resize: vertical
}

.enquiry-form .btn {
    justify-self: start;
    border: 0;
    cursor: pointer
}

footer {
    padding: 26px 0;
    background: #061c43;
    color: #d6dfef
}

.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.footer-wrap p {
    margin: 0;
    font-size: .86rem
}

.footer-brand img {
    width: 120px;
    max-height: 55px;
    filter: brightness(0) invert(1)
}

.footer-wrap>a:last-child {
    font-size: 1.3rem
}

.whatsapp-widget {
    position: fixed;
    right: 23px;
    bottom: 23px;
    z-index: 30
}

.whatsapp {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
    cursor: pointer
}

.whatsapp-panel {
    position: absolute;
    right: 0;
    bottom: 72px;
    width: 270px;
    padding: 12px;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .2s
}

.whatsapp-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.whatsapp-panel p {
    margin: 0 -12px 10px;
    padding: 12px;
    color: #fff;
    background: var(--navy);
    font-size: .86rem;
    font-weight: 700
}

.whatsapp-panel a {
    display: block;
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f1f5f8
}

.whatsapp-panel a:hover {
    background: #e5f7eb
}

.whatsapp-panel span,
.whatsapp-panel strong {
    display: block
}

.whatsapp-panel span {
    font-size: .73rem;
    color: var(--muted)
}

.whatsapp-panel strong {
    color: var(--navy);
    font-size: .9rem
}

@media(max-width:1050px) {
    .nav-wrap {
        grid-template-columns: 200px minmax(0, 1fr)auto;
        gap: 16px
    }

    .brand img {
        width: 190px
    }

    .menu {
        gap: 15px
    }

    .menu a {
        font-size: .86rem
    }

    .hero h1 {
        font-size: clamp(3.8rem, 7vw, 5.8rem)
    }
}

@media(max-width:820px) {
    .header {
        position: relative;
        background: #fff;
        box-shadow: 0 2px 15px rgba(7, 35, 79, .08)
    }

    .nav-wrap {
        width: min(100% - 32px, 720px);
        min-height: 76px;
        grid-template-columns: 1fr auto
    }

    .brand img {
        width: 170px;
        max-height: 64px
    }

    .menu-button {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border: 1px solid #d6dfeb;
        border-radius: 8px;
        background: #fff;
        color: var(--navy);
        font-size: 1.2rem;
        cursor: pointer
    }

    .nav-cta {
        display: none
    }

    .menu {
        position: absolute;
        top: calc(100% + 7px);
        right: 16px;
        left: 16px;
        display: none;
        padding: 8px;
        border-radius: 12px;
        background: #fff;
        box-shadow: var(--shadow)
    }

    .menu.is-open {
        display: grid
    }

    .menu a {
        padding: 12px 11px;
        font-size: 1rem
    }

    .hero {
        min-height: 620px;
        min-height: calc(100svh - 76px);
        align-items: flex-end;
        background: linear-gradient(90deg, rgba(4, 24, 59, .70), rgba(4, 24, 59, .14)), url('../assets/background.jpg') 65% center/cover
    }

    .hero-content {
        padding-top: 80px;
        padding-bottom: 80px
    }

    .hero h1 {
        font-size: clamp(3.2rem, 12vw, 5.4rem)
    }

    .benefits {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 24px
    }

    .benefits article:nth-child(2) {
        border-right: 0
    }

    .benefits article:nth-child(-n+2) {
        border-bottom: 1px solid var(--line)
    }

    .section {
        padding: 76px 0
    }

    .two-column,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .about-image {
        max-width: 610px
    }

    .holiday-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .corporate .two-column {
        gap: 30px
    }

    .corporate img {
        grid-row: 1
    }

    .footer-wrap {
        flex-wrap: wrap
    }
}

@media(max-width:540px) {
    .container {
        width: min(100% - 32px, 500px)
    }

    .hero {
        min-height: 600px
    }

    .hero-content {
        padding-top: 50px;
        padding-bottom: 56px
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.5rem)
    }

    .hero h1 br {
        display: none
    }

    .hero-copy {
        font-size: 1rem
    }

    .hero-actions {
        display: grid
    }

    .btn {
        width: 100%
    }

    .benefits {
        grid-template-columns: 1fr;
        padding: 8px
    }

    .benefits article,
    .benefits article:nth-child(2),
    .benefits article:nth-child(-n+2) {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .benefits article:last-child {
        border-bottom: 0
    }

    .experience {
        right: 12px;
        bottom: 12px
    }

    .holiday-grid {
        grid-template-columns: 1fr
    }

    .holiday-card img {
        height: 235px
    }

    .contact {
        padding: 76px 0
    }

    .footer-wrap {
        justify-content: center;
        text-align: center
    }

    .footer-brand {
        width: 100%
    }

    .footer-brand img {
        margin: auto
    }

    .whatsapp-widget {
        right: 16px;
        bottom: 16px
    }

    .whatsapp {
        width: 54px;
        height: 54px
    }

    .whatsapp-panel {
        width: min(270px, calc(100vw - 32px))
    }

    .enquiry-form .btn {
        width: 100%
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }
}





/*=========================================
        COMPANY MODAL
=========================================*/

.modal{
    position:fixed;
    inset:0;
    display:none;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(6px);
    z-index:99999;
    padding:30px;
}

.modal-content{
    width:900px;
    max-width:95%;
    max-height:90vh;
    overflow-y:auto;
    background:#fff;
    border-radius:20px;
    padding:45px;
    position:relative;
    animation:popup .35s ease;
}

/* Scrollbar */

.modal-content::-webkit-scrollbar{
    width:8px;
}

.modal-content::-webkit-scrollbar-thumb{
    background:#d4a437;
    border-radius:20px;
}

.modal-content::-webkit-scrollbar-track{
    background:#eee;
}

/* Animation */

@keyframes popup{

    from{
        opacity:0;
        transform:translateY(40px) scale(.96);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }

}

/* Close */

.close{

    position:absolute;

    top:18px;
    right:25px;

    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#163d8f;

    color:#fff;

    font-size:24px;

    cursor:pointer;

    transition:.3s;

}

.close:hover{

    background:#d4a437;

}

/* Heading */

.company-profile h2{

    color:#163d8f;

    font-size:42px;

    font-family:"Playfair Display",serif;

    margin-bottom:8px;

}

.company-profile h5{

    color:#d4a437;

    font-size:18px;

    margin-bottom:20px;

    font-weight:600;

}

.company-profile hr{

    border:none;

    height:2px;

    background:#d4a437;

    margin:30px 0;

}

/* Profile Item */

.profile-item{

    display:flex;

    align-items:flex-start;

    gap:22px;

    margin-bottom:28px;

}

/* Icon */

.profile-item i{

    width:55px;

    height:55px;

    min-width:55px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#163d8f;

    color:#fff;

    font-size:20px;

    box-shadow:0 10px 20px rgba(22,61,143,.18);

}

/* Text */

.profile-item p{

    margin:0;

    font-size:17px;

    line-height:1.8;

    color:#444;

}

.profile-item strong{

    color:#163d8f;

}

/* Mobile */

@media(max-width:768px){

.modal-content{

padding:25px;

}

.company-profile h2{

font-size:30px;

}

.profile-item{

flex-direction:column;

align-items:center;

text-align:center;

}

.profile-item i{

margin-bottom:10px;

}

}
/*===========vission mission =================*/
.vision-section{
    background:#184A8C;
   padding:35px 0;   /* pehle 80px tha */
}

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

.vision-card{
    background:#2d5a99;
    border:1px solid rgba(242,194,51,.5);
    border-radius:20px;
   padding:22px;      /* Pehle 30px tha */
    min-height:180px; 
    transition:all .4s ease;
    cursor:pointer;
}

.vision-card:hover
{
    background:#3565a8;
    transform:translateY(-12px);
    border-color:#f2c233;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}
.vision-head{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:18px;
}

.vision-card i{
   width:55px;
    height:55px;
    font-size:22px;
    border:3px solid #f2c233;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
   
    color:#f2c233;
    transition:.4s;
}
.vision-card:hover i{
    background:#f2c233;
    color:#1c4c90;
    transform:rotate(360deg) scale(1.08);
}
.vision-card h3{
    color:#f2c233;
    transition:.3s;
     font-size:20px;

}

.vision-card:hover h3{
    letter-spacing:1px;
}
.vision-card p{
    color:#fff;
    transition:.3s;
    font-size:16px;
    line-height:1.6;
}

.vision-card:hover p{
    color:#ffffff;
}
.vision-card{
    cursor:pointer;
}
/*=========================
MOBILE VIEW
=========================*/

@media (max-width:768px){

.vision-section{
    padding:40px 0;

}

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

.vision-card{
    min-height:auto;
    padding:24px 20px;
    border-radius:18px;
}

.vision-head{
    gap:18px;
    margin-bottom:18px;
}

.vision-head i{
    width:55px;
    height:55px;
    font-size:22px;
}

.vision-head h3{
    font-size:20px;
}

.vision-card p{
    font-size:16px;
    line-height:1.8;
}

}


/* ====================all laptop me work karega and phone me bhi==========*/
/* ===============================
   GLOBAL RESPONSIVE FIX
================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    overflow-x:hidden;
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
    width:100%;
    max-width:100%;
}

/* Images */

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

/* Videos */

video{
    max-width:100%;
    height:auto;
}

/* Sections */

section{
    width:100%;
    overflow:hidden;
}

/* Main Container */

.container{
    width:min(92%,1300px);
    margin:auto;
}

/* Prevent horizontal scroll */

.row,
.grid,
.two-column,
.vision-container,
.servicesGrid,
.holiday-grid,
.contact-grid{
    max-width:100%;
}

/* ===================================
        LARGE DESKTOP
=================================== */

@media(min-width:1600px){

.container{
    max-width:1500px;
}

}

/* ===================================
        LAPTOP
=================================== */

@media(max-width:1200px){

.container{
    width:94%;
}

}

/* ===================================
        TABLET
=================================== */

@media(max-width:992px){

.two-column,
.contact-grid,
.vision-container{

display:grid;
grid-template-columns:1fr;
gap:25px;

}

}

/* ===================================
        MOBILE
=================================== */

@media(max-width:768px){

.container{
width:92%;
}

.hero h1{
font-size:42px;
line-height:1.2;
}

.hero-copy{
font-size:16px;
}

.section{
padding:60px 0;
}

.btn{
width:100%;
justify-content:center;
}

.menu{
width:100%;
}

.vision-container{
display:grid;
grid-template-columns:1fr;
gap:20px;
}

.vision-card{
padding:22px;
}

.servicesGrid,
.holiday-grid{
grid-template-columns:1fr;
}

.contact-grid{
grid-template-columns:1fr;
}

}

/* ===================================
        SMALL PHONE
=================================== */

@media(max-width:480px){

.container{
width:94%;
}

.hero h1{
font-size:34px;
}

.section-heading h2{
font-size:30px;
}

.vision-card{
padding:20px;
}

.vision-card h3{
font-size:20px;
}

.vision-card p{
font-size:15px;
line-height:1.7;
}

}

/* ===================================
      IPHONE SAFE AREA
=================================== */

@supports (padding:max(0px)){

body{

padding-left:env(safe-area-inset-left);

padding-right:env(safe-area-inset-right);

padding-top:env(safe-area-inset-top);

padding-bottom:env(safe-area-inset-bottom);

}

}
/*============THERE ARE SATRTED VISA SECTION =================*/
/*=========================================
            VISA SECTION
=========================================*/

.visa{
    padding:100px 0;
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(rgba(248,251,255,.94),rgba(248,251,255,.94)),
    url("images/world-map.png") center center/75% no-repeat;
}

/* World Map Glow */
.visa::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at 20% 20%,rgba(201,145,28,.08),transparent 45%),
    radial-gradient(circle at 80% 80%,rgba(7,43,111,.08),transparent 45%);
    pointer-events:none;
}

.visaGrid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:70px;
    position:relative;
    z-index:2;
}

.visaCard{

    position:relative;

    padding:15px 20px;

    border-radius:28px;

    overflow:hidden;

    text-align:center;

    background:
    linear-gradient(
    160deg,
    rgba(255,255,255,.55),
    rgba(236,244,255,.35));

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:2px solid rgba(7,43,111,.22);

    box-shadow:
    0 20px 50px rgba(7,43,111,.12);

    transition:.45s;
}
/* Gold Inner Outline */

.visaCard::before{

content:"";

position:absolute;

inset:10px;

border-radius:22px;

border:1px solid rgba(201,145,28,.7);

pointer-events:none;

}
.visaCard::after{

content:"";

position:absolute;

width:220px;
height:220px;

right:-80px;
top:-90px;

border-radius:50%;

background:
radial-gradient(circle,
rgba(201,145,28,.18),
transparent 70%);

}
/* Hover */

.visaCard:hover{

transform:translateY(-10px);

background:
linear-gradient(
160deg,
rgba(255,255,255,.78),
rgba(231,241,255,.55));

border-color:#072b6f;

box-shadow:
0 30px 70px rgba(7,43,111,.18);

}
.visaCard i{

    width:90px;
    height:90px;

    margin:auto;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    font-size:34px;

    color:#fff;

    background:#072b6f;

    margin-bottom:25px;

    transition:.4s;

}

.visaCard h3{

    font-size:28px;

    color:#072b6f;

    font-family:"Playfair Display",serif;

    margin-bottom:15px;

}

.visaCard p{

    color:#555;

    line-height:1.8;

}
.visaCard:hover{

    transform:translateY(-12px);

    background:rgba(255,255,255,.32);

    border-color:#072b6f;

    box-shadow:
    0 30px 60px rgba(7,43,111,.18);

}

.visaCard:hover i{

    background:#c9911c;

}
/* Premium Hover Effects */

.serviceCard,
.destinationCard,
.packageCard,
.visaCard,
.corporateCard{

transition:.45s;

will-change:transform;

}

.destinationCard img{

transition:1s;

}

.packageCard:hover{

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.serviceCard:hover{

box-shadow:0 20px 45px rgba(7,43,111,.15);

}

.visaCard:hover{

box-shadow:0 18px 45px rgba(201,145,28,.18);

}

.corporateCard:hover{

box-shadow:0 20px 50px rgba(7,43,111,.15);

}

/* temparary code for corparaet travel ka*/
@media(max-width:991px){

.visaGrid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.visaGrid{
grid-template-columns:1fr;
}

}
@media (max-width:600px){

    .container{
        width:100%;
        max-width:100%;
        padding:0 15px;
    }

    .sectionHeading h2{
        font-size:36px;
        line-height:1.2;
    }

    .sectionHeading p{
        padding:0 10px;
        font-size:15px;
    }

    .visa{
        padding:70px 0;
    }

    .visaGrid{
        display:grid;
        grid-template-columns:1fr;
        gap:18px;
        width:100%;
    }

    .visaCard{
        width:100%;
        max-width:100%;
        min-height:180px;
        padding:20px;
        margin:0;
    }

    .visaCard h3{
        font-size:26px;
    }

    .visaCard p{
        font-size:14px;
    }

    .visaCard::before{
        inset:10px;
        border-radius:18px;
    }

    .visaCard::after{
        width:110px;
        height:110px;
        top:-45px;
        right:-45px;
    }

}
/* ================================
   AIRLINE GLASS PARTNERS SECTION
================================ */

.airline-glass{
    position:relative;
    padding:100px 0;
    overflow:hidden;
}


/* Background Video */

.airline-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}


/* Dark Overlay */

.airline-glass::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(5,25,70,0.65);
    z-index:-1;
}



/* Section Title */

.section-title{
    text-align:center;
    color:white;
    margin-bottom:60px;
}


.section-title h2{
    font-size:55px;
    font-family:'Playfair Display',serif;
    font-weight:700;
    margin-bottom:15px;
}


.section-title p{
    font-size:20px;
    letter-spacing:2px;
    color:#ddd;
}



/* Slider */

.glass-slider{
    overflow:hidden;
    width:100%;
}


.glass-track{
    display:flex;
    gap:35px;
    width:max-content;
    animation:partnerMove 25s linear infinite;
}



/* Glass Card */

.glass-card{
    width:220px;
    height:130px;
    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.3);

    border-radius:25px;

    padding:25px;

    transition:0.4s;
}


.glass-card img{
    max-width:150px;
    max-height:80px;
    object-fit:contain;
}



/* Hover Effect */

.glass-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.3);
}



/* Auto Slider Animation */

@keyframes partnerMove{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}



/* Mobile Responsive */

@media(max-width:768px){

    .section-title h2{
        font-size:38px;
    }


    .glass-card{
        width:170px;
        height:110px;
    }


    .glass-card img{
        max-width:120px;
    }

}
/*===========END HERE AIRPLANE CODE========================*/

/*=========================================
      PREMIUM 3D CORPORATE CAROUSEL
=========================================*/

.corporate{
    padding:120px 0;
    background:linear-gradient(180deg,#f8fbff,#eef4fc);
    overflow:hidden;
    gap: 0px;
}

.corporateWrapper{
    width:100%;
    height:500px;

    display:flex;
    justify-content:center;
    align-items:center;
    perspective:1800px;
    margin-top:80px;   /* Add this */
gap: 10px;
    perspective:1800px;
}

.corporateCircle{

    position:relative;

    width:240px;
    height:420px;

    transform-style:preserve-3d;

    animation:rotateCorporate 22s linear infinite;
}

.corporateCircle:hover{
    animation-play-state:paused;
}

@keyframes rotateCorporate{

    from{
        transform:rotateX(-12deg) rotateY(0deg);
    }

    to{
        transform:rotateX(-12deg) rotateY(360deg);
    }

}

/*=============================
    CARD DESIGN
==============================*/

.corporateCard{

    position:absolute;

    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:45px 30px;

    border-radius:30px;

    background:linear-gradient(160deg,#072b6f,#0d3b94);

    color:#fff;

    border:2px solid rgba(201,145,28,.45);

    box-shadow:
    0 25px 60px rgba(7,43,111,.30);

    transition:.45s;

    overflow:hidden;

}

/* Gold Border */

.corporateCard::before{

    content:"";

    position:absolute;

    inset:12px;

    border:1px solid rgba(201,145,28,.45);

    border-radius:22px;

}

/* Gold Glow */

.corporateCard::after{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:rgba(201,145,28,.15);

    top:-80px;
    right:-60px;

}

/*==========================
     ICON
===========================*/

.corporateCard i{

    width:95px;
    height:95px;

    border-radius:50%;

    background:#c9911c;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:38px;

    margin-bottom:28px;

    z-index:2;

}

/*==========================
     TITLE
===========================*/

.corporateCard h3{

    font-size:28px;

    font-family:"Playfair Display",serif;

    margin-bottom:18px;

    z-index:2;

}

/*==========================
      TEXT
===========================*/

.corporateCard p{

    font-size:17px;

    line-height:1.8;

    color:#edf3ff;

    z-index:2;

}

/*==========================
      CARD POSITIONS
===========================*/

.corporateCard:nth-child(1){
transform:rotateY(0deg) translateZ(260px);
}

.corporateCard:nth-child(2){
transform:rotateY(60deg) translateZ(260px);
}

.corporateCard:nth-child(3){
transform:rotateY(120deg) translateZ(260px);
}

.corporateCard:nth-child(4){
transform:rotateY(180deg) translateZ(260px);
}

.corporateCard:nth-child(5){
transform:rotateY(240deg) translateZ(260px);
}

.corporateCard:nth-child(6){
transform:rotateY(300deg) translateZ(260px);
}

/*==========================
       HOVER
===========================*/

.corporateCard:hover{

    margin-top:-15px;

    box-shadow:
    0 40px 80px rgba(7,43,111,.35);

}

.corporateCard:hover i{

    background:#fff;

    color:#072b6f;

}
/* ======================why choose us start here=========================*/
.why{
    padding:100px 0;
    background:#f7f8fc;
}

.whyWrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
}

.whyLeft{
    width:45%;
    position:sticky;
    top:120px;
}

.whyLeft span{
    color:#0b63ff;
    font-weight:600;
    letter-spacing:2px;
}

.whyLeft h2{
    font-size:48px;
    margin:20px 0;
}

.whyLeft p{
    color:#666;
    line-height:1.8;
}

.whyBtn{
    display:inline-block;
    margin-top:30px;
    background:#0b63ff;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
}

.whyCards{
    width:45%;
    position:relative;
    height:600px;
}

.whyCard{
    position:absolute;
    width:100%;
    background:#fff;
    border-radius:25px;
    padding:35px;
    box-shadow:0 30px 70px rgba(0,0,0,.12);
    transition:.6s;
}

.whyCard:nth-child(1){
    top:0;
    z-index:5;
}

.whyCard:nth-child(2){
    top:40px;
    transform:scale(.95);
    opacity:.8;
    z-index:4;
}

.whyCard:nth-child(3){
    top:80px;
    transform:scale(.90);
    opacity:.65;
    z-index:3;
}

.whyCard:nth-child(4){
    top:120px;
    transform:scale(.85);
    opacity:.5;
    z-index:2;
}

.whyCard:nth-child(5){
    top:160px;
    transform:scale(.80);
    opacity:.35;
    z-index:1;
}

.whyCard i{
    font-size:42px;
    color:#0b63ff;
    margin-bottom:20px;
}

.whyCard h3{
    margin-bottom:15px;
}
/* ==========================
   1200px
========================== */

@media (max-width:1200px){

    .why-wrapper{
        gap:50px;
    }

    .why-left h2{
        font-size:46px;
    }

    .why-right{
        width:450px;
        height:460px;
    }

    .why-card{
        padding:32px;
    }

}


/* ==========================
   992px
========================== */

@media (max-width:992px){

    .why-wrapper{
        flex-direction:column;
        gap:60px;
    }

    .why-left,
    .why-right{
        width:100%;
        max-width:600px;
    }

    .why-left{
        text-align:center;
    }

    .why-left h2{
        font-size:40px;
    }

    .why-left p{
        font-size:17px;
    }

    .why-right{
        height:500px;
        margin:auto;
    }

}


/* ==========================
   768px
========================== */

@media (max-width:768px){

    .why{
        padding:70px 20px;
    }

    .why-left h2{
        font-size:34px;
    }

    .why-left p{
        font-size:16px;
    }

    .why-btn{
        padding:14px 30px;
    }

    .why-right{
        height:430px;
    }

    .why-card{

        padding:25px;
        border-radius:22px;

    }

    .why-card h3{

        font-size:22px;

    }

    .why-card p{

        font-size:15px;

    }

    .why-card i{

        font-size:34px;

    }

}


/* ==========================
   576px
========================== */

@media (max-width:576px){

    .why{

        padding:60px 15px;

    }

    .why-left h2{

        font-size:28px;

    }

    .why-left span{

        font-size:13px;

    }

    .why-right{

        height:360px;

    }

    .why-card{

        padding:20px;
        min-height:180px;

    }

    .why-card h3{

        font-size:18px;

    }

    .why-card p{

        font-size:14px;
        line-height:1.6;

    }

    .card-icon{

        width:55px;
        height:55px;

    }

    .card-icon i{

        font-size:24px;

    }

}


/* ==========================
   400px
========================== */

@media (max-width:400px){

    .why-left h2{

        font-size:24px;

    }

    .why-right{

        height:320px;

    }

    .why-card{

        padding:16px;

    }

}
/*=================================
STATISTICS
=================================*/

.statistics{

padding:120px 0;

background:#072b6f;

color:white;

}

.statsGrid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:70px;

}

.statCard{

text-align:center;

padding:45px;

background:rgba(255,255,255,.08);

border-radius:20px;

backdrop-filter:blur(10px);

transition:.35s;

}

.statCard:hover{

background:#c9911c;

}

.statCard i{

font-size:48px;

margin-bottom:20px;

}

.statCard h2{

font-size:52px;

font-family:"Playfair Display",serif;

margin-bottom:10px;

}

.statCard p{

font-size:18px;

}
/*=================================
STATISTICS END HERE
=================================*/

/*=================================
  TRANSPARENT ZOOM PRELOADER
=================================*/
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: opacity .6s ease, visibility .6s ease;
}

.preloader img {
    width: min(280px, 70vw);
    max-height: 180px;
    object-fit: contain;
    animation: logo-zoom-in 1.5s ease-in-out forwards;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes logo-zoom-in {
    0% { opacity: 0; transform: scale(.65); }
    35% { opacity: 1; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.28); }
}

@media (max-width: 560px) {
    .preloader img { width: min(220px, 75vw); }
}
/* ACHIEVEMENTS — phone responsive fix */

.statistics {
  overflow: hidden;
}

.statistics .container {
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

.statistics .statsGrid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

.statistics .statCard {
  min-width: 0 !important;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .statistics .statsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
}

@media (max-width: 560px) {
  .statistics {
    padding: 55px 16px !important;
  }

  .statistics .container {
    padding: 0 !important;
  }

  .statistics .sectionHeading h2 {
    font-size: 30px !important;
  }

  .statistics .sectionHeading p {
    font-size: 15px !important;
    margin-bottom: 32px !important;
  }

  .statistics .statsGrid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-top: 0 !important;
  }

  .statistics .statCard {
    width: 100% !important;
    padding: 28px 15px !important;
  }

  .statistics .statCard h2,
  .statistics .counter-display {
    font-size: 40px !important;
  }
}
.statistics .statCard {
  border: 2px solid #C99A43 !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.statistics .statCard:hover {
  border-color: #F2C55C !important;
  box-shadow: 0 12px 30px rgba(201, 154, 67, 0.28) !important;
}
.statistics .sectionHeading h2 {
  color: #ffffff !important;
}
.statistics .sectionHeading p {
  color: #ffffff !important;
}

/* WHY CHOOSE US — SCREEN RECORDING STYLE */

.why {
  padding: 100px 0 !important;
  background: #f7f8fc !important;
  overflow: hidden;
}

.whyWrapper {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr) !important;
  align-items: center;
  gap: clamp(50px, 7vw, 110px) !important;
}

.whyLeft {
  width: auto !important;
  position: static !important;
}

.whyLeft span {
  color: #0b63ff !important;
  font-size: 15px;
  font-weight: 700 !important;
  letter-spacing: 2.5px !important;
}

.whyLeft h2 {
  color: #13284b !important;
  font-size: clamp(42px, 4.2vw, 60px) !important;
  line-height: 1.6 !important;
  margin: 22px 0 !important;
}

.whyLeft p {
  max-width: 620px;
  color: #6b7280 !important;
  font-size: 17px;
  line-height: 2 !important;
}

.whyBtn {
  margin-top: 28px !important;
  padding: 15px 42px !important;
  background: #0b63ff !important;
  border-radius: 50px !important;
  box-shadow: 0 10px 24px rgba(11, 99, 255, 0.22);
}

.whyCards {
  width: auto !important;
  height: 510px !important;
  position: relative !important;
}

.whyCard {
  box-sizing: border-box;
  width: 100% !important;
  min-height: 250px;
  padding: 42px 45px !important;
  background: #ffffff !important;
  border-radius: 28px !important;
  animation: cardColorLoop 4s ease-in-out infinite !important;
  box-shadow: 0 30px 70px rgba(22, 37, 63, 0.13) !important;
}

.whyCard i {
  color: #0b63ff !important;
  font-size: 45px !important;
  margin-bottom: 22px !important;
}

.whyCard h3 {
  color: #172a4a !important;
  font-size: 25px;
  margin: 0 0 20px !important;
}

.whyCard p {
  color: #354052 !important;
  font-size: 17px;
  line-height: 1.7;
}

/* Phone */
@media (max-width: 800px) {
  .why {
    padding: 65px 0 !important;
  }

  .whyWrapper {
    grid-template-columns: 1fr !important;
    gap: 45px !important;
  }

  .whyLeft h2 {
    font-size: 38px !important;
    line-height: 1.35 !important;
  }

  .whyCards {
    width: 100% !important;
    height: 420px !important;
  }

  .whyCard {
    min-height: 220px;
    padding: 30px !important;
  }

  .whyCard h3 {
    font-size: 21px;
  }
}
.whyCard.card-leaving {
  opacity: 0 !important;
  transform: translateY(-100px) scale(0.88) !important;
}
/* WHY CHOOSE US CARDS — home page navy/gold matching */

.whyCard {
  background: #0A2E65 !important;
  border: 2px solid #C99A43 !important;
  border-radius: 28px !important;
  box-shadow: 0 22px 55px rgba(10, 46, 101, 0.25) !important;
}

.whyCard i {
  color: #C99A43 !important;
}

.whyCard h3 {
  color: #ffffff !important;
}

.whyCard p {
  color: #d9e5f2 !important;
}
/* WHY CARDS: AUTOMATIC WHITE TO BLUE */

.whyCard {
  background: #ffffff !important;
  border: 2px solid #C99A43 !important;
  transition: background 0.7s ease, color 0.7s ease !important;
}

.whyCard.is-blue {
  background: #0A2E65 !important;
}

.whyCard.is-blue i {
  color: #C99A43 !important;
}

.whyCard.is-blue h3 {
  color: #ffffff !important;
}

.whyCard.is-blue p {
  color: #d9e5f2 !important;
}
/* AUTO BLUE → WHITE → BLUE → WHITE */

.whyCard {
  animation: cardColorLoop 4s ease-in-out infinite !important;
}

.whyCard h3 {
  animation: titleColorLoop 4s ease-in-out infinite !important;
}

.whyCard p {
  animation: textColorLoop 4s ease-in-out infinite !important;
}

.whyCard i {
  animation: iconColorLoop 4s ease-in-out infinite !important;
}

@keyframes cardColorLoop {
  0%, 100% {
    background: #0A2E65;
  }

  50% {
    background: #ffffff;
  }
}

@keyframes titleColorLoop {
  0%, 100% {
    color: #ffffff;
  }

  50% {
    color: #172a4a;
  }
}

@keyframes textColorLoop {
  0%, 100% {
    color: #d9e5f2;
  }

  50% {
    color: #4b5563;
  }
}

@keyframes iconColorLoop {
  0%, 100% {
    color: #C99A43;
  }

  50% {
    color: #0b63ff;
  }
}

/* FINAL RESPONSIVE FIX — ALL DEVICES */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1200px, calc(100% - 40px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* WHY CHOOSE US */
.whyWrapper {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr) !important;
  gap: clamp(35px, 6vw, 90px) !important;
}

.whyLeft,
.whyCards {
  width: auto !important;
  min-width: 0 !important;
}

/* ACHIEVEMENTS */
.statistics .statsGrid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

.statistics .statCard {
  min-width: 0 !important;
  width: 100% !important;
}

/* TABLET / SMALL LAPTOP */
@media (max-width: 1000px) {
  .container {
    width: min(100% - 40px, 900px) !important;
  }

  .whyWrapper {
    grid-template-columns: 1fr !important;
    gap: 50px !important;
  }

  .whyLeft {
    max-width: 680px;
  }

  .whyCards {
    width: min(100%, 620px) !important;
    margin: auto;
  }

  .statistics .statsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* PHONE */
@media (max-width: 600px) {
  .container {
    width: calc(100% - 32px) !important;
  }

  .why {
    padding: 65px 0 !important;
  }

  .whyLeft h2 {
    font-size: clamp(32px, 10vw, 42px) !important;
    line-height: 1.3 !important;
  }

  .whyLeft p {
    font-size: 16px !important;
    line-height: 1.7 !important;
  }

  .whyCards {
    height: 410px !important;
  }

  .whyCard {
    padding: 28px 24px !important;
    min-height: 205px !important;
    border-radius: 22px !important;
  }

  .whyCard i {
    font-size: 36px !important;
  }

  .whyCard h3 {
    font-size: 21px !important;
  }

  .whyCard p {
    font-size: 15px !important;
  }

  .statistics {
    padding: 60px 0 !important;
  }

  .statistics .sectionHeading h2 {
    font-size: 30px !important;
  }

  .statistics .statsGrid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .statistics .statCard {
    padding: 28px 16px !important;
  }

  .statistics .counter-display,
  .statistics .statCard h2 {
    font-size: 40px !important;
  }
}

/* SMALL PHONE */
@media (max-width: 380px) {
  .container {
    width: calc(100% - 24px) !important;
  }

  .whyLeft h2 {
    font-size: 31px !important;
  }

  .whyCards {
    height: 380px !important;
  }

  .whyCard {
    padding: 24px 20px !important;
  }
}
/* PHONE HOME PAGE — SANTORINI HERO */

@media (max-width: 600px) {
  .header {
    position: relative !important;
    background: #eef5ff !important;
    z-index: 100 !important;
  }

  .nav-wrap {
    width: 100% !important;
    min-height: 112px !important;
    padding: 14px 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .brand img {
    width: 110px !important;
    height: auto !important;
  }

  .nav-cta {
    display: none !important;
  }

  .menu-button {
    display: inline-flex !important;
    width: 55px !important;
    height: 42px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #102d57 !important;
    font-size: 27px !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15) !important;
  }

  .menu {
    display: none !important;
    position: absolute !important;
    top: 105px !important;
    right: 18px !important;
    left: 18px !important;
    padding: 12px !important;
    background: #ffffff !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18) !important;
  }

  .menu.is-open {
    display: grid !important;
    gap: 3px !important;
  }

  .menu a {
    padding: 13px !important;
    color: #102d57 !important;
  }

  .hero {
    min-height: 665px !important;
    padding: 0 20px 28px !important;
    display: flex !important;
    align-items: center !important;
    background:
      linear-gradient(rgba(255, 255, 255, 0.08), rgba(0, 25, 60, 0.10)),
      url("../assets/background.jpg") center / cover no-repeat !important;
  }

  .hero-content {
    width: 100% !important;
    padding: 80px 0 0 !important;
    text-align: center !important;
  }

  .hero h1,
  .hero-content h1 {
    color: #082d6b !important;
    font-size: clamp(46px, 13vw, 62px) !important;
    line-height: 1.08 !important;
    margin: 0 0 18px !important;
    text-align: center !important;
  }

  .hero-copy {
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.55 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin-top: 45px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    min-height: 74px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    border-radius: 12px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
  }

  .hero-actions .btn-gold {
    background: #d79b15 !important;
    color: #ffffff !important;
    border: 0 !important;
  }

  .hero-actions .btn-outline {
    background: rgba(255, 255, 255, 0.78) !important;
    color: #082d6b !important;
    border: 3px solid #082d6b !important;
  }
}
@media (max-width: 600px) {
  .brand img {
    width: 145px !important;
    max-height: 90px !important;
  }
}
.testimonials {
  padding: 92px 0 82px;
  overflow: hidden;
  background: #eaf5ff;
}

.testimonials-heading {
  margin: 0 auto 68px;
  text-align: center;
}

.testimonials-heading .eyebrow {
  margin-bottom: 4px;
  color: #c99a43;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonials-heading h2 {
  margin: 0;
  color: #082a62;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 4.2vw, 56px);
}

.testimonials-heading > p:last-child {
  color: #5c6879;
  font-size: 17px;
}

.testimonials-slider-window {
  width: 100%;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 0 21px;
  animation: testimonialMove 26s linear infinite;
}

.testimonial-card {
  display: flex;
  flex: 0 0 360px;
  min-height: 328px;
  padding: 40px 30px 32px;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border: 3px solid #123d73;
  border-radius: 28px;
  background: rgba(255, 255, 255, .19);
}

.testimonial-card > i {
  margin-bottom: 22px;
  color: #cb9617;
  font-size: 42px;
}

.testimonial-card h3 {
  margin: 0 0 8px;
  color: #082a62;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
}

.testimonial-card blockquote {
  margin: 0;
  color: #536174;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  margin: auto 0 0;
  color: #c99724;
  font-weight: 700;
}

.testimonials-slider-window:hover .testimonials-track {
  animation-play-state: paused;
}

@keyframes testimonialMove {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 620px) {
  .testimonials {
    padding: 68px 0 58px;
  }

  .testimonial-card {
    flex-basis: 82vw;
    min-height: 320px;
    padding: 34px 24px 28px;
    border-width: 2px;
  }

  .testimonials-track {
    gap: 20px;
  }
}
.footerContainer{
    margin-top: 50px;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
}

.footerLogo{
    width:180px;
    margin-bottom:20px;
}

.footerBox h3{
    text-align: center;
    font-size:24px;
    margin-bottom:22px;
    color:#fff;
    font-family:"Playfair Display",serif;
}

.footerBox p{
    text-align: center;
    color:#d9e3f7;
    line-height:1.9;
    margin-bottom:14px;
}

.footerBox ul{
    list-style:none;
    padding:0;
}

.footerBox ul li{
    margin-bottom:14px;
}

.footerBox ul li a{
    color:#d9e3f7;
    transition:.3s;
}

.footerBox ul li a:hover{
    color:#c9911c;
    padding-left:6px;
}

.footerBox i{
    color:#c9911c;
    margin-right:10px;
}

.socialIcons{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.socialIcons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.socialIcons a:hover{
    background:#c9911c;
    color:#fff;
    transform:translateY(-5px);
}

.footerBottom{
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:60px;
    padding-top:25px;
    text-align:center;
}

.footerBottom p{
    color:#cfd8ec;
    font-size:15px;
}
.contactDots{
    position:absolute;
    top:70px;
    right:120px;
    width:180px;
    height:180px;
    background-image:radial-gradient(#a57909 2px,transparent 2px);
    background-size:22px 22px;
    opacity:.35;
    z-index:1;
}
/* ===========================
   FOOTER MOBILE FIX
=========================== */

@media (max-width:768px){

.footer{
    padding:60px 20px 30px;
}

.footerContainer{
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
}

.footerLogo img{
    width:170px;
    margin:0 auto 20px;
    display:block;
}

.footerLogo h3{
    font-size:34px;
    line-height:1.2;
    margin-bottom:20px;
}

.footerLogo p{
    font-size:16px;
    line-height:1.8;
    max-width:100%;
}

.footerLinks,
.footerServices,
.footerContact{
    width:100%;
}

.footerLinks h3,
.footerServices h3,
.footerContact h3{
    font-size:28px;
    margin-bottom:20px;
}

.footerLinks ul,
.footerServices ul,
.footerContact ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footerLinks li,
.footerServices li,
.footerContact li{
    margin:12px 0;
}

.footerLinks a,
.footerServices a,
.footerContact a{
    font-size:17px;
    line-height:1.7;
}

.footerBottom{
    text-align:center;
    padding-top:25px;
    font-size:14px;
}

}