/* ================= CSS VARIABLES & RESET ================= */
:root {
    --primary-color: #2e4165;
    --secondary-color: #2e4165;
    --accent-color: #bb9746;
    --light-bg: #f4f7f6;
    --text-color: #2e4165;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-bg);
   
    line-height: 1.6;
}

a { text-decoration: none; }
ul { list-style: none; }



.cta-btn {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    transition: var(--transition);
    display: inline-block;
}

.cta-btn:hover {
    background-color: #fff;
    transform: scale(1.05);
}



/* ================= SECTIONS & LAYOUT ================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    
}

.content-section {
    padding: 10px 0;
    
}

.section-title {
    text-align: center;
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Cards */
.card {
    background-image: url(./assests/image/card-bg.png);
    padding: 30px;
    border: 2px solid  #ff5e14 ;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
}

.card i {
    font-size: 3rem;
    color: #ff5e14;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Gallery Cards (No padding for full image) */
.gallery-card {
    padding: 0;
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover img {
    transform: scale(1.1);
}



.about-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

/* ===== IMAGE SIDE ===== */
.about-img{
    flex:1 1 55%;
    min-width:520px;
}

.about-img img{
    width:100%;
    height:431px; /* image bada */
    object-fit:cover;
    border-radius:15px;
    display:block;
   
}

/* ===== TEXT SIDE ===== */
.about-text{
    flex:1 1 40%;
    min-width:320px;
}

/* ================= MOBILE RESPONSIVE ================= */
@media(max-width:992px){

    .about-wrapper{
        gap:30px;
    }

    .about-img img{
        height:400px;
    }
}

@media(max-width:768px){

    .about-wrapper{
        flex-direction:column;
        gap:25px;
    }

    .about-img{
        width:100%;
        min-width:100%;
    }

    .about-img img{
        width:100%;
        height:280px;
        object-fit:cover;
        border-radius:12px;
    }

    .about-text{
        width:100%;
        min-width:100%;
    }
}

@media(max-width:480px){

    .about-img img{
        height:230px;
    }
}
/* Forms */
.form-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

/* Table */
.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: var(--shadow);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: var(--primary-color);
    color: white;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item summary {
    font-weight: 600;
    color: var(--primary-color);
}

.faq-item p {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    color: #555;
}

/* Status Boxes for Tracking */
.status-box {
    padding: 15px;
    margin-bottom: 10px;
    border-left: 5px solid;
}

.status-box.success { background: #e8f5e9; border-color: green; }
.status-box.warning { background: #fff3e0; border-color: orange; }

/* ================= MOBILE RESPONSIVE CSS ================= */
@media (max-width: 768px) {
    
    /* IMPORTANT: Slider Height Fixed on Mobile as requested */
    .slider-container {
        height: 260px; /* Mobile par height control mein rahegi */
    }

    .slide-content h2 { font-size: 1.8rem; }
    .slide-content p { display: none; /* Text chhupa diya taaki clean lage */ }
    
    .slider-btn {
        padding: 10px;
        font-size: 1rem;
    }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }

    .section-title { font-size: 1.5rem; }
    .about-wrapper { flex-direction: column; }
    
    /* Forms aur Cards adjust */
    .card { padding: 20px; }
    .form-group input { font-size: 16px; /* Prevent iOS zoom */ }
}