* { margin: 0; padding: 0; box-box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }

/* body { background-color: #f4f7f9; padding: 40px 0; } */

.main-container {
    max-width: 950px; /* Width image ke hisaab se */
    margin: auto;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 30px;
}

/* Image box size control */
.img-side {
    flex: 0 0 45%; 
}

.img-side img {
    width: 100%;
    height: 220px; /* Height kam kar di hai */
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.img-side img:hover {
    transform: scale(1.03); /* Chota sa hover zoom */
}

.text-side {
    flex: 0 0 50%;
}

.text-side h2 {
    color: #303f9f;
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.text-side p {
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Animations States */
.reveal-left { opacity: 0; transform: translateX(-50px); transition: 1s all ease; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: 1s all ease; }

.active { opacity: 1; transform: translateX(0); }






.main-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
    margin-top: 60px;
   
}

/* Heading Styles */
.header-section h1 {
    color: #1a237e;
    font-size: 1.8rem;
    margin-bottom: 10px;
    margin-top: 60px;
}

.underline {
    width: 60px;
    height: 3px;
    background-color: #03a9f4;
    margin: 10px auto 20px;
}

.header-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 50px;
}

/* Product Card - Sleek look */
.product-card {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
    background: #fff;
    border-radius: 12px;
}

.img-container {
    flex: 0 0 40%;
}

.img-container img {
    width: 100%;
    height: 190px; /* Slim height as per image */
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-container {
    flex: 0 0 55%;
}

.info-container h3 {
    color: #303f9f;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.info-container p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

/* Animation */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}





.contact-layout1 {
    background: #f4f7fb;
}

/* Contact Card Styling */
.contact-card {
    transition: all 0.4s ease;
    border: none;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Icon Styling */
.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b74ff, #1a237e);
    color: #fff;
    box-shadow: 0 8px 20px rgba(11, 116, 255, 0.4);
    transition: 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

/* Map Styling */
.map-container {
    margin-top: 70px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}





/* Footer List */

  

