
/*** Corporate Header ***/
.corp-topbar {
    background: #1a1a2e;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.corp-topbar-item {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}
.corp-topbar-item i { color: #2d84c4; }
.corp-topbar-item:hover { color: #fff; }

.corp-social-icon {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s;
}
.corp-social-icon:hover { background: #2d84c4; color: #fff; }

.corp-navbar {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 0;
    z-index: 999;
}
.corp-navbar .container { padding: 12px 15px; }

.corp-nav-link {
    color: #333 !important;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 14px !important;
    border-radius: 4px;
    transition: 0.3s;
    position: relative;
}
.corp-nav-link:hover,
.corp-nav-link.active { color: #2d84c4 !important; background: rgba(45,132,196,0.06); }

.corp-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: #2d84c4;
    border-radius: 2px;
}

.corp-dropdown {
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 220px;
}
.corp-dropdown .dropdown-item {
    font-size: 14px;
    padding: 10px 20px;
    color: #444;
    transition: 0.2s;
}
.corp-dropdown .dropdown-item:hover { background: rgba(45,132,196,0.08); color: #2d84c4; padding-left: 25px; }

.corp-btn-primary {
    background: #2d84c4;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
}
.corp-btn-primary:hover { background: #1a6aa8; color: #fff; transform: translateY(-1px); }

.corp-toggler {
    border: none;
    background: #2d84c4;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
}

@media (max-width: 991px) {
    .corp-navbar .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-top: 1px solid #eee;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }
    .corp-nav-link.active::after { display: none; }
}
/*** Corporate Header End ***/

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Global ***/
html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    color: #555;
}

/*** Back to Top & WhatsApp ***/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 90px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.whatsapp-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366 !important;
    color: #fff !important;
    border-radius: 50%;
    font-size: 22px;
    transition: 0.3s;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
}
.whatsapp-btn:hover { background: #128C7E !important; }

/*** Buttons ***/
.btn { font-weight: 500; transition: all 0.3s ease !important; }
.btn:hover { transform: translateY(-2px); }

.btn-square, .btn-sm-square, .btn-md-square, .btn-lg-square, .btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}
.btn-square  { width: 32px; height: 32px; }
.btn-sm-square { width: 34px; height: 34px; }
.btn-md-square { width: 44px; height: 44px; }
.btn-lg-square { width: 56px; height: 56px; }
.btn-xl-square { width: 66px; height: 66px; }

.btn.btn-primary {
    background: var(--bs-primary) !important;
    color: #fff !important;
    border: none;
    font-weight: 500;
}
.btn.btn-primary:hover { background: var(--bs-dark) !important; }

.btn.btn-dark {
    background: var(--bs-dark) !important;
    color: #fff !important;
    border: none;
}
.btn.btn-dark:hover { background: var(--bs-primary) !important; }

.btn.btn-light {
    background: var(--bs-primary) !important;
    color: #fff !important;
    border: none;
}
.btn.btn-light:hover {
    background: #fff !important;
    color: var(--bs-dark) !important;
}

/*** Topbar ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-dark) !important;
}
@media (max-width: 768px) { .topbar { display: none; } }

/*** Navbar ***/
.sticky-top, .sticky-top .container { transition: 0.5s !important; }

.navbar .navbar-nav .nav-link { color: var(--bs-dark) !important; font-weight: 500; }
.navbar .navbar-nav .nav-item { position: relative; margin: 0 5px !important; }

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

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 8px;
        margin-top: 20px !important;
        transition: .4s;
        opacity: 0;
        z-index: 9;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}
@media (max-width: 1200px) {
    .navbar .nav-item .dropdown-menu { margin-top: 15px !important; transition: 0.4s; }
}
.dropdown .dropdown-menu a:hover { background: var(--bs-primary) !important; color: #fff; }
.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: #fff !important;
    margin-top: 20px !important;
    opacity: 1;
}
.navbar .navbar-toggler {
    padding: 8px 15px;
    color: #fff;
    background: var(--bs-primary);
    border: none;
}

/*** Carousel ***/
.header-carousel .header-carousel-item { position: relative; overflow: hidden; z-index: 1; }

.header-carousel-item-img-1 img,
.header-carousel-item-img-2 img,
.header-carousel-item-img-3 img {
    height: 780px;
    object-fit: cover;
    animation: zoomIn 10s ease-in-out infinite alternate;
}
@keyframes zoomIn {
    0%   { transform: scale(1); }
    100% { transform: scale(1.06); }
}

/* Corporate gradient overlay — dark left, transparent right */
.header-carousel .header-carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgba(10,20,40,0.82) 0%, rgba(10,20,40,0.55) 55%, rgba(10,20,40,0.15) 100%);
    z-index: 2;
}

/* Caption — left aligned, vertically centered */
.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
    padding: 0 8%;
}
.carousel-caption-inner {
    max-width: 600px;
    text-align: left;
}
.carousel-caption-inner h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.carousel-caption-inner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    max-width: 520px;
}

/* Corporate badge */
.corp-badge {
    display: inline-block;
    background: #2d84c4;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 3px;
    margin-bottom: 18px;
}

/* Carousel buttons */
.corp-carousel-btn-primary {
    background: #2d84c4;
    color: #fff;
    border: 2px solid #2d84c4;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: 0.3s;
    text-decoration: none;
}
.corp-carousel-btn-primary:hover { background: #1a6aa8; border-color: #1a6aa8; color: #fff; transform: translateY(-2px); }

.corp-carousel-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    text-decoration: none;
}
.corp-carousel-btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; transform: translateY(-2px); }

/* Owl nav arrows */
.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 4px !important;
    color: #fff !important;
    font-size: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 10;
    backdrop-filter: blur(4px);
}
.header-carousel .owl-nav .owl-prev { left: 20px; }
.header-carousel .owl-nav .owl-next { right: 20px; }
.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover { background: #2d84c4 !important; border-color: #2d84c4 !important; }

/* Owl dots */
.header-carousel .owl-dots {
    position: absolute;
    bottom: 28px;
    left: 8%;
    display: flex;
    gap: 8px;
    z-index: 10;
}
.header-carousel .owl-dots .owl-dot span {
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.4) !important;
    display: block;
    transition: 0.3s;
    margin: 0;
}
.header-carousel .owl-dots .owl-dot.active span,
.header-carousel .owl-dots .owl-dot:hover span {
    background: #2d84c4 !important;
    width: 48px;
}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item .carousel-caption { padding: 0 5%; }
    .header-carousel-item-img-1 img,
    .header-carousel-item-img-2 img,
    .header-carousel-item-img-3 img { height: 520px; }
    .carousel-caption-inner h1 { font-size: 2.2rem; }
}
@media (max-width: 576px) {
    .header-carousel-item-img-1 img,
    .header-carousel-item-img-2 img,
    .header-carousel-item-img-3 img { height: 420px; }
    .carousel-caption-inner h1 { font-size: 1.6rem; }
    .carousel-caption-inner p  { font-size: 0.88rem; }
    .corp-carousel-btn-primary, .corp-carousel-btn-outline { padding: 10px 18px; font-size: 0.82rem; }
    .header-carousel .owl-nav { display: none; }
}

/*** About ***/
.about-section {
    background: #f8f9fb;
    padding: 40px 0 80px;
}
.about-img-wrap {
    position: relative;
    width: 100%;
    background: #f8f9fb;
    display: block;
}
.about-img-wrap img {
    width: 100%;
    height: 700px;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
}
.about-exp-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #2d84c4;
    color: #fff;
    padding: 18px 24px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 40px rgba(45,132,196,0.45);
    z-index: 3;
}
.about-exp-num {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}
.about-exp-label {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2d84c4;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f1c2e;
    line-height: 1.3;
    margin-bottom: 16px;
    text-align: left;
}
.about-desc {
    color: #6b7280;
    font-size: 0.96rem;
    line-height: 1.8;
    margin-bottom: 28px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin-bottom: 30px;
}
.about-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}
.about-feature-item i { color: #2d84c4; font-size: 1rem; }
.about-stats {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 20px 28px;
    margin-bottom: 28px;
    border: 1px solid #e4eaf2;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.about-stat-item { flex: 1; text-align: center; }
.about-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #2d84c4;
    line-height: 1;
}
.about-stat-plus {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2d84c4;
}
.about-stat-item p {
    font-size: 0.78rem;
    color: #9ca3af;
    margin: 4px 0 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.about-stat-divider {
    width: 1px;
    height: 44px;
    background: #e4eaf2;
    flex-shrink: 0;
}
.about-btn-outline {
    background: transparent;
    color: #2d84c4;
    border: 2px solid #2d84c4;
    padding: 11px 26px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    text-decoration: none;
}
.about-btn-outline:hover { background: #2d84c4; color: #fff; transform: translateY(-2px); }
@media (max-width: 992px) {
    .about-title { font-size: 1.6rem; }
    .about-exp-badge { right: 0; bottom: -16px; padding: 14px 18px; }
}
@media (max-width: 768px) {
    .about-section { padding: 60px 0 80px; }
    .about-features { grid-template-columns: 1fr; }
    .about-exp-badge { right: 10px; bottom: -16px; }
}

/*** Products Section ***/
.products-section {
    background: #fff;
    padding: 80px 0;
}
.prod-card {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(45,132,196,0.12);
    border-color: #2d84c4;
}
.prod-img {
    position: relative;
    overflow: hidden;
}
.prod-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.prod-card:hover .prod-img img { transform: scale(1.06); }
.prod-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(45,132,196,0.75); */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}
.prod-overlay i { color: #fff; font-size: 2rem; }
.prod-card:hover .prod-overlay { opacity: 1; }
.prod-body {
    padding: 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.prod-tag {
    display: inline-block;
    background: #eef6fd;
    color: #2d84c4;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
}
.prod-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f1c2e;
    margin-bottom: 10px;
    line-height: 1.4;
}
.prod-desc {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}
.prod-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: #2d84c4;
    text-decoration: none;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.prod-link:hover { color: #1a6aa8; gap: 8px; }

/*** Blog Section ***/
.blog-section {
    background: #f8f9fb;
    padding: 80px 0;
}
.blog-card {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(45,132,196,0.12);
    border-color: #2d84c4;
}
.blog-card-img {
    position: relative;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #2d84c4;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 3px;
}
.blog-card-body {
    padding: 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 12px;
}
.blog-card-meta i { color: #2d84c4; }
.blog-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f1c2e;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 16px;
}
.blog-card:hover .blog-card-title { color: #2d84c4; }

/*** FAQ Section ***/
.faq-section {
    background: #fff;
    padding: 80px 0;
}
.faq-item {
    border: 1px solid #e8edf3 !important;
    border-radius: 8px !important;
    overflow: hidden;
    transition: 0.3s;
}
.faq-item:hover { border-color: #2d84c4 !important; }
.faq-btn {
    font-size: 0.97rem;
    font-weight: 600;
    color: #0f1c2e !important;
    background: #fff !important;
    padding: 18px 20px;
    box-shadow: none !important;
}
.faq-btn:not(.collapsed) {
    background: #eef6fd !important;
    color: #2d84c4 !important;
    border-left: 3px solid #2d84c4;
}
.faq-btn::after { filter: none; }
.faq-btn:not(.collapsed)::after { filter: invert(40%) sepia(80%) saturate(500%) hue-rotate(180deg); }
.faq-body {
    font-size: 0.92rem;
    color: #6b7280;
    line-height: 1.8;
    padding: 16px 20px;
    border-top: 1px solid #e8edf3;
    background: #f8fafc;
}

/*** Swiper Pagination ***/
.swiper-pagination-bullet { background: var(--bs-primary) !important; opacity: 0.4; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--bs-primary) !important; }

/* --- Corporate Theme Footer --- */
.footer-section {
    background: #102147 !important; /* Deep Navy Blue (Ultimate Corporate Color) */
    color: #ffffff !important;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Heading with Accent Color */
.footer-heading {
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #27a855; /* Green accent underline from your theme */
}

/* Links Style */
.footer-link-list li a, 
.footer-contact-item a, 
.footer-product-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-link-list li a:hover {
    color: #2d84c4 !important; /* Blue hover from your theme */
    padding-left: 8px;
}

.footer-product-link:hover {
    color: #2d84c4 !important;
}

/* Social Buttons: White Box, Navy Icon */
.corp-social-btn {
    width: 38px;
    height: 38px;
    background: #ffffff !important; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: 0.4s ease;
}

.corp-social-btn i {
    color: #102147 !important; /* Navy icon color */
    font-size: 16px;
}

.corp-social-btn:hover {
    background: #2d84c4 !important; /* Blue hover */
    transform: translateY(-5px);
}

.corp-social-btn:hover i {
    color: #ffffff !important;
}

/* Copyright Strip */
.copyright-bar {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
/*** Responsive ***/
@media (max-width: 768px) {
    .faq .row.g-5 { flex-direction: column; }
    .faq-img { max-width: 85% !important; margin: 0 auto !important; }
    .back-to-top { right: 15px; bottom: 70px; width: 40px; height: 40px; }
    .whatsapp-btn { right: 15px; bottom: 20px; width: 40px; height: 40px; font-size: 20px; }
}
@media (max-width: 992px) {
    .navbar-brand img { width: 150px !important; height: auto !important; }
    .service .service-item .service-img img { height: 200px; }
    .blog .blog-item .project-img img { height: 180px; }
    .faq-img { max-width: 70% !important; }
}

/* --- CTA Section Styling --- */
.cta-box {
    background: var(--bs-primary); /* Aapka blue color */
    padding: 60px 40px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Background Design Element */
.cta-box::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    max-width: 600px;
}

/* CTA Buttons */
.cta-btn-white {
    background: #fff;
    color: var(--bs-primary) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid #fff;
}

.cta-btn-white:hover {
    background: transparent;
    color: #fff !important;
}

.cta-btn-outline-white {
    background: transparent;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: 0.3s;
}

.cta-btn-outline-white:hover {
    background: #fff;
    color: var(--bs-primary) !important;
    border-color: #fff;
}

@media (max-width: 991px) {
    .cta-box {
        padding: 40px 20px;
    }
    .cta-title {
        font-size: 1.5rem;
    }
}
/* --- About Section Mobile Fix (No Cropping) --- */
@media (max-width: 768px) {
    .about-img-wrap img, 
    .about-img-box img {
        height: auto !important; /* Image ki natural height rehne do */
        max-height: none !important; /* Height restrict mat karo varna kategi */
        width: 100% !important;
        object-fit: contain !important; /* Isse image kabhi nahi kategi */
        display: block;
    }

    .about-img-wrap, 
    .about-img-box {
        padding-right: 0 !important; /* Side ka extra space khatam */
        padding-bottom: 0 !important;
        margin-bottom: 20px !important; /* Text se sahi distance */
    }

    /* Experience Badge ko image ke bottom-right mein set karna (Chota karke) */
    .exp-badge, 
    .about-badge {
        position: absolute !important;
        bottom: 10px !important;
        right: 10px !important;
        padding: 10px 15px !important;
        min-width: 100px !important;
        background: var(--bs-primary) !important;
    }

    .exp-badge h2, 
    .about-badge h2 {
        font-size: 22px !important; /* 15+ ko thoda chota kiya */
    }

    .exp-badge p, 
    .about-badge p {
        font-size: 10px !important; /* "Years Exp" ko chota kiya */
    }
}
/* --- Only Image Circle (No Background) --- */
.my-circular-img {
    width: 450px; /* Aapke hisaab se size */
    height: 300px; /* Height aur width barabar honi chahiye perfect circle ke liye */
    border-radius: 50% !important; /* Image ko circle banane ke liye */
    object-fit: cover; /* Image ko stretch hone se bachane ke liye */
    background: transparent !important; /* Background hata diya */
    padding: 0 !important; /* Padding hata di */
    display: block;
    margin: 0 auto;
    transition: 0.4s ease;
}

/* Hover par halka sa effect corporate look ke liye */
/* .my-circular-img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
} */

/* Responsive for different devices */
@media (max-width: 991px) {
    .my-circular-img {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 575px) {
    .my-circular-img {
        width: 280px;
        height: 280px;
        margin-bottom: 20px;
    }
}

/* Navbar Toggler (Mobile View) */
/* Logo */
.navbar-logo {
    height: 65px;
    width: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
}

@media (max-width: 991px) {
    .corp-navbar .navbar-brand img {
        height: 60px !important;
        width: auto !important;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        transform: translateZ(0);
    }
}
.corp-toggler:focus { box-shadow: none; }

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .corp-nav-link { padding: 12px 0 !important; border-bottom: 1px solid #eee; }
}
