/* Contact Page Specifics */
.contact-bg {
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
}

.contact-page-main {
    padding: 100px 0;
    background-color: #fff;
}

.map-section {
    padding-bottom: 100px;
     padding-top: 60px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 10px solid #fff; /* White frame effect */
}

/* Breadcrumb Styling */
.breadcrumb {
    color: #00acc1;
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}
.breadcrumb i { font-size: 10px; margin: 0 8px; }

/* Existing contact-section CSS you have already should handle the wrapper/grid */

/* =========================================
   INTERNAL PAGE BANNER STYLES
   ========================================= */
.page-banner {
    position: relative;
    height: 450px; /* Shorter than home hero */
    background: url('image2/contactusbanner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: #fff;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darker overlay for text readability */
}

.banner-content {
    position: relative;
    z-index: 2;
    padding-top: 80px; /* Adjustment for absolute navbar */
}

.breadcrumb {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00acc1; /* Using your teal brand color */
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.breadcrumb i {
    font-size: 10px;
    margin: 0 10px;
    vertical-align: middle;
}

.banner-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 18px;
    color: #e0e0e0;
    max-width: 600px;
}

/* Responsive adjustment for internal banner */
@media (max-width: 768px) {
    .page-banner {
        height: 350px;
        text-align: center;
    }
    .banner-content h1 {
        font-size: 36px;
    }
    .banner-content p {
        font-size: 15px;
        margin: 0 auto;
    }
}
/* =========================================
   CORPORATE OVERVIEW SECTION
   ========================================= */
.overview-section {
    padding: 100px 0;
    background-color: #ffffff;
    color: #1a2a3a;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* Section Tag */
.section-tag {
    color: #d32f2f;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-tag span {
    width: 30px;
    height: 2px;
    background: #d32f2f;
}

/* Heading */
.overview-text-side h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a2a3a;
}

.main-para {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.secondary-para {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-item i {
    font-size: 24px;
    color: #d32f2f;
    background: #fff5f5;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.h-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.h-info p {
    font-size: 12px;
    color: #777;
}

/* Buttons */
.overview-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #d32f2f;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-outline {
    border: 2px solid #1a2a3a;
    color: #1a2a3a;
    padding: 13px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary:hover { background: #b71c1c; }
.btn-outline:hover { background: #1a2a3a; color: #fff; }

/* Image Side */
.image-container {
    position: relative;
}

.image-container img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-badge strong {
    display: block;
    font-size: 20px;
    color: #d32f2f;
}

.experience-badge span {
    font-size: 12px;
    text-transform: uppercase;
    color: #777;
}

/* Responsive */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .overview-text-side h2 { font-size: 36px; }
    .highlights-grid { grid-template-columns: 1fr 1fr; }
}
/* =========================================
   FLOATING WIDGETS (Bottom Right)
   ========================================= */
.floating-widgets-right {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column; /* Stacks Red on top of Green */
    gap: 15px;
    align-items: center;
}

.widget-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* WhatsApp Styling (Bottom) */
.whatsapp-btn {
    background-color: #25d366; 
}

/* Scroll Top Styling (Top) */
.scroll-btn {
    background-color: #d32f2f; /* Brand Red */
    opacity: 0;               /* Hidden initially */
    visibility: hidden;
    transform: translateY(20px);
}

/* Show class for Scroll Button */
.scroll-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover Effects */
.widget-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .floating-widgets-right {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .widget-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}