* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
}
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 50px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
header .logo img {
    height: 60px; /* Adjust based on your image size */
}

header .nav-links ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

header .nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 600; /* Semi-bold for links */
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

header .nav-links a.active {
    color: #0038a8;
    border-bottom: 3px solid #333; 
}

header .nav-links a:hover {
    color: #0038a8;
}

header .contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
header .phone-icon {
    background-color: #1a3c9e;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .phone-text {
    display: flex;
    flex-direction: column;
}
header .phone-text span {
    font-size: 11px;
    font-weight: 700; /* Bold sub-text */
    text-transform: uppercase;
    color: #333;
    letter-spacing: 0.3px;
}
header .phone-text a {
    font-size: 21px;
    font-weight: 700;
    color: #1a3c9e;
    text-decoration: none;
    line-height: 1.4;
}
header .menu-toggle, .hamburger {
    display: none; /* Hide burger on desktop */
}
@media (max-width: 1024px) {
.navbar {
    padding: 15px 20px;
    position: relative;
}
header .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    order: 2; /* Moves burger to the right */
}
header .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: 0.3s;
}
header .menu-toggle {
    display: none;
}
header .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    height: 0; /* Hidden by default */
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    z-index: 100;
}
header .nav-links ul {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
}
header .contact-info {
    order: 1;
    margin-left: auto;
    margin-right: 20px;
}
header .phone-text span {
    display: none;
}
header .phone-text a {
    font-size: 16px;
}
header .menu-toggle:checked ~ .nav-links {
    height: 320px;
}
header .menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
header .menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
}
header .menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
}

/* Extra small mobile adjustments */
@media (max-width: 480px) {
header .logo img {
    height: 40px;
}
header .contact-info {
    gap: 5px;
}
header .phone-icon {
    width: 30px;
    height: 30px;
}
}

/*========= Banner =======*/
/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 0;
    overflow: hidden;
    z-index: 1;
    padding: 70px 0;
}

/* Background Decorations */
.hero-bg-img {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../images/banner-one-shape-bg.png');
    background-size: cover;
    opacity: 0.1;
    mix-blend-mode: difference;
    z-index: -2;
}

.hero-blue-rect {
    position: absolute; top: 0; bottom: 0; right: 0;
    width: 30%;
    background-color: #1537a7;
    z-index: -1;
}

.hero-slant {
    position: absolute; top: -20%; left: -10%;
    width: 60%; height: 150%;
    background: #1537a7;
    opacity: 0.05;
    transform: rotate(-45deg);
    z-index: -1;
}

/* Layout Grid */
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-img-box {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    right: -90px;
}

.hero-img-box img {
    max-width: 130%; /* Overlap effect */
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
}

/* Typography */
.hero-sub {
    font-size: 18px;
    font-weight: 500;
    color: #131222;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 51px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #131222;
}
.hero-title span {
    color: #1537a7;
}

.hero-text {
    color: rgba(19, 18, 34, 0.7);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 35px;
    font-size: 15px;
}

/* Button */
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1537a7;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-main:hover {
    background-color: #0e267a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(21, 55, 167, 0.3);
}

/* Animation */
.float-anim {
    animation: float-y 3s ease-in-out infinite;
}

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- Responsive Queries --- */

/* iPad / Tablet */
@media (max-width: 1024px) {
    .hero-title { font-size: 48px; }
    .hero-img-box img { max-width: 110%; }
    .hero-blue-rect { width: 20%; }
}

/* Mobile */
@media (max-width: 768px) {
    .hero { padding: 30px 0 0 0; text-align: center; }
    
    .hero-inner { flex-direction: column; }
    
    .hero-content { order: 1; }
    .hero-img-box { order: 2; margin-top: 0; width: 100%; justify-content: center; }
    
    .hero-img-box img { max-width: 100%; }
    
    .hero-text { margin: 0 auto 30px; }
    
    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }

    .hero-blue-rect {
        width: 100%; height: 25%; top: auto; bottom: 0;
    }
}

.affordableSec {
    background-color: #0f111a;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}

.info-card__wrapper {
    background-color: #ffffff;
    border-radius: 24px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Image Side */
.info-card__image-box {
    flex: 1;
    min-height: 400px;
}

.info-card__image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Side */
.info-card__content-box {
    flex: 1.1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card__badge {
    color: #1537a7;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.info-card__main-title {
    font-size: 38px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.info-card__lead-text {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Feature Items */
.info-card__item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-card__icon {
    color: #1537a7;
    font-size: 18px;
    margin-top: 4px;
}

.info-card__item-text {
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
}

.info-card__item-text strong {
    color: #000000;
    font-weight: 700;
}

/* Button */
.info-card__button {
    display: inline-block;
    align-self: flex-start;
    background-color: #1537a7;
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(21, 55, 167, 0.2);
}

.info-card__button:hover {
    background-color: #0e267a;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(21, 55, 167, 0.3);
}

/* --- Responsive Layout --- */

/* Tablets (iPad) */
@media (max-width: 992px) {
    .info-card__content-box {
        padding: 40px;
    }
    .info-card__main-title {
        font-size: 32px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .info-card__wrapper {
        flex-direction: column;
    }

    .info-card__image-box {
        min-height: 300px;
    }

    .info-card__content-box {
        padding: 40px 25px;
        text-align: center;
    }

    .info-card__item {
        text-align: left;
    }

    .info-card__button {
        align-self: center;
        width: 100%;
        text-align: center;
    }
}

/*******Exclisive Save*******/
.dest-grid {
    padding: 60px 0;
    background-color: #f4f9ff;
}

/* Header */
.dest-grid__header {
    text-align: center;
    margin-bottom: 50px;
}

.dest-grid__badge {
    color: #0056b3;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.dest-grid__title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}

.dest-grid__subtitle {
    font-size: 14px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Wrapper */
.dest-grid__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 boxes per row */
    gap: 25px;
}

/* Individual Box */
.dest-grid__box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s ease;
}

.dest-grid__box:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.dest-grid__img {
    height: 180px;
    background-color: #f0f0f0;
}

.dest-grid__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-grid__body {
    padding: 25px 15px;
}

.dest-grid__name {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    margin-top: 0;
}

.dest-grid__info {
    font-size: 12px;
    color: #777;
    margin: 0;
}

.dest-grid__price {
    font-size: 14px;
    color: #0038a8;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 8px;
}

.dest-grid__price span {
    font-size: 17px;
    font-weight: 800;
}

/* Button */
.dest-grid__btn {
    display: inline-block;
    padding: 8px 25px;
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
}

.dest-grid__btn:hover {
    background-color: #0038a8;
    border-color: #0038a8;
    color: #fff;
}

/* --- Responsive Media Queries --- */

/* Tablets (iPad) */
@media (max-width: 1024px) {
    .dest-grid__wrapper {
        grid-template-columns: repeat(2, 1fr); /* 2 boxes per row */
        gap: 20px;
    }
    .dest-grid__title {
        font-size: 30px;
    }
}
/* Desktop Grid (Active when Owl is NOT loaded) */
.dest-grid__wrapper:not(.owl-loaded) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .dest-grid__wrapper:not(.owl-loaded) {
        display: block; /* Fallback before JS loads */
    }
    
    /* Ensure the carousel doesn't overflow during init */
    .dest-grid__wrapper {
        display: block;
        width: 100%;
    }
}
/* Mobile Devices */
@media (max-width: 600px) {
    .dest-grid__wrapper {
        grid-template-columns: 1fr; /* 1 box per row */
    }
    .dest-grid__title {
        font-size: 26px;
    }
    .dest-grid {
        padding: 50px 0;
    }
}

/*Why Choose Us*/
.whyChs {
    padding: 60px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.why-header { margin-bottom: 50px; }

.why-badge {
    color: #0038a8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.why-main-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    margin-top: 0;
}

.why-subtitle {
    color: #666;
    max-width: 750px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
}

/* Grid */
.why-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.why-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.why-card:hover { transform: translateY(-8px); }

/* Icons */
.why-icon {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 22px;
}

.why-blue   { background: #007bff; }
.why-green  { background: #28a745; }
.why-yellow { background: #ffc107; }
.why-red    { background: #dc3545; }

.why-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-text {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .why-main-title { font-size: 28px; }
    .why-card { flex: 1 1 45%; }
    .why-grid {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .why-card { flex: 1 1 100%; }
} 

/*Testimonial*/
.testi {
    padding: 60px 0;
    background-color: #f8faff;
}
/* --- Header Section --- */
.testi-header {
    text-align: center;
    margin-bottom: 40px;
}

.testi-badge {
    color: #007bff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.testi-title {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.testi-subtitle {
    color: #666;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 15px;
}

/* --- Grid & Cards --- */
.testi-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testi-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    flex: 1;
    width: 33.33%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f4f8;
    transition: transform 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-8px);
}

.testi-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

/* --- User Profile Info --- */
.testi-user {
    display: flex;
    align-items: center;
}

.testi-avatar {
    width: 60px;
    height: 60px;
    background: #3c567a; /* Dark blue/slate as seen in img */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-right: 15px;
}

.testi-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.testi-info p {
    font-size: 13px;
    color: #888;
}

.testi-quote {
    font-size: 36px;
    color: #e3effd; /* Very light blue quote marks */
}

/* --- Text & Star Rating --- */
.testi-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testi-stars {
    color: #ffc107; /* Yellow star color */
    font-size: 14px;
    letter-spacing: 2px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .testi-title { font-size: 34px; }
    .testi-card { flex: 1 1 45%; max-width: 45%; }
}

@media (max-width: 768px) {
    .testi { padding: 60px 0; }
    .testi-title { font-size: 28px; }
    .testi-card { flex: 1 1 100%; max-width: 100%; }
    .testi-header { margin-bottom: 40px; }
}

/*Footer*/
.ft {
    background-color: #000;
    color: #fff;
    padding: 50px 0 20px 0;
}

.ft-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Top Row --- */
.ft-main {
    display: flex;
    justify-content: space-between;
    gap: 40px 0;
    margin-bottom: 60px;
}

.ft-col { flex: 1; min-width: 20%;}
.ft-col.ft-brand{
    min-width: 25%;
    padding-right: 50px;
}
.ft-col.ft-news{
    min-width: 28%
}
.ft-h4 { font-size: 16px; font-weight: 500; margin-bottom: 10px; color: #fff;}

.ft-logo { height: 60px; margin-bottom: 20px; }
.ft-contact-info p { 
    font-size: 14px; 
    color: #fff; 
    margin-bottom: 12px; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}

.ft-links { list-style: none; }
.ft-links li { margin-bottom: 10px; }
.ft-links a { color: #fff; text-decoration: none; font-size: 14px; transition: 0.3s; }
.ft-links a:hover { color: #2b56f5; text-decoration: underline; padding-left: 4px}

/* --- Newsletter --- */
.ft-news-sub { font-size: 13px; color: #ccc; margin-bottom: 15px; }
.ft-input-group { position: relative; margin-bottom: 15px; }
.ft-input-group i { position: absolute; left: 15px; top: 18px; color: #666; }
.ft-input-group input { 
    width: 100%; 
    background: transparent; 
    border: 1px solid #fff; 
    border-radius: 8px; 
    padding: 15px 15px 15px 45px; 
    color: #fff; 
}
.ft-btn { 
    width: 100%; 
    background: #1a3c9e; 
    color: #fff; 
    border: none; 
    padding: 15px; 
    border-radius: 8px; 
    font-weight: 700; 
    cursor: pointer; 
}

/* --- The Rounded Contact Bar (Exact Match) --- */
.ft-bar {
    display: flex;
    border: 1px solid #333;
    border-radius: 20px;
    margin-bottom: 30px;
}

.ft-bar-item {
    flex: 1;
    padding: 14px 70px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-right: 1px solid #333;
}

.ft-bar-item:last-child { border-right: none; }

.ft-bar-icon i { font-size: 45px; color: #fff; }
.ft-bar-content span { display: block; font-size: 13px; margin-bottom: 5px; }
.ft-bar-content a { color: #fff; font-size: 24px; font-weight: 900; text-decoration: none; }
.ft-bar-content p { font-size: 13px; color: #888; line-height: 1.4; }

.ft-bar-social { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.ft-socials { display: flex; gap: 20px; font-size: 20px; margin-top: 0; }
.ft-socials a { color: #fff; text-decoration: none; }

/* --- Bottom Copyright --- */
.ft-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #fff;
}

.ft-legal { display: flex; gap: 20px; }
.ft-legal a { color: #fff; text-decoration: none; }
.ft-legal a:hover { color: #2b56f5; text-decoration: underline;}
footer.ft ul {
    margin: 0;
    padding: 0;
}
/* --- Responsive --- */
@media (max-width: 992px) {
    .ft-bar { flex-direction: column; }
    .ft-bar-item { border-right: none; border-bottom: 1px solid #333; }
    .ft-main { text-align: center; justify-content: center; }
}

@media (max-width: 767px) {
header .phone-text a {
    display: none;
}
header .contact-info {
    margin-right: 10px;
}
.ft-main {
    flex-wrap: wrap;
}
.ft-col.ft-brand {
    min-width: 100%;
    padding-right: 0;
}
.ft-col {
    min-width: 50%;
    text-align: left;
}
.ft-col.ft-news{
    min-width: 100%
}
.ft-bottom {
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
    justify-content: center;
}
.ft-bar-item {
    padding: 14px 20px;
 }
.ft-bar-item .ft-h4 {
    margin-bottom: 0;
}
.ft-main {
    margin-bottom: 25px;
}




}