










@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;700&display=swap');

/* Section Container */
.founder-ultimate-compact {
    padding: 50px 0; /* Very compact height */
    background: #ffffff;
    overflow: hidden;
}

.ultimate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal split */
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

/* LEFT SIDE: Bullets and Quote */
.u-tag {
    color: #d32f2f;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.u-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.u-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700; /* Bold as per image */
    color: #1a2a3a;
    margin-bottom: 15px;
}

.u-bullets li i {
    color: #d32f2f;
    font-size: 15px;
}

.u-quote {
    position: relative;
    padding-left: 30px;
    max-width: 400px;
}

.u-quote i {
    position: absolute;
    left: 0;
    top: 0;
    color: #eee;
    font-size: 20px;
}

.u-quote p {
    font-style: italic;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* RIGHT SIDE: Poster Visuals */
.u-poster-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.u-bg-text {
    position: absolute;
    top: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 160px; /* Compact giant text */
    color: #f6f6f6;
    z-index: 1;
    line-height: 1;
    white-space: nowrap;
}

.u-image {
    position: relative;
    z-index: 2;
    width: 447px; /* Compact image */
    margin-bottom: -30px; /* Pulls ribbon up */
}

.u-image img {
    width: 100%;
    display: block;
}

.u-ribbon {
    position: relative;
    z-index: 3;
    background: #d32f2f;
    width: 100%;
    max-width: 450px;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.2);
}

.u-ribbon-content {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 3px;
}

.u-title h3 {
    margin-top: 15px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a2a3a;
    font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ultimate-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .u-bullets li { justify-content: center; }
    .u-quote { margin: 0 auto; padding: 0 20px; }
    .u-quote i { display: none; }
    .u-poster-wrapper { margin-top: 40px; }
}




/* =========================================
   INTERNAL PAGE BANNER STYLES
   ========================================= */
.page-banner {
    position: relative;
    height: 450px; /* Shorter than home hero */
    background: url('image2/aboutusbanner.avif') 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 0 0;
    background-color: #ffffff;
    color: #1a2a3a;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    
}

/* 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: 35px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a2a3a;
}

.main-para {
    font-size: 14px;
    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 10px;
    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: 25px; }
    .highlights-grid { grid-template-columns: 1fr 1fr; }
}
/* =========================================
   PREMIUM STATS SECTION
   ========================================= */
.experience-stats {
    padding: 80px 0;
    background-color: #ffffff; /* Clean white background */
    border-bottom: 1px solid #f0f0f0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1000px;
    margin: 0 0 auto;
    gap: 40px;
}

.stat-card {
    flex: 1;
    padding: 20px 40px;
    position: relative;
    transition: transform 0.3s ease;
}

/* The Vertical Red Line */
.stat-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    width: 4px;
    height: 80%;
    background-color: #d32f2f; /* Brand Red */
    border-radius: 10px;
    transition: height 0.4s ease, top 0.4s ease;
}

/* Hover Effect: Line grows to full height */
.stat-card:hover::before {
    height: 100%;
    top: 0;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 58px; /* Extra large for impact */
    font-weight: 800;
    color: #1a2a3a; /* Deep Corporate Blue/Black */
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #6b7280; /* Soft grey */
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

/* Responsive View */
@media (max-width: 992px) {
    .stat-number {
        font-size: 42px;
    }
    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20%; /* Centers the group on mobile */
        gap: 50px;
    }
    
    .stat-card {
        padding: 10px 30px;
    }
}
/* Modal Background Overlay */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark semi-transparent background */
    backdrop-filter: blur(5px); /* Premium blur effect */
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Modal Card */
.modal-card {
    background: #fff;
    width: 90%;
    max-width: 450px;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Close Button (X) */
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #d32f2f;
}

/* Ensure modal is visible when active class is added */
.modal-overlay.open {
    display: flex;
}

/* Styling adjustments for the modal content */
.modal-card h3 {
    margin-bottom: 5px;
    color: #1a2a3a;
}
.modal-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}
/* =========================================
   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;
    }
}
/* =========================================
   FAQ SECTION STYLES
   ========================================= */
.faq-section {
    padding: 80px 0;
  
}

.faq-card {
    background: #fff;
    max-width: 950px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.faq-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1a2a3a;
    margin-bottom: 40px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 18px 25px;
    background: #fdfdfd;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question i {
    font-size: 14px;
    color: #d32f2f; /* Using your brand red */
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

/* Active State for Accordion */
.faq-item.active {
    border-color: #d32f2f;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.1);
}

.faq-item.active .faq-question {
    background: #fff;
    color: #d32f2f;
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: #fff;
}

.faq-answer p {
    padding: 0 15px 10px 0px; /* Reduced right padding to make room for scrollbar */
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    display: block;
    
    /* SCROLL LOGIC */
    max-height: 150px;       /* The height after which it starts scrolling */
    overflow-y: auto;        /* Shows scrollbar only when content is long */
    scrollbar-width: thin;    /* Firefox scrollbar thickness */
    scrollbar-color: #d32f2f #f1f1f1; /* Firefox colors (Thumb, Track) */
}
/* Custom Scrollbar for Chrome, Edge, and Safari */
.faq-answer p::-webkit-scrollbar {
    width: 5px; /* Very thin for a clean look */
}

.faq-answer p::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 10px;
}

.faq-answer p::-webkit-scrollbar-thumb {
    background: #d32f2f; /* Using your brand red */
    border-radius: 10px;
}

.faq-answer p::-webkit-scrollbar-thumb:hover {
    background: #b71c1c; 
}

/* Ensure the container opens wide enough for the scrollable content */
.faq-item.active .faq-answer {
    max-height: 250px; /* Increased slightly to accommodate the inner p max-height */
    padding: 10px 25px 20px 46px; /* Keeping your left alignment */
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content */
}
.faq-item.active .faq-answer {
    padding: 0 25px 20px 46px;
}
@media (max-width: 768px) {
    .faq-card {
        padding: 30px 20px;
    }
    .faq-question {
        font-size: 14px;
        padding: 15px;
    }
}


