/* GLOBAL FONTS*/
h1, h2, h3, h4, h5, h6 {
    font-family: 'Aldrich', sans-serif;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

p, span, li, a, h6 {
    font-family: 'ubuntu', serif !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

/* BRAND COLORS */
:root {
    --primary: #32307a;        /* Dark Blue */
    --green: #2d995e;          /* Brand Green */
    --gray: #8f8f8f;           /* Gray */

    --light-bg: #b2bbfab9;
    --card-bg: #ffffff;
}

/* ===============================
   TOPBAR
================================ */
.topbar {
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.topbar span {
    white-space: nowrap;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    margin-left: 14px;
    font-size: 16px;
    transition: 0.3s;
}

.topbar i {
    margin-right: 6px;
}

/* ===============================
   MOBILE PERFECT STACK
================================ */
@media (max-width: 576px) {

    .topbar .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    /* LEFT CONTENT */
    .topbar .container > div:first-child {
        display: flex;
        flex-direction: column;   /* 🔥 KEY FIX */
        align-items: center;
        gap: 4px;
    }

    /* SOCIAL ICONS */
    .topbar .container > div:last-child {
        display: flex;
        justify-content: center;
    }

    .topbar a {
        margin: 0 8px;
    }
}

/*  NAVBAR*/
.navbar {
    height: 90px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    position: relative;
    background: #716cff3a !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    
    /* overflow: hidden; */
}
.navbar-collapse {
    display: flex !important;
    justify-content: center;
}

.navbar-nav {
    gap: 42px;
    font-size: 20px;
    font-weight:500 !important;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    position: relative;
    color: #1d184a;
    padding: 6px 0;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif!important;
}

/* Hover Color */
.navbar-nav .nav-link:hover {
    color: #3e3780;
}

/* Underline Animation */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 4px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Active Page Highlight */
.navbar-nav .nav-link.active {
    color: #716cff;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
}


.navbar-brand img {
    height: 105px;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 60px;
}

.navbar-toggler {
    z-index: 10000 !important;
    position: relative;
}
/* MAIN DROPDOWN */
.dropdown-menu {
    border-radius: 12px;
    padding: 8px 0;
    border: none;
    min-width: 220px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    overflow: visible !important;
    z-index: 9999;
    background: #0d6efd;
}

/* SUBMENU PARENT */
.dropdown-submenu {
    position: relative;
}

/* LEFT SIDE SUBMENU */
.dropdown-submenu .dropdown-menu {
    top: 0;
    left: auto !important;
    right: 100%;            /* LEFT SIDE OPEN */
    margin-top: 0;
    margin-right: 2px;
    display: none;
    min-width: 220px;
    padding: 8px 0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    z-index: 99999;
}

/* SHOW SUBMENU */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* FIX: LONG TEXT + ARROW ALIGN PERFECT */
.dropdown-submenu > a {
    display: flex !important;
    justify-content: space-between;   /* text left + arrow right */
    align-items: center;
    width: 100%;
    white-space: nowrap;               /* text next line me na jaye */
}

/* ARROW LEFT */
/* .dropdown-submenu > a::after {
    content: "‹";
    font-size: 16px;
    opacity: 0.5;
    padding-left: 10px;
} */

/* DROPDOWN ITEMS */
.dropdown-item {
    padding: 10px 18px;
    font-size: 15px;
    transition: 0.2s;
    white-space: nowrap;               /* line wrapping off */
}

.dropdown-item:hover {
    background: #eaf2ff;
    color: #0d6efd;
}

/* HERO SECTION */
.hero-img {
    height: 80vh;
    object-fit: cover;
    filter: brightness(80%);
}

.mobile-nav {
  list-style: none;
  padding: 0;
}

.mobile-nav li {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.mobile-nav a {
  text-decoration: none;
  color: #333;
  display: block;
  font-size: 17px;
  font-weight: 500;
}

.mobile-dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-content-m {
  display: none;
  padding-left: 15px;
  margin-top: 10px;
}

.dropdown-content-m a {
  font-size: 15px;
  padding: 6px 0;
}


.carousel-caption {
    bottom: 30%;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgb(0 0 0 / 80%);
    font-family: 'Playfair', serif;
}

.hero-text {
    font-size: 20px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.8);
}

/* HERO MOBILE */
@media (max-width: 768px) {
    .hero-img { height: 70vh; }
    .hero-title { font-size: 32px; }
    .hero-text { font-size: 16px; }
    .carousel-caption { bottom: 1%; }
}

/* ABOUT SECTION */
.text {
    color: var(--primary);
}

.about-section {
    position: relative;
    background: url("../img/overlap.jpg") center/cover no-repeat;
    z-index: 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.55);
    z-index: -1;
}

.about-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.about-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #555;
}

.about-text {
    font-size: 16px;
    margin-bottom: 12px;
    color: #444;
    line-height: 1.7;
}

.about-list li {
    margin-bottom: 6px;
    font-size: 16px;
    color: #333;
}

.about-img {
    border-radius: 10px 100px 10px 40px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.15);
}
.about-text,
.about-title,
.about-subtitle,
.about-list {
    width: 100% !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
}


/* ABOUT MOBILE */
@media (max-width: 768px) {
    .about-title { font-size: 26px; text-align: center; }
    .about-subtitle, .about-text, .about-list { text-align: center; }
    .about-img { border-radius: 12px; }
}

/*INFRASTRUCTURE SECTION */
.infrastructure-section {
    background:#f1f1ff;
    position: relative;
}

.infrastructure-section .section-header h2 {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

.infrastructure-section .section-subtitle {
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.infra-card {
    background: #ffffff transparent;
    border-radius: 45px 20px 45px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 25px;
    margin: 0 10px;
}

.infra-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.infra-card .infra-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
}

.infra-card h5 {
    font-size: 1.2rem;
    color: var(--primary);
}

.infra-card p {
    color: rgb(54, 54, 54);
    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: 400 !important;
}



/* Why Section BG */
/* ===== WHY SECTION ===== */
.why-section {
    background: linear-gradient(135deg, #32307a 0%, #2d995e 100%);
    padding: 70px 20px; /* thoda horizontal padding bhi add kiya */
    text-align: center;
}

/* ===== TITLES ===== */
.why-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-subtitle {
    color: #e7e7e7;
    font-size: 16px;
    margin-bottom: 50px;
}

/* ===== CARDS ===== */
.why-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeUp 1s forwards ease-out;
    opacity: 0;
    position: relative;
    height: 250px;
}

/* ===== CARD HOVER ===== */
.why-card-box {
    transition: transform 0.9s ease; /* smooth animation add */
}

.why-card-box:hover {
    transform: translateY(-15px);
    cursor: pointer;
}


/* ===== ICONS ===== */
.why-icon {
    font-size: 45px;
    margin-bottom: 15px;
    color: #ffffff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.2);
    color: var(--primary); /* hover color effect for icon */
}

/* ===== ANIMATION ===== */
@keyframes fadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0px);
        opacity: 1;
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .why-card {
        padding: 20px;
        margin-bottom: 30px;
    }

    .why-title {
        font-size: 28px;
    }

    .why-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .why-icon {
        font-size: 35px;
    }
}

/* ============================================
   EXPERTISE SECTION
============================================ */
.expertise-section {
    background:rgb(241, 241, 241);
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.section-subtitle {
    color: #8f8f8f;
    max-width: 600px;
    margin: auto;
}

.expert-card {
    background: #a5a5a5 transparent;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    text-align: center;
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.expert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary);
    color: white;
    font-size: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.expert-card p {
    color: black;
    font-size: 15px;
}
.clients-section {
    padding: 70px 20px;
    text-align: center;
    background:rgb(241, 241, 241);
    position: relative;
    overflow: hidden;
}

/* soft glow background */
.clients-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top,
        rgba(50,48,122,0.18),
        transparent 65%);
    pointer-events: none;
}

.clients-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

/* gradient underline */
.clients-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 65%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--green)
    );
    transform: translateX(-50%);
    border-radius: 20px;
}

.clients-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #444;
    margin-top: 10px;
}

/* MAIN SWIPER */
.clients-swiper {
    background: var(--primary);
    border-radius: 10px;
    box-shadow:
        0 20px 45px rgba(50,48,122,0.35),
        inset 0 0 0 1px rgba(255,255,255,0.06);
}

/* SLIDE */
.clients-swiper .swiper-slide {
    width: auto !important;
    flex-shrink: 0 !important;
    padding: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .35s ease, box-shadow .35s ease;
}

/* hover lift */
.clients-swiper .swiper-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.28);
}

/* IMAGE */
.clients-swiper .swiper-slide img {
    width: 180px;
    height: 100px;
    object-fit: contain;
    transition: .35s ease;
    filter: grayscale(60%);
    will-change: transform;
}

/* Desktop hover effect */
@media (min-width: 768px) {
    .clients-swiper .swiper-slide:hover img {
        filter: grayscale(0%)
                drop-shadow(0 6px 14px rgba(45,153,94,0.4));
        transform: scale(1.12);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .clients-swiper .swiper-slide img {
        width: 110px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .clients-swiper .swiper-slide {
        padding: 25px !important;
    }

    .clients-swiper .swiper-slide img {
        width: 80px !important;
    }

    .clients-title {
        font-size: 28px;
    }
}

/* smooth continuous slider feel */
.clients-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}


/* Footer Main */
.footer {
    background: #111;
    color: #ccc;
    padding: 70px 20px 0;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* Columns */
.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    position: relative;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Logo + About */
.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

.footer-about p {
    color: #ccc;
    line-height: 1.6;
}

/* Contact */
.footer-contact p {
    margin: 10px 0;
    font-size: 15px;
}

.footer-contact i {
    margin-right: 10px;
    color:var(--primary);
}

/* Social Icons */
.footer-social a {
    display: inline-block;
    font-size: 18px;
    margin-right: 15px;
    color: #ccc;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #fff;
    transform: scale(1.2);
}
.footer-about {
    text-align: center;
}

.footer-about .footer-logo {
    margin: 0 auto 15px;
    display: block;
}

/* Bottom Strip */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #333;
    color:rgb(105, 105, 105) !important;
}
/* ============================ */
/* MOBILE FIX FOR FOOTER         */
/* ============================ */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center; /* Center all columns */
        gap: 30px; /* Vertical spacing */
        text-align: center;
    }

    .footer-col {
        flex: 1 1 100%;
        max-width: 400px;
        text-align: center;
    }

    /* Contact Info Fix */
    .footer-contact p {
        display: flex;
        flex-direction: column; /* Icon on top, text below */
        align-items: center;
        margin: 8px 0;
        font-size: 14px;
    }

    .footer-contact i {
        margin: 0 0 5px 0; /* Icon spacing */
        font-size: 18px;
    }

    /* Social Icons */
    .footer-social a {
        margin: 5px;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .footer-contact p {
        font-size: 13px;
    }

    .footer-contact i {
        font-size: 16px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 15px 10px;
    }
}



.contact-modern {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f0f1a, #1b1b2f);
    font-family: 'Poppins', sans-serif;
}

/* WRAPPER */
.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */
.contact-cards {
    color: #fff;
}

.contact-cards h2 {
    font-size: 42px;
    margin-bottom: 10px;
    color: white;
}

.contact-desc {
    font-size: 16px;
    color: #bbb;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.06);
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.12);
}

.info-card i {
    font-size: 28px;
    color: var(--primary);
}

.info-card span {
    font-size: 14px;
    color: #aaa;
}

.info-card p {
    font-size: 18px;
    margin: 2px 0 0;
}

/* SOCIAL */
.social-row {
    margin-top: 30px;
}

.social-row a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    background: #111;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.social-row a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* RIGHT SIDE FORM */
.contact-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    position: relative;
}

.contact-box h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.contact-box button {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #5f5cff);
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.contact-box button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}
/* =========================
   MOBILE RESPONSIVE FIX
   ========================= */

@media (max-width: 768px) {

    .contact-modern {
        padding: 70px 15px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* LEFT SIDE */
    .contact-cards {
        text-align: center;
    }

    .contact-cards h2 {
        font-size: 32px;
    }

    .contact-desc {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .info-card {
        flex-direction: row;
        padding: 16px;
        gap: 14px;
        text-align: left;
    }

    .info-card i {
        font-size: 24px;
    }

    .info-card p {
        font-size: 16px;
    }

    /* SOCIAL */
    .social-row {
        display: flex;
        justify-content: center;
        margin-top: 25px;
    }

    .social-row a {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    /* RIGHT FORM */
    .contact-box {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .contact-box h3 {
        font-size: 22px;
        text-align: center;
    }

    .contact-box input,
    .contact-box textarea {
        padding: 13px;
        font-size: 14px;
    }

    .contact-box button {
        padding: 14px;
        font-size: 15px;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

    .contact-cards h2 {
        font-size: 28px;
    }

    .info-card {
        gap: 12px;
        padding: 14px;
    }

    .info-card i {
        font-size: 22px;
    }

    .info-card p {
        font-size: 15px;
    }

    .social-row a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


/* Map */
.map-container {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-info, .contact-form {
        text-align: center;
    }
}
.product-showcase {
    padding: 80px 5%;
    background: #f7f7f7;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.product-title {
    font-size: 32px;
    font-weight: 700 !important;
    margin-bottom: 12px;
    color: var(--primary);
}

.product-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 45px;
}

/* GRID */
.product-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

/* CARD */
.product-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    transition: 0.35s ease;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.product-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
}

/* IMAGE */
.product-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* TEXT */
.product-info {
    padding: 22px;
}

.product-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.product-info p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 18px;
}

/* LINK */
.product-link {
    font-weight: 600;
    color: #0d6efd;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.product-link:hover {
    padding-left: 5px;
    color: #084298;
}

/* ---------------- RESPONSIVE FIXES ---------------- */

/* Tablets */
@media (max-width: 992px) {
    .product-title {
        font-size: 28px;
    }
    .product-img img {
        height: 200px;
    }
}

/* Large Phones */
@media (max-width: 768px) {
    .product-wrapper {
        gap: 28px;
    }
    .product-info {
        padding: 18px;
    }
    .product-img img {
        height: 190px;
    }
}

/* Small Phones */
@media (max-width: 576px) {
    .product-title {
        font-size: 24px;
    }
    .product-subtitle {
        font-size: 14px;
    }

    .product-img img {
        height: 170px;
    }

    .product-info h3 {
        font-size: 20px;
    }

    .product-info p {
        font-size: 14px;
    }
}


/* ===========================
   VRV PRODUCT SECTION
=========================== */
/* ===========================
   BACKGROUND FLOATING SHAPES
=========================== */

.vrv-product {
    position: relative;
    padding: 80px 20px;
    background: rgba(181, 166, 250, 0.014);
    overflow: hidden;
    z-index: 1;
}

/* Floating shapes wrapper */
.vrv-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* SHAPE STYLES */
.vrv-shape {
    position: absolute;
    border-radius: 20px;
    opacity: 0.15;
    animation: floatAnim 12s linear infinite alternate;
    mix-blend-mode: multiply;
}

/* Shape 1 - Blue rectangle */
.shape-1 {
    width: 180px;
    height: 180px;
    background: #4b6bff;
    top: 10%;
    left: -10px;
    animation-delay: 0s;
    border-radius: 50%;
    
}


/* Shape 2 - Green circle */
.shape-2 {
    width: 140px;
    height: 140px;
    background: var(--green);
    border-radius: 50%;
    bottom: 10%;
    right: -60px;
    animation-delay: 2s;
}

/* Shape 3 - Light blue block */
.shape-3 {
    width: 220px;
    height: 220px;
    background: #4b6bff;
    top: 40%;
    left: 60%;
    animation-delay: 4s;
    border-radius: 50%;
}

/* Animation */
@keyframes floatAnim {
    0%   { transform: translateY(0) translateX(0) rotate(0deg); }
    50%  { transform: translateY(-40px) translateX(40px) rotate(10deg); }
    100% { transform: translateY(30px) translateX(-30px) rotate(-10deg); }
}


.vrv-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
}


/* LEFT GALLERY */
.vrv-gallery {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #d9d6ff81;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.vrv-main-img img {
    width: 100%;
    height: 440px;
    border-radius: 18px;
    object-fit: contain;
    background: #7289f021;
    padding: 20px;
    transition: 0.3s ease;
}

.vrv-main-img img:hover {
    transform: scale(1.025);
}

.vrv-thumbs {
    display: flex;
    gap: 12px;
}

.vrv-thumb {
    width: 32%;
    height: 110px;
    border-radius: 14px;
    background: #f0f2ff;
    object-fit: contain;
    padding: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.25s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.vrv-thumb:hover {
    transform: translateY(-4px);
}

.vrv-thumb.active {
    border-color: var(--primary);
}


/* RIGHT CONTENT */
.vrv-content {
    padding-top: 10px;
}

.vrv-badge {
    background: rgba(50, 48, 122, 0.12);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.vrv-title {
    font-size: 34px;
    font-weight: 800;
    margin-top: 14px;
    color: var(--primary);
}

.vrv-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: var(--green);
    font-size: 22px;
}

.rate-text {
    color: var(--gray);
    font-size: 14px;
}

.vrv-desc {
    font-size: 16px;
    color: #474747;
    margin-top: 14px;
    line-height: 1.7;
}

.vrv-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.vrv-features span {
    background: rgba(45,153,94,0.1);
    padding: 8px 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 13px;
    color: var(--green);
}

.sub-heading {
    font-size: 20px;
    margin-top: 16px;
    color: var(--primary);
}

.vrv-list {
    margin-top: 10px;
    line-height: 1.7;
    color: #333;
    padding-left: 18px;
}


/* BUTTONS */
.vrv-buttons {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.vrv-btn-primary {
    background: var(--primary);
    padding: 12px 26px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    transition: 0.2s ease;
}

.vrv-btn-primary:hover {
    background: #262560;
}

.vrv-btn-outline {
    border: 2px solid var(--green);
    padding: 12px 26px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--green);
    font-weight: 700;
    transition: 0.2s ease;
}

.vrv-btn-outline:hover {
    background: var(--green);
    color: #fff;
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .vrv-container {
        grid-template-columns: 1fr;
    }
}
/* MAIN SLIDER */
.vrv-main-swiper img {
    width: 100%;
    height: 440px;
    object-fit: contain;
    background: #354ebe3d;
    padding: 20px;
    border-radius: 18px;
}

/* THUMB SLIDER */
.vrv-thumb-swiper {
    margin-top: 12px;
}

.vrv-thumb-swiper .swiper-slide {
    cursor: pointer;
    border-radius: 14px;
    background: #f0f2ff;
    padding: 8px;
}

.vrv-thumb-swiper img {
    width: 100%;
    height: 110px;
    object-fit: contain;
}

.vrv-thumb-swiper .swiper-slide-thumb-active {
    border: 2px solid var(--primary);
}

.about-vmv {
    padding: 60px 0;
    background: rgba(233, 233, 233, 0.555);
}

.vmv-heading {
    text-align: center;
    margin-bottom: 120px;
    color: var(--primary);
}

/* EQUAL HEIGHT FIX */
.vmv-box {
    height: 100%;
}

/* Box design (same as your design) */
.main {
    width: 100%;
    min-height: 380px;
    text-align: center;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 20px -15px #030380;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* CARD */
.vmv-content {
    background: #88a3f0;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    bottom: 0;
    z-index: 1;
    transition: transform 0.8s;
    min-height: 300px;       /* SAME HEIGHT for all */
}

/* ICON same design fix */
.vmvv-icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: -90px auto 0;
    background: #88a3f0;
    border: 18px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vmv-icons {
    font-size: 40px;
    color: #fff;
}

/* Heading inside card */
.vmv-content h4 {
    height: 35px;
    width: 80%;
    background: #88a3f0;
    margin: 50px auto;
    position: relative;
    color: #fff;
}

/* Title design SAME */
.vmv-content h4::after {
    content: '';
    width: 40px;
    height: 30px;
    background: linear-gradient(to right, #fff, #ff3c00);
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: -1;
}

.vmv-content h4::before {
    content: '';
    width: 40px;
    height: 30px;
    background: linear-gradient(to right, #fff, #ff3c00);
    position: absolute;
    left: -5px;
    bottom: -5px;
    z-index: -1;
}

/* Shadow SAME */
.shadowone {
    height: 200px;
    width: 80%;
    background: #88a3f0;
    position: absolute;
    border-radius: 10px;
    bottom: 0;
    z-index: -1;
    left: 10%;
    box-shadow: 0 0 20px -15px #030380;
    transition: transform 0.8s;
}

.shadowtwo {
    height: 200px;
    width: 64%;
    background: #88a3f0;
    position: absolute;
    border-radius: 10px;
    bottom: 0;
    z-index: -2;
    left: 18%;
}

/* Hover Animation */
.main:hover .vmv-content {
    transform: translateY(-50px);
}

.main:hover .shadowone {
    transform: translateY(-25px);
}

/* VALUES List */
.vmv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #000000b0;
}
.vmv-list li {
    margin-bottom: 5px;
}
.partners-section {
    padding: 80px 20px;
    background: rgba(233, 233, 233, 0.596);
}

.partners-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 50px;
}

/* Partner Row */
.partner-box {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 50px;
    position: relative;
    padding-left: 40px;
}

.partner-box::before {
    content: "";
    width: 4px;
    height: 100%;
    background: var(--primary);
    position: absolute;
    left: 15px;
    top: 0;
    border-radius: 10px;
}

/* Partner Content */
.partner-content h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 5px;
}

.partner-content .p-sub {
    font-size: 15px;
    color: var(--green);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.partner-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

/* Team note */
.team-note {
    margin-top: 30px;
    padding: 20px;
    background: #ffffff;
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.team-note p {
    margin: 0;
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}



/* ------------------------------------------------
   RESPONSIVE DESIGN 
--------------------------------------------------*/

/* Tablets & Medium Screens */
@media (max-width: 992px) {
    .partners-title {
        font-size: 32px;
    }

    .partner-box {
        padding-left: 30px;
        gap: 20px;
    }

    .partner-content h3 {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .partner-box {
        flex-direction: column;
        padding-left: 20px;
    }

    .partner-box::before {
        left: 0;
        width: 3px;
    }

    .partner-content h3 {
        font-size: 22px;
    }

    .partner-content p {
        font-size: 15px;
    }

    .partners-title {
        font-size: 30px;
    }
}

/* Smaller Mobile */
@media (max-width: 480px) {
    .partner-box {
        padding-left: 15px;
        gap: 15px;
    }

    .partners-title {
        font-size: 26px;
    }

    .partner-content h3 {
        font-size: 20px;
    }

    .partner-content p {
        font-size: 14px;
    }
}


/* IMAGE WRAP */
.img-wrap {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Content */
.partner-content h3 {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 5px;
}

.p-sub {
    color: var(--green);
    font-weight: 600;
    font-size: 15px;
}

.partner-content p {
    margin-top: 10px;
    color:rgb(14, 14, 14);
    line-height: 1.7;
    font-size: 15px;
}

/* Bottom Line */
.team-note {
    margin-top: 40px;
    padding-left: 40px;
    border-left: 4px solid var(--green);
}

.team-note p {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.7;
}
.ourteam-section {
    padding: 90px 20px;
    background: linear-gradient(to right, #bfd9ff, #c6ffdf);
}

/* MAIN CONTAINER */
.team-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT CONTENT */
.team-left {
    flex: 1;
    min-width: 300px;
}

.team-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.team-left p {
    font-size: 16px;
    color: rgb(20, 20, 20);
    line-height: 1.7;
    margin-bottom: 15px;
    word-wrap: break-word;
}

/* RIGHT IMAGE */
.team-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

/* IMAGE BOX */
.team-image-wrap {
    width: 520px;
    height: 390px;
    position: relative;
    border: 3px solid var(--primary);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    transition: 0.4s ease;
}

/* IMAGE */
.team-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: 0.4s ease;
}

.team-image-wrap:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

.team-image-wrap:hover {
    box-shadow: 0 0 25px rgba(50,48,122,0.6);
}

/* ========================================= */
/* RESPONSIVE MEDIA QUERIES                  */
/* ========================================= */

/* Tablets */
@media (max-width: 991px) {

    .team-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .team-image-wrap {
        width: 95%;
        height: 360px;
    }

    .team-left h2 {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .team-image-wrap {
        width: 100%;
        height: 300px;
    }

    .team-left h2 {
        font-size: 28px;
    }

    .team-left p {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .team-image-wrap {
        width: 260px;
        height: 200px;
        border-radius: 14px;
    }

    .team-left h2 {
        font-size: 24px;
    }

    .team-left p {
        font-size: 14px;
        line-height: 1.45;   /* FIXED – no compression */
    }
}

/* Extra Small Phones (325px–360px) */
@media (max-width: 360px) {

    .team-image-wrap {
        width: 230px;
        height: 180px;
    }

    .team-left p {
        font-size: 13px;
        line-height: 1.45;
    }
}

.projects-section {
    padding: 80px 20px;
    background: rgb(241, 241, 241);
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.projects-section h2 {
    text-align: center;
    font-size: 36px;
    color: #32307a;
    margin-bottom: 15px;
    font-weight: 700;
}

.projects-section p {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
    font-weight: 800;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* PROJECT CARD */
.project-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff, #f4f6ff);
    padding: 28px 22px;
    border-radius: 18px;

    font-size: 15px;
    font-weight: 600;
    color: #333;

    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* gradient border */
.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: 18px;
    background: linear-gradient(135deg, #32307a, #2d995e);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

/* glow highlight */
.project-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(45,153,94,0.25);
    filter: blur(80px);
    top: -40px;
    right: -40px;
    opacity: 0;
    transition: 0.4s;
}

/* hover */
.project-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 55px rgba(50,48,122,0.25);
    color: #32307a;
}

.project-card:hover::before,
.project-card:hover::after {
    opacity: 1;
}

/* Responsive Text */
@media (max-width: 768px) {
    .projects-section h2 {
        font-size: 28px;
    }

    .projects-section p {
        font-size: 14px;
    }

    .project-card {
        font-size: 14px;
        padding: 22px 18px;
    }
}

@media (max-width: 480px) {
    .projects-section h2 {
        font-size: 24px;
    }

    .projects-section p {
        font-size: 13px;
    }

    .project-card {
        font-size: 13px;
    }
}

/* ===============================
   HVAC SECTION HEADING STYLE
================================ */

.vrv-section-head {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.vrv-section-head .main-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary);
    position: relative;
}

/* subtle underline glow */
.vrv-section-head .main-title::after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--green)
    );
    display: block;
    margin: 14px auto 0;
    border-radius: 10px;
}

.vrv-section-head .main-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-top: 18px;
    padding: 0 10px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .vrv-section-head .main-title {
        font-size: 32px;
    }

    .vrv-section-head .main-subtitle {
        font-size: 16px;
    }
}
hr {
    border: none;
    height: 2px;
    width: 100%;
    margin: 35px auto;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary),
        transparent
    );
    position: relative;
}

hr::after {
    content: "";
    width: 100%;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.safety-process {
    padding: 100px 20px;
    background: linear-gradient(120deg, #f4f6ff, #eef2ff);
    font-family: 'Poppins', sans-serif;
}

.safety-wrap {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */
.safety-left h2 {
    font-size: 40px;
    font-weight: 700;
    color: #32307a;
    margin-bottom: 18px;
}

.safety-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* RIGHT PROCESS LIST */
.safety-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
}

.safety-right::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(#32307a, #2d995e);
}

/* STEP */
.safety-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-left: 60px;
    position: relative;
}

.safety-step i {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #32307a, #2d995e);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(45,153,94,0.4);
}

.safety-step h4 {
    font-size: 18px;
    font-weight: 600;
    color: #32307a;
    margin-bottom: 4px;
}

.safety-step span {
    font-size: 14px;
    color: #555;
}

/* Hover Effect */
.safety-step:hover i {
    transform: scale(1.12);
}

/* Responsive */
@media (max-width: 900px) {
    .safety-wrap {
        grid-template-columns: 1fr;
    }

    .safety-left h2 {
        font-size: 32px;
    }

    .safety-right::before {
        left: 22px;
    }
}
.footer-anker{
    text-decoration: none;
}


.social-float {
    position: fixed;
    left: 10px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

/* ICON STYLE SAME RAHEGA */
.social {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 14px;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover slide left se */
.social:hover {
    transform: translateX(8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* BRAND COLORS */
.social.fb {
    background: linear-gradient(135deg, #1877f2, #0f5ad6);
}

.social.insta {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social.yt {
    background: linear-gradient(135deg, #ff0000, #c80000);
}

/* Icon animation */
.social i {
    transition: transform 0.35s ease;
}

.social:hover i {
    transform: rotate(8deg) scale(1.15);
}
