/* ===========================
   ENTERPRISE DESIGN SYSTEM
=========================== */

:root{
    --primary:#f8d7e6;
    --gold:#d4af37;
    --dark:#1e1e1e;
    --text:#333;
    --white:#fff;
    --shadow:0 15px 40px rgba(0,0,0,0.08);
    --radius:18px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f6b8d6;
    color:var(--text);
    overflow-x:hidden;
}

h1,h2,h3{
    font-family:'Playfair Display',serif;
}

/* ===========================
   LAYOUT
=========================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section{
    padding:90px 0;
}

/* ===========================
   BUTTONS
=========================== */

.btn-primary{
    background:var(--gold);
    color:#fff;
    padding:12px 26px;
    border-radius:50px;
    text-decoration:none;
    display:inline-block;
    transition:0.3s;
    font-weight:600;
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
}


/* ===========================
   HERO
=========================== */
.hero{
    height:95vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:linear-gradient(135deg,#171717,#302e2e);
    padding:20px;
}


.hero h1{
    font-size:3.5rem;
    color:#aaa7a7;
}

.hero p{
    margin-top:15px;
    color:#bec347;
}

.hero-content {
    text-align: center;
}
.logoimg{
    height: 250px;
    width: 280px;
}

/* Initial state */
.hero-content .logoimg,
.hero-content h1,
.hero-content p,
.hero-content .btn-primary {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

/* Staggered timing */
.hero-content .logoimg {
    animation-delay: 0.2s;
}

.hero-content h1 {
    animation-delay: 0.5s;
}

.hero-content p {
    animation-delay: 0.8s;
}

.hero-content .btn-primary {
    animation-delay: 1.1s;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/*=====================
THEMES
=======================*/


.theme{
    padding-top: 50px;
    padding-bottom: 50px;
    height:auto;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:linear-gradient(135deg,#f8d7e6,#fff);
}

.theme h2{
    font-size:3.5rem;
}

/* ===========================
   GRID SYSTEM
=========================== */
.services-section{
    height:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding-bottom: 30px;
}
.services-grid,
.gallery-grid,
.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}
.service-card img {
    width:100%;
    height:320px;         /* consistent card image height*/
    object-fit:cover;          /* crops image nicely */
    object-position:center;    /* keeps focus centered */
    display:block;
    transition:0.4s ease;

}
.service-card h3 {
    padding: 10px;
    text-align: center;
    background-color: #D0D2FF;
}

/* ===========================
  ABOUT US
=========================== */
.about-section{
    height:auto;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding-bottom: 50px;
    background:linear-gradient(135deg,#F8C8DC,#e6dddf);

}
.about-content {
    gap: 50px;
    display: flex;
    height: auto;
  
}
.about-text{
    width: 50%;

}
.about-text p {
    text-indent: 10px;
    text-align: justify;
    letter-spacing: 3px;
}
.about-title{
   
    padding: 50px;
}
.about-title h1{
    margin-top: 100px;
}
.about-img{
    width: 35%;
    background-color: #5656569e;
    margin: auto;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 50px;
    padding-right: 50px;
    border-top-left-radius: 80px;
    border-bottom-right-radius:80px;

}

.about-img img{
    max-width: 100%;
    height: 500px;
    border: 8px solid #474444;
     -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    border-radius: 999px;
    max-width: 100%;
    object-fit:cover;          /* crops image nicely */
    object-position:center;    /* keeps focus centered */
    transition:0.4s ease;
}
.about-img img:hover{
    transform:translateY(-10px);
}


/* ===========================
   FIX: THEME CARD IMAGE FIT
=========================== */
.theme-card {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}
.theme-card h3 {
    padding: 15px;
    text-align: center;
    background-color: #f6b8d6;
}

.theme-slider {
    margin-top: 50px;
    padding: 20px 10px 50px;
}

/* FORCE IMAGE CONTAINER HEIGHT */
.theme-card img{
    width:100%;
    height:450px;              /* consistent card image height*/
    object-fit:cover;          /* crops image nicely */
    object-position:center;    /* keeps focus centered */
    display:block;
    transition:0.4s ease;
}

/* hover zoom effect */
.theme-card:hover img{
    transform:scale(1.05);
}

.service-card,
.stat-card{
    width:100%;
    height:350px; 
    background:#fff;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    overflow:hidden;
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

/* ===========================
   GALLERY
=========================== */

.gallery-grid img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:15px;
    cursor:pointer;
    transition:0.4s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ===========================
   CTA
=========================== */

.cta{
    text-align:center;
    padding:90px 20px;
    background:linear-gradient(135deg,#f8d7e6,#fff);
}

/* ===========================
   WHATSAPP BUTTON
=========================== */

.whatsapp-btn{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:999;
}

.contact-section {
    padding: 80px 20px;
    background: #f6b8d6;;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.contact-form,
.contact-map {
    margin-top: 90px;
    flex: 1;
    background: #f9f8e8cf;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-form h2,
.contact-map h2 {
    margin-bottom: 20px;
    color: #222;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    background: linear-gradient(135deg, #ff8eb5, #ff6b9a);;
    color: #1f1e1e;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #a12580;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
}
