* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

/* TOP BAR */
.top-bar {
    background: linear-gradient(90deg, rgb(255, 223, 43), rgb(245, 224, 106));
    box-shadow: 0 5px 20px rgba(255, 212, 71, 0.4);
    color: white;
    padding: 7px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}
.top-left a{
    text-decoration: none;
    cursor: pointer;
    color: black;
}

.top-left span {
    margin-right: 170px;
}

.top-right i {
    margin-left: 30px;
    cursor: pointer;
    font-size: 18px;
    color: black;
}

/* MAIN HEADER */
.main-header {
    background: white;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    padding-bottom: 4px;
    font-weight: bold;
}

.nav-links a.active {
    border-bottom: 3px solid #cf7b21;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropbtn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
    
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 28px;
    left: 0;
    border: 1px solid #ddd;
    width: 200px;
    z-index: 10;
    color: whitesmoke;
    background: linear-gradient(90deg, #b31217, #e52d27);
}

.dropdown-content a {
    padding: 10px;
    text-decoration: none;
    display: block;
    color: whitesmoke;
    font-weight: none;
    font-size: 17px;
}

.dropdown:hover .dropdown-content {
    display: block;
}


.book-btn {
    background: linear-gradient(90deg, gold, rgb(248, 223, 77));
    box-shadow: 0 5px 20px rgba(255, 212, 71, 0.4);
    color: black;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
}

.mobile-enquire{
    display: none;
}

.menu-icon{
    display: none;
}

/* ============================
   SINGLE HERO BANNER WITH ANIMATION
   ============================ */
.hero-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
    z-index: 2;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    width: 90%;
    max-width: 1000px;
}

.animate-text {
    font-size: 58px;
    font-weight: bold;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out forwards;
}

.highlight {
    color: gold;
    text-shadow: 0 0 10px rgb(255, 236, 129);
}

.typing-text {
    font-size: 32px;
    margin: 20px 0;
    color: rgb(250, 227, 98);
    overflow: hidden;
    border-right: 4px solid #e52d27;
    white-space: nowrap;
    animation: typing 4s steps(50) forwards, blink 0.8s infinite;
    width: 0;
    display: inline-block;
}

.subtitle {
    font-size: 22px;
    margin: 25px 0 40px;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 2s forwards;
    color: #ddd;
}

.banner-buttons {
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 3s forwards;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    margin: 0 10px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(90deg, #005bea, #00c6fb);
    color: white;
    box-shadow: 0 5px 20px rgba(60, 95, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(56, 136, 248, 0.6);
}

.btn-secondary {
    background: linear-gradient(90deg, gold, rgb(248, 223, 77));
    color: black;
    box-shadow: 0 5px 20px rgba(255, 212, 71, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 212, 71, 0.4);
}

.headings h5{
    text-align: center;
    font-family: "Cedarville Cursive", cursive;
    color: rgb(255, 136, 0);
    font-size: 25px;
}

.headings h2{
    text-align: center;
    font-family: "Manrope", sans-serif;
    color: black;
    font-size: 40px;
}

.headings p{
    text-align: center;
    color: black;
    font-size: 18px;
    padding-top: 25px;
}

.fecilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 80px 120px;
  background:none;
}

.facility-card {
  text-align: left;
  max-width: 320px;
}

.facility-card img {
  width: 70px;
  margin-bottom: 15px;
}

.facility-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.facility-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typing {
    from { width: 0; }
    to { width: 85%; }
}

@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: #e52d27; }
}

/* ============================
   IMAGES WITH FIGCAPTION + SCROLL ANIMATION
   ============================ */
.image-caption-section {
    padding: 100px 5%;
    background: #ffffff;
    margin-bottom: 20px;
}

.caption-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* CENTERED "OUR SERVICES" BUTTON */
.services-btn-container {
    text-align: center;
    margin-top: 60px;
    padding: 20px 0;
    margin-bottom: 30px;
}

.services-btn {
    display: inline-block;
    background: linear-gradient(90deg, gold, rgb(248, 223, 77));
    box-shadow: 0 5px 20px rgba(255, 212, 71, 0.4);
    font-size: 20px;
    font-weight: bold;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(255, 212, 71, 0.4);
    transition: all 0.4s ease;
    color: black;
}

.services-btn:hover {
    transform: translateY(-5px);
    background: linear-gradient(90deg, gold, rgb(248, 223, 77));
    box-shadow: 0 5px 20px rgba(255, 212, 71, 0.4);
}




.caption-item {
    width: 100%;
    max-width: 400px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    background: white;
    
    transform: translateY(80px);
    transition: all 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.caption-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block !important;     /* ← This forces the image to show */
    background: #000;
    transition: transform 0.5s ease;
}

.caption-item:hover img {
    transform: scale(1.08);
}

figcaption {
    padding: 28px 25px;
    text-align: center;
}

.caption-title {
    font-size: 24px;
    color: #b31217;
    margin-bottom: 14px;
    font-weight: 700;
}

.caption-text {
    font-size: 16px;
    color:black;
    line-height: 1.7;
}

.icon-facilities{
    padding: 100px 5%;
    background: rgba(128, 128, 128, 0.151);
}

/* Animation when scrolled into view */
.animate-caption.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delay */
.caption-item:nth-child(1) { transition-delay: 0.2s; }
.caption-item:nth-child(2) { transition-delay: 0.4s; }
.caption-item:nth-child(3) { transition-delay: 0.6s; }



/* About section */
.about-section {
    background: rgba(0, 150, 136, 0.85);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-container {
    width: 85%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 12px;
    border: 8px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-content {
    flex: 1;
    padding-left: 40px;
    color: white;
}

.about-content h5 {
    font-size: 22px;
    font-style: italic;
    margin-bottom: 10px;
    color: black;
}

.about-content h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-content p {
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 30px;
}

.know-more-btn {
    display: inline-block;
    border: none;
    padding: 12px 28px;
    border-radius: 35px;
    font-size: 18px;
    color: black;
    text-decoration: none;
    transition: 0.3s ease;
    background: linear-gradient(90deg, gold, rgb(248, 223, 77));
    box-shadow: 0 5px 20px rgba(255, 212, 71, 0.4);
    font-weight: bold;
}

.know-more-btn:hover {
    transform: translateY(-5px);
    background: linear-gradient(90deg, gold, rgb(248, 223, 77));
    box-shadow: 0 5px 20px rgba(255, 212, 71, 0.4);
}

/* gallery section */

.gallery-section {
    padding: 80px 0;
    text-align: center;
    background: #f9f7f3;
}

.gallery-title {
    font-size: 38px;
    color: orange;
    font-family: 'Georgia', serif;
    font-weight: 600;
    margin-bottom: 40px;
}

.gallery-images {
    width: 85%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s ease;
}

.gallery-images img:hover {
    transform: scale(1.03);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.services-btn {
    margin-top: -40px;
}

.services-btn a{
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.gallery-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, gold, rgb(248, 223, 77));
    box-shadow: 0 5px 20px rgba(255, 212, 71, 0.4);
    color: white;
    font-size: 18px;
    border-radius: 40px;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.3s ease;
    margin-top: 40px;
}

.gallery-btn:hover {
    transform: translateY(-5px);
    background: linear-gradient(90deg, gold, rgb(248, 223, 77));
    box-shadow: 0 5px 20px rgba(255, 212, 71, 0.4);
}

.gallery-btn a{
    color: black;
    font-weight: bold;
    text-decoration: none;
}


/* footer */

.footer {
    background: #0d0d0d;
    color: #fff;
    padding: 70px 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    width: 85%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.7;
    font-size: 15px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

.footer-social a {
    display: inline-block;
    background: #e38929;
    color: white;
    margin: 8px 8px 0 0;
    padding: 12px;
    font-size: 18px;
    border-radius: 6px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #c87322;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffaa44;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1c1c1c;
}

.footer-bottom span {
    color: #e38929;
}

.footer-col a{
    text-decoration: none;
    color: white;
}

.footer-bottom a{
    text-decoration: none;
}

/* ---------------- MOBILE VIEW ---------------- */

/* ============================
   MOBILE RESPONSIVE STYLES
   ============================ */
@media screen and (max-width: 992px) {
    .top-bar {
        font-size: 14px;
        padding: 10px 15px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .top-left span {
        margin-right: 20px;
    }
    .top-right i {
        margin-left: 15px;
        font-size: 16px;
    }

    .headings h5 {
        font-size: 20px;
    }

    .headings h2 {
        font-size: 42px;
        line-height: 1.2;
    }
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image,
    .about-content {
        flex: none;
        width: 100%;
        padding-left: 0;
    }

    .about-image img {
        max-width: 420px;
        margin: 0 auto;
    }

    .about-content {
        padding: 0 20px;
    }

    .about-content h2 {
        font-size: 36px;
    }
    .gallery-images {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .gallery-images img {
        height: 200px;
    }

    .gallery-title {
        font-size: 34px;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .footer-col h3 {
        font-size: 19px;
    }
}

@media screen and (max-width: 768px) {
    /* Hide desktop elements */
    .book-btn {
        display: none;
    }
    .mobile-enquire {
        display: block !important;
    }

    /* Show hamburger */
    .menu-icon {
        display: block !important;
        font-size: 28px;
        cursor: pointer;
        z-index: 1000;
    }

    /* Logo smaller */
    .logo {
        height: 45px;
    }

    /* Mobile Menu - Slide from left */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 40px;
        box-shadow: 5px 0 20px rgba(0,0,0,0.25);
        transition: left 0.4s ease;
        z-index: 999;
        gap: 25px;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a,
    .nav-links .dropbtn {
        font-size: 22px;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eee;

    }

    .nav-links a.active {
        color: #cf7b21;
        border-bottom: 3px solid #cf7b21;
    }

    /* Dropdown in mobile */
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        margin-top: 5px;
        color: whitesmoke;
        font-weight: bold;
        background: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        color: #333;
        font-size: 18px;
        padding: 12px 0;
        font-weight: normal;
    }

    /* Mobile Book Button inside menu */
    .mobile-enquire {
        margin-top: 20px;
        width: 100%;
        padding: 15px !important;
        font-size: 18px !important;
        background: linear-gradient(90deg, gold, rgb(248, 223, 77));
        box-shadow: 0 5px 20px rgba(255, 212, 71, 0.4);
        color: black;
        border-radius: 15px;
        font-weight: bold;
        border: none;
    }

    /* Overlay */
    .overlay {
        display: none;
        position: fixed;
        top: 0; left: 0px;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        z-index: 998;
    }
    .overlay.active {
        display: block;
    }
    .top-bar{
        display: none;
    }

    .hero-banner { height: 75vh; }
    .animate-text { font-size: 36px; }
    .typing-text { font-size: 22px; }
    .subtitle { font-size: 18px; }
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 16px;
        margin: 8px;
        display: block;
        width: 80%;
        margin: 10px auto;
    }

    .image-caption-section { padding: 80px 5%; }
    .caption-item { max-width: 100%; }
    .caption-item img { height: 250px; }
    .caption-title { font-size: 22px; }

    .headings {
        text-align: center;
    }

    .fecilities {
        grid-template-columns: 1fr 1fr;        /* 2 columns on tablets */
        gap: 50px;
        padding: 60px 40px;
    }

    .headings h5 {
        font-size: 22px;
    }

    .headings h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .headings p {
        font-size: 16px;
        padding-top: 20px;
    }
    .about-section {
        padding: 60px 0;
    }

    .about-content h5 {
        font-size: 20px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-content p {
        font-size: 15px;
        
    }

    .know-more-btn {
        padding: 12px 24px;
        font-size: 17px;
    }
    .gallery-section {
        padding: 70px 15px;
    }

    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .gallery-images img {
        height: 180px;
        border-radius: 10px;
    }

    .gallery-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .services-btn a {
        padding: 13px 28px;
        font-size: 17px;
    }

    .footer {
        padding: 60px 15px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
        display: block;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col h3::after {
        margin: 8px auto;
    }

    .footer-col ul li a:hover {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .animate-text { font-size: 30px; }
    .typing-text { font-size: 20px; }

    .headings h5 {
        font-size: 20px;
    }

    .headings h2 {
        font-size: 30px;
    }

    .headings p {
        font-size: 15px;
        padding-top: 15px;
        line-height: 1.6;
    }

    .fecilities {
        padding: 50px 20px;
        gap: 45px;
    }

    .facility-card img {
        width: 70px;
    }

    .facility-card h3 {
        font-size: 22px;
    }

    .facility-card p {
        font-size: 15.5px;
    }
    .about-section {
        padding: 50px 0;
    }

    .about-container {
        width: 92%;
    }

    .about-content h5 {
        font-size: 18px;
    }

    .about-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .about-content p {
        font-size: 14.5px;
        line-height: 1.65;
        justify-content: space-evenly;
    }

    .about-image img {
        max-width: 100%;
        border-width: 6px;
    }

    .know-more-btn {
        padding: 11px 22px;
        font-size: 16px;
    }
    .gallery-section {
        padding: 60px 10px;
    }

    .gallery-images {
        grid-template-columns: 1fr;
        gap: 14px;
        width: 95%;
    }

    .gallery-images img {
        height: 240px;
        border-radius: 12px;
    }

    .gallery-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .services-btn a {
        padding: 14px 30px;
        font-size: 18px;
        width: 80%;
        max-width: 300px;
    }

    .footer {
        padding: 50px 10px 30px;
    }

    .footer-col p,
    .footer-col ul li a {
        font-size: 14.5px;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .footer-bottom {
        font-size: 13px;
        line-height: 1.6 મ
    }
}

@media (max-width: 600px) {
    .fecilities {
        grid-template-columns: 1fr;            /* 1 column on mobile */
        gap: 50px;
        padding: 60px 25px;
    }

    .facility-card {
        max-width: 100%;
        text-align: center;                   /* center everything on mobile */
        margin: 0 auto;
    }

    .facility-card img {
        width: 80px;
        margin: 0 auto 20px;
        display: block;
    }

    .facility-card h3 {
        font-size: 23px;
    }

    .facility-card p {
        font-size: 16px;
    }
}

/* About Page */

.about-header {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.about-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.decor {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.decor .line {
    width: 70px;
    height: 2px;
    background: #b8860b;
}

.decor .diamond {
    font-size: 18px;
    color: #b8860b;
}

/* Main container - keeps image & paragraph together */
.about-content1 {
    max-width: 1240px;
    margin: 20px auto;
    padding: 20px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Always stacked: Image first, then paragraph below */
.about-content1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.about-content1 img {
    width: 100%;
    max-width: 720px;           /* Smaller & balanced size */
    height: auto;
    border-radius: 14px;
    border: 6px solid #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    object-fit: cover;
    order: -1;                  /* Ensures image stays on top */
}

.about-content1 p {
    font-size: 17px;
    line-height: 1.5;
    color: #333;
    text-align: justify;
    padding: 0 5px;
    max-width: 1100px;
}

/* Highlights Section */
.about-highlight {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #fff8f0, #fff2e6);
    margin: 40px 0;
}

.about-highlight h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.about-highlight h2 span {
    color: #e63946;
    font-weight: 400;
}

.highlights p {
    max-width: 600px;
    margin: 30px auto;
    font-size: 19px;
    font-weight: 500;
    color: #2d2d2d;
    line-height: 2.2;
    background: rgba(255,255,255,0.7);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive Breakpoints */
@media (min-width: 480px) {
    .about-header h1 { font-size: 32px; }
    .decor .line { width: 90px; }
}

@media (min-width: 600px) {
    .about-header h1 { font-size: 36px; }
    .about-content1 p { font-size: 17px; }
}

@media (min-width: 768px) {
    .about-content1 {
        padding: 50px 40px;
        gap: 40px;
    }

    .about-content1 img {
        max-width: 780px;
        border-width: 8px;
        border-radius: 16px;
    }

    .about-content1 p {
        font-size: 18px;
        padding: 0 30px;
    }
}

@media (min-width: 992px) {
    .about-header h1 { font-size: 44px; }
    .decor .line { width: 120px; }
    .decor .diamond { font-size: 22px; }
    .about-content1 {
        padding: 70px 60px;
        gap: 50px;
        border-radius: 20px;
    }

    .about-content1 img {
        max-width: 700px;       /* Nice big but not overwhelming */
        border-width: 10px;
    }

    .about-content1 p {
        font-size: 19px;
        line-height: 1.5;
        padding: 0 30px;
    }
    .about-highlight h2 { font-size: 38px; }
    .highlights p { font-size: 21px; }
}


/* ====================== OUR SERVICES SECTION ====================== */
/* ====================== TITLE CONTAINER ====================== */
.title-container {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(to bottom, #fff8f0, #fff2e6);
}

.title-container h1 {
    font-size: 38px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.title-container .decor {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 20px auto;
}

.title-container .decor .line {
    width: 100px;
    height: 3px;
    background: #b8860b;           /* Elegant gold */
    border-radius: 3px;
}

.title-container .decor .diamond {
    font-size: 22px;
    color: #b8860b;
    font-weight: bold;
}

/* ====================== CARDS CONTAINER ====================== */
.cards-container {
    display: grid;
    grid-template-columns: 1fr;                /* Mobile: 1 column */
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background: #fafafa;
}

/* Individual Card */
.card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

.card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin: 22px 0 12px;
    font-weight: 600;
}

.card p {
    font-size: 16px;
    color: #555;
    padding: 0 25px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.card .btn {
    display: inline-block;
    background: linear-gradient(135deg, #b8860b, #d4a017);
    color: white;
    padding: 13px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
    transition: all 0.3s ease;
}

.card .btn:hover {
    background: linear-gradient(135deg, #9f7300, #b8860b);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.5);
}

/* ====================== RESPONSIVE BREAKPOINTS ====================== */
@media (min-width: 600px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
        gap: 40px;
    }
    
    .title-container h1 {
        font-size: 42px;
    }
    
    .title-container .decor .line {
        width: 120px;
    }
}

@media (min-width: 992px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr);   /* ← 3 COLUMNS */
        gap: 50px;
        padding: 50px;
        justify-content: center;                /* Perfect centering if screen is very wide */
    }
    
    .title-container {
        padding: 80px 20px 50px;
    }
    
    .title-container h1 {
        font-size: 48px;
    }
    
    .title-container .decor .line {
        width: 140px;
        height: 4px;
    }
    
    .title-container .decor .diamond {
        font-size: 26px;
    }
    
    .card h3 {
        font-size: 26px;
    }
    
    .card p {
        font-size: 16.5px;
    }
    
    .card .btn {
        padding: 15px 40px;
        font-size: 17px;
    }
}

/* Optional: Extra large screens – still keep only 3 cards centered */
@media (min-width: 1400px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1400px;                       /* Prevents stretching too wide */
    }
    .title-container {
        padding: 80px 20px 50px;
    }
    
    .title-container h1 {
        font-size: 48px;
    }
    
    .title-container .decor .line {
        width: 140px;
        height: 4px;
    }
    
    .title-container .decor .diamond {
        font-size: 26px;
    }
    
    .card h3 {
        font-size: 26px;
    }
    
    .card p {
        font-size: 16.5px;
    }
    
    .card .btn {
        padding: 15px 40px;
        font-size: 17px;
    }
}



/* ====================== GALLERY – SAME SIZE IMAGES ====================== */
.gallery {
    max-width: 1400px;
    margin: 60px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    background: #faf9f7;
}

/* ALL IMAGES SAME SIZE + CLEAN LOOK */
.gallery img {
    width: 100%;
    height: 300px;                    /* Fixed height – same for all */
    object-fit: cover;               /* Crops neatly, no distortion */
    border-radius: 16px;
    border: 6px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    background: #000;                /* Fallback if image fails */
}

/* Beautiful hover effect */
.gallery img:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    border-color: #b8860b;
    z-index: 2;
}

/* ====================== RESPONSIVE – SAME SIZE GRID ====================== */
@media (min-width: 640px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 30px;
    }
    .gallery img {
        height: 320px;                /* Slightly taller on tablets */
    }
}

@media (min-width: 992px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 50px;
    }
    .gallery img {
        height: 340px;                /* Uniform & elegant on desktop */
        border-width: 8px;
        border-radius: 18px;
    }
}

@media (min-width: 1200px) {
    .gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        padding: 60px 40px;
    }
    .gallery img {
        height: 360px;                /* Perfect large-screen size */
        border-width: 10px;
    }
}


/* ====================== CONTACT SECTION ====================== */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #fff8f0, #fff2e6);
    font-family: 'Georgia', serif;
}

.contact-title {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title h1 {
    font-size: 44px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-title .decor {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 20px 0;
}

.contact-title .decor .line {
    width: 120px;
    height: 4px;
    background: #b8860b;
    border-radius: 3px;
}

.contact-title .decor .diamond {
    font-size: 26px;
    color: #b8860b;
}

.contact-title p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Form + Info Layout */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fdfdfd;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b8860b;
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.15);
}

.submit-btn {
    background: linear-gradient(135deg, #b8860b, #d4a017);
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    justify-self: start;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.submit-btn:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #9f7300, #b8860b);
    box-shadow: 0 15px 35px rgba(184, 134, 11, 0.5);
}



/* Contact Info */
.contact-info {
    background: #f9f5f0;
    padding: 35px;
    border-radius: 16px;
    border-left: 6px solid #b8860b;
}

.contact-info h3 {
    color: #b8860b;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.social-icons a {
    color: #b8860b;
    text-decoration: none;
    font-weight: 600;
}

.social-icons a:hover {
    text-decoration: underline;
}

.contact-info a{
    text-decoration: none;
}

/* ====================== RESPONSIVE ====================== */
@media (min-width: 992px) {
    .contact-container {
        grid-template-columns: 1.8fr 1.2fr;
    }
    .contact-info a{
        text-decoration: none;
    }
}

@media (max-width: 768px) {
    .contact-title h1 { font-size: 36px; }
    .contact-container { padding: 30px; }
    .submit-btn { width: 100%; justify-self: stretch; }
    .contact-info a{
        text-decoration: none;
    }
}