@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    /* Updated Colors matching the Logo */
    --primary-color: #ffb606;
    /* Golden Yellow from Stars/Text */
    --secondary-color: #0a1c3a;
    /* Deep Navy Blue from Inner Circle */
    --accent-teal: #008a6e;
    /* Teal Green from Outer Ring */
    --text-dark: #333;
    --text-light: #fff;
    --font-family: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family);
    overflow-x: hidden;
    background-color: #fcfcfc;
}

/* Typography & Colors */
.text-primary-custom {
    color: var(--primary-color);
}

.bg-dark-blue {
    background-color: var(--secondary-color);
}

.bg-light-gray {
    background-color: #f4f6f9;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: #000;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 4px;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #e0a000;
    color: #000;
    transform: translateY(-2px);
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: #000;
}

/* Header & Navbar */
.top-bar {
    font-size: 14px;
}

.navbar-brand {
    font-weight: 700;
    line-height: 1.2;
}

.nav-link {
    font-weight: 600;
    color: var(--secondary-color) !important;
    margin: 0 10px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* ====== Navbar Active Link Styling ====== */
.navbar-nav .nav-link {
    position: relative;
    padding-bottom: 5px;
}

/* Active Class & Hover par text color change */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Bottom Border Animation for Active Link */
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: 10%;
    bottom: 0;
    width: 80%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* ====== Google Translate Customization ====== */
#google_translate_element {
    margin-left: 15px;
}

/* Dropdown Styling */
.goog-te-combo {
    background-color: var(--secondary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
    cursor: pointer;
}

/* Hide Google Translate Top Banner & Logo */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0px;
    /* Hides "Powered by Google" text to keep top bar clean */
}

/* Hero Section (Fixed Background) */
.hero-section {
    padding: 10rem 0 !important; 
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.section-title span {
    color: var(--primary-color);
}

/* Service Cards */
.service-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* Quote Section Updated */
.quote-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.quote-card .form-control {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #333;
}

.quote-card .form-control:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: none;
}

.quote-card .form-control::placeholder {
    color: #888;
}

/* Blog Section */
.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

/* Footer */
.footer {
    background-color: #050a14;
    color: #ccc;
    padding-top: 60px;
}

.footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* ============================== */
/* SERVIC SECTION STYLING */
/* ============================== */

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    /* Ensure image fits well inside rounded corners */
    border-bottom: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid var(--primary-color);
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-box {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
}

.service-icon {
    font-size: 28px;
    color: var(--secondary-color);
    background-color: rgba(255, 182, 6, 0.2);
    padding: 12px;
    border-radius: 8px;
    margin-right: 15px;
}

.service-title {
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.25rem;
}

.service-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more-link {
    color: var(--accent-teal);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.read-more-link:hover {
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.whatsapp-btn {
    color: #25D366;
    /* Official WhatsApp Color */
    font-size: 1.8rem;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    color: #128C7E;
    transform: scale(1.1);
}

.phone-btn {
    color: #25D366;
    /* Official WhatsApp Color */
    font-size: 1.5rem;
    transition: 0.3s;
}

.phone-btn:hover {
    color: #128C7E;
    transform: scale(1.1);
}

/* GALLERY SECTION STYLING */

/* ====== Gallery Section Fixes ====== */
.gallery-card {
    overflow: hidden;
    /* Hover zoom effect ko box ke andar rakhne ke liye */
    border-radius: 8px;
    /* Smooth corners */
}

.gallery-img {
    width: 100%;
    height: 350px;
    /* Sabhi images ki height yahan fix ho jayegi */
    object-fit: cover;
    /* Ye image ko stretch hone se rokega aur perfectly crop kar dega */
    transition: transform 0.4s ease;
    /* Smooth hover effect */
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .gallery-img {
        height: 250px;
    }
}

/*  GLightbox CSS (Slider popup ke liye) */

.gallery-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
}

.gallery-card .gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* ============================ */
/* CLIENT TESTIMONIALS STYLING */
/* ============================ */

/* ====== Testimonial / Client Review Section ====== */
.testimonial-section {
    /* Dark Navy Blue gradient overlay with a corporate background image */
    background: linear-gradient(rgba(10, 28, 58, 0.9), rgba(10, 28, 58, 0.9)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    /* Smooth Parallax Effect */
    color: #fff;
    position: relative;
    padding: 100px 0;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.quote-icon-large {
    font-size: 55px;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.8;
}

.client-feedback {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.client-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.client-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.client-role {
    font-size: 0.9rem;
    color: #adb5bd;
    margin-bottom: 15px;
}

.rating-stars {
    color: var(--primary-color);
    font-size: 14px;
}

/* Customizing Bootstrap Carousel Dots */
.testimonial-carousel .carousel-indicators {
    bottom: -50px;
}

.testimonial-carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.testimonial-carousel .carousel-indicators .active {
    background-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.3);
}

/* Vision & Mission Cards Styling */
.vision-card {
    background-color: #1a2a47;
    /* Dark Blue Theme */
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hover Effect for standard cards */
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 42, 71, 0.2);
}

/* Highlighted Center Card (Active) */
.vision-card.active-card {
    background-color: #0d254b;
    box-shadow: 0 15px 40px rgba(13, 37, 75, 0.3);
    transform: scale(1.05);
    /* Slightly larger for emphasis */
}

/* Responsive adjustment for the center card */
@media (max-width: 991px) {
    .vision-card.active-card {
        transform: scale(1);
    }

    .vision-card.active-card:hover {
        transform: translateY(-10px);
    }
}

/* Icon Wrapper Styling */
.vision-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.4s ease;
}

/* Icon Size & Color */
.vision-icon {
    font-size: 35px;
    color: #ff9800;
    /* Primary accent color (e.g., Orange/Gold) */
}

/* Icon Hover Animation */
.vision-card:hover .vision-icon-wrapper {
    background: #ff9800;
}

.vision-card:hover .vision-icon {
    color: #ffffff;
    transform: scale(1.1);
}