/* topbar start */
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
}

/* 🌿 Header Strip */
.header-strip {
    background: #0C2B64;
    color: #000;
    font-size: 15px;
    letter-spacing: 0.3px;
}

/* 📞 Info Links */
.info-link {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.info-link i {
    font-size: 18px;
    color: #ffffff;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.info-link:hover {
    color: #fff;
}

.info-link:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #fff;
}

/* 🌟 3D Social Buttons */
.social-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(145deg, #6e8078, #829c90);
    box-shadow: inset 3px 3px 6px rgba(255, 255, 255, 0.2),
        inset -3px -3px 6px rgba(0, 0, 0, 0.2),
        0 5px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* 🎨 Brand Colors */
.social-btn.fb {
    background: linear-gradient(145deg, #1b4db8, #1877f2);
}

.social-btn.insta {
    background: radial-gradient(circle at 30% 107%,
            #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

/* ✨ Hover Animation */
.social-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.35),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3);
    filter: brightness(1.1);
}

.social-btn i {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .email-hide {
        display: none !important;
    }

    .header-strip {
        text-align: center;
    }
}

/* topbar end */

/* navbar start */
/* 🌿 Navbar */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 80px;
    width: auto;
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 60px;
    }
}

.navbar-brand {
    font-weight: 700;
    font-size: 26px;
    text-decoration: none;
    background: linear-gradient(90deg, #e03131, #198754);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: #0c2b64 !important;
    font-weight: 700;
    margin-right: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 17px;
}

.navbar-nav .nav-link:hover {
    color: #c7302e !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border-color: #0c2b64;
}

.navbar-toggler-icon {
    filter: invert(18%) sepia(26%) saturate(2276%) hue-rotate(195deg) brightness(92%) contrast(93%);
}


/* 🌿 Responsive navbar height */
@media (max-width: 991px) {
    .navbar {
        height: auto;
        padding: 10px 0;
    }

    .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
        text-align: center;
    }

    /* ✅ Center Book Now button on mobile */
    .order-btn {
        display: block;
        margin: 10px auto;
        width: fit-content;
    }
}

.navbar .order-btn {
    display: block;         /* Make it block to center */
    margin: 0 auto;         /* Center horizontally */
    text-align: center;     /* Center text inside button */
    width: auto;            /* Adjust width according to text */
    padding: 10px 25px;     /* Adjust padding */
    border-radius: 50px;    /* Rounded button */
    transition: all 0.3s ease;
}

.navbar .order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


/* navbar end */

/* crousel start */
/* 🖼️ Carousel Section */
.hero-carousel-item {
    height: 80vh;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(65%);
}

/* 🌈 Overlay Text */
.hero-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    color: #fff;
}

.hero-caption h2 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffeded;
    letter-spacing: 1px;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 1s ease-in-out;
}

.hero-caption p {
    font-size: 1.25rem;
    color: #f3f3f3;
    margin: 10px 0 25px;
    animation: fadeInUp 1.3s ease-in-out;
}

/* ✨ Button */
.hero-btn {
    background-color: #c93331;
    color: #fff;
    font-weight: 600;
    padding: 10px 32px;
    border-radius: 50px;
    border: 2px solid #c93331;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #0c2b64;
    border-color: #0c2b64;
    transform: scale(1.05);
    color: #fff;
}

/* 💫 Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .hero-carousel-item {
        height: 50vh;
    }

    .hero-caption h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-carousel-item {
        height: 25vh;
    }

    .hero-caption {
        background: rgba(0, 0, 0, 0.20);
    }

    .hero-caption h2 {
        font-size: 1.8rem;
    }

    .hero-caption p {
        font-size: 1rem;
    }

    .hero-btn {
        padding: 8px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-carousel-item {
        height: 30vh;
    }

    .hero-caption h2 {
        font-size: 1.4rem;
    }
}

/* crousel end */

/* fixed btn start */
/* ✅ Fixed WhatsApp, Email & Facebook Buttons */
.fixed-contact-buttons {
  position: fixed;
  left: 25px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 9999;
}

.fixed-contact-buttons a {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25),
              inset 0 2px 4px rgba(255, 255, 255, 0.3),
              inset 0 -4px 6px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.fixed-contact-buttons a::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4), transparent 70%);
  transition: all 0.3s ease;
}

.whatsapp-btn { background: linear-gradient(145deg, #4cdb55, #128C7E); }
.email-btn { background: linear-gradient(145deg, #EA4335, #C5221F); }

/* Hover Effects */
.fixed-contact-buttons a:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35),
              inset 0 2px 6px rgba(255, 255, 255, 0.4);
}

.fixed-contact-buttons a:hover::before {
  transform: scale(1.4);
  opacity: 0.7;
}

.fixed-contact-buttons a i {
  transition: transform 0.3s ease;
}

.fixed-contact-buttons a:hover i {
  transform: scale(1.2) rotate(10deg);
}

/* Button Label */
.fixed-contact-buttons .btn-label {
  position: absolute;
  left: 90px;
  background-color: #333;
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.fixed-contact-buttons a:hover .btn-label {
  opacity: 1;
  left: 80px;
}

/* Responsive */
@media (max-width: 768px) {
  .fixed-contact-buttons a {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
  .fixed-contact-buttons .btn-label {
    display: none; /* hide labels on mobile */
  }
}
/* fixed btn end */


/* welcome start */
.welcome-title {
    font-size: 3rem;
    font-weight: 700;
    color: #BB2D3B;
    letter-spacing: 1px;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
    padding: 30px 10px;
}

/* 📱 Mobile Font Size */
@media (max-width: 576px) {
    .welcome-title {
        font-size: 2rem; /* mobile ke liye kam font */
        padding: 20px 10px;
    }
}


.welcome-link {
    color: #0c2b64;
    /* Greenish Grey */
    text-decoration: none;
    transition: 0.3s ease;
}

.welcome-link:hover {
    color: #BB2D3B;
    /* Hover red */
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* welcome end */

/* about start */
.welcome-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 6%;
    background: #f8fdfb;
    gap: 40px;
    overflow: hidden;
}

.welcome-image,
.welcome-content {
    flex: 1 1 45%;
}

/* IMAGE */
.welcome-image {
    text-align: center;
    animation: fadeInLeft 1.5s ease;
}

.welcome-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    transition: transform 0.6s ease;
}

.welcome-image img:hover {
    transform: scale(1.05);
}

/* HEADING */
.welcome-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 44px;
    /* 🔥 PEHLE 38px THA — AB THODA BADHA KAR DIYA */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #0c2b64, #1c4694);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-content h2 span {
    background: linear-gradient(90deg, #bb2d3b, #bb2d3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* PARAGRAPH */
.welcome-content p {
    font-size: 16px;
    color: #2c2c2c;
    line-height: 1.8;
    margin-bottom: 18px;
}

.welcome-content p strong {
    font-weight: 700;
    color: #0c2b64;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .welcome-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: 30px 5%;
    }

    .welcome-content h2 {
        font-size: 70px;
        margin-top: 12px;
    }

    .welcome-content p {
        text-align: justify;
    }
}

@media (max-width: 575px) {
    .welcome-image img {
        max-width: 100%;
        /* Full width on small screens */
    }
}

@media (max-width: 575px) {
    .welcome-content h2 {
        font-size: 32px;
    }

    .welcome-content p {
        font-size: 14.5px;
    }
}

/* ANIMATIONS */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* about end */

/* why choose us start */
.choose-us-section {
    background: #f3faf7;
    padding: 30px 6%;
    text-align: center;
    overflow: hidden;
}

.choose-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0c2b64;
    opacity: 0;
    animation: fadeInDown 1.3s ease forwards;
}

.choose-title span {
    color: #bb2d3b;
}

/* GRID */
.choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Cards */
.choose-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    transition: 0.4s;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: cardFadeUp 1s ease forwards;
}

/* Animation delay */
.choose-card:nth-child(1) {
    animation-delay: 0.2s;
}

.choose-card:nth-child(2) {
    animation-delay: 0.4s;
}

.choose-card:nth-child(3) {
    animation-delay: 0.6s;
}

.choose-card:nth-child(4) {
    animation-delay: 0.8s;
}

.choose-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.choose-card .icon {
    font-size: 42px;
    margin-bottom: 12px;
    color: #758E82;
}

.choose-card h3 {
    font-size: 20px;
    color: #0c2b64;
    font-weight: 700;
    margin-bottom: 8px;
}

.choose-card p {
    color: #000000;
    font-size: 15.5px;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============= RESPONSIVE ============= */

/* Tablets */
@media (max-width: 991px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .choose-title {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .choose-card {
        padding: 22px;
    }
}

/* Mobiles */
@media (max-width: 575px) {
    .choose-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .choose-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .choose-card {
        padding: 20px;
    }

    .choose-card h3 {
        font-size: 18px;
    }

    .choose-card p {
        font-size: 14.5px;
    }

    .choose-card .icon {
        font-size: 36px;
    }
}

/* Very small phones (350px) */
@media (max-width: 350px) {
    .choose-title {
        font-size: 24px;
    }

    .choose-card {
        padding: 16px;
    }

    .choose-card p {
        font-size: 14px;
    }
}

/* why choose us end */

/* product start */
.products-section {
    padding: 30px 6%;
    background: #f8fdfb;
    text-align: center;
}

.product-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0c2b64;
}

.product-title span {
    color: #bb2d3b;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    transition: 0.4s;
    text-decoration: none;
    color: inherit;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: cardFadeUp 1s ease forwards;
}

.product-card img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 10px;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.product-card h3 {
    font-size: 20px;
    color: #0c2b64;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-card p {
    color: #000000;
    font-size: 15px;
    line-height: 1.6;
}

/* Delay animations for each card */
.product-card:nth-child(1) {
    animation-delay: 0.2s;
}

.product-card:nth-child(2) {
    animation-delay: 0.4s;
}

.product-card:nth-child(3) {
    animation-delay: 0.6s;
}

.product-card:nth-child(4) {
    animation-delay: 0.8s;
}

.product-card:nth-child(5) {
    animation-delay: 1s;
}

.product-card:nth-child(6) {
    animation-delay: 1.2s;
}

.product-card:nth-child(7) {
    animation-delay: 1.4s;
}

.product-card:nth-child(8) {
    animation-delay: 1.6s;
}

@keyframes cardFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-title {
        font-size: 26px;
    }
}

/* product end */

/* contact us start */
/* ===== Contact Section ===== */
/* ===== Contact Section ===== */
.contact-container {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-top: 4px solid #bb2d3b;
}

/* ⭐ Updated class: form-title */
.form-title {
    font-weight: 600;
    color: #333;
}

/* ⭐ Updated class: input-field */
.input-field {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #ced4da;
    transition: 0.3s;
}

.input-field:focus {
    border-color: #bb2d3b;
    box-shadow: 0 0 8px rgba(187, 45, 59, 0.4);
}

/* ⭐ Updated class: message-box */
.message-box {
    height: auto;
}

/* ⭐ Updated class: icon-box */
.icon-box {
    background: #bb2d3b;
    color: white;
    border: none;
}

/* ⭐ Updated class: submit-btn */
.submit-btn {
    display: block;
    margin: 25px auto 0;
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    background: linear-gradient(45deg, #bb2d3b, #ff7f50);
    border: none;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ⭐ Updated class: map-frame */
.map-frame {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 15px;
}


/* contact us end */

/* footer start */
/* ===== Custom Footer ===== */
.custom-footer {
    background-color: #0c2b64;
    /* main background */
    color: #fff;
    padding: 60px 0 20px;
}

.custom-footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #bb2d3b;
    /* heading color */
}

.custom-footer p,
.custom-footer a {
    color: #fff;
    font-size: 0.95rem;
}

.custom-footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-footer a:hover {
    color: #bb2d3b;
    /* hover accent color */
}

.custom-footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #bb2d3b;
    margin-bottom: 15px;
}

.custom-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #bb2d3b;
    /* icon background */
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.custom-social-icons a:hover {
    background: #fff;
    color: #bb2d3b;
    /* hover effect */
    transform: translateY(-3px);
}

.custom-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 15px;
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .custom-footer {
        text-align: center;
    }

    .custom-social-icons {
        justify-content: center;
    }

    .custom-social-icons a {
        margin: 5px;
    }
}

/* foooter end */