/* Navbar Main Container */
.custom-navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05); /* Light Shadow for professional look */
    border-bottom: 2px solid #f1f1f1;
    padding: 10px 0;
}

/* Logo Sizing */
.logo-img {
    height: 55px; /* Thora bara kiya hai readability ke liye */
    width: auto;
}

/* Nav Links - Black Text */
.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #000000 !important; /* Pure Black */
    margin: 0 10px;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

/* Hover Effect - Green */
.nav-link:hover, .nav-link.active {
    color: #10B981 !important; /* TenzSoft Green */
}

/* Dropdown Customization */
.dropdown-menu {
    background: #ffffff;
    border-top: 3px solid #10B981 !important;
    padding: 10px;
}

.dropdown-item {
    font-weight: 500;
    padding: 8px 20px;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #10B981;
}

/* Buttons styling */
.custom-btn-outline {
    border: 2px solid #10B981 !important;
    color: #10B981 !important;
    border-radius: 50px;
    padding: 7px 18px;
    font-weight: 600;
    font-size: 14px;
}

.custom-btn-outline:hover {
    background: #10B981 !important;
    color: #fff !important;
}

.custom-btn-solid {
    background: #FACC15 !important; /* TenzSoft Gold */
    border: none !important;
    color: #000 !important;
    border-radius: 50px;
    padding: 9px 20px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.custom-btn-solid:hover {
    background: #eab308 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(250, 204, 21, 0.3);
}

/* Mobile responsive fixes */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 20px 0;
    }
    .custom-btn-outline, .custom-btn-solid {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}



/* Hero Styles */
.hero-area { background-color: #ffffff; position: relative; }

.badge-pill {
    background: #e7f7f2;
    color: #10B981;
    padding: 7px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    display: inline-block;
}

.main-heading {
    font-size: clamp(2rem, 4vw, 3.5rem); /* Auto responsive font size */
    font-weight: 850;
    color: #064E3B;
    line-height: 1.1;
}

.text-success { color: #10B981 !important; }

/* Image Styling - Normal Size */
.image-wrapper {
    max-width: 85%; /* Image ko thora chota rakha hai screen se */
    margin: 0 auto;
}

.slider-img {
    width: 100%;
    height: 380px; /* Standard Height */
    object-fit: cover; /* Image khrab nahi hogi */
    border-radius: 25px;
}

.btn-tenz-primary {
    background-color: #10B981;
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}

.btn-tenz-primary:hover {
    background-color: #0d9668;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
    color: white;
}


/* Hero Section Container */
.hero-area { 
    padding-top: 50px !important;
    padding-bottom: 20px !important; /* Nichli space kam kar di */
}

/* Slider height control */
.mainHeroSwiper { 
    padding-bottom: 40px !important; /* Dots ke liye sirf thori si jagah */
}

/* Pagination Dots ki position fix */
.swiper-pagination {
    position: relative !important; /* Absolute se hata kar relative kiya taake space control ho */
    bottom: 0px !important;
    margin-top: 15px !important; 
}

/* Dots ka design professional karne ke liye */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #10B981 !important;
    width: 25px; /* Active dot thora lamba (professional look) */
    border-radius: 5px;
}

/* Image ka normal size */
.slider-img {
    width: 100%;
    max-height: 350px; /* Bohat bari image nahi hogi */
    object-fit: cover;
    border-radius: 20px;
}

/* Swiper Pagination */
.mainHeroSwiper { padding-bottom: 60px !important; }
.swiper-pagination-bullet-active { background: #10B981 !important; }

/* Responsive adjustments */
@media (max-width: 991px) {
    .slider-img { height: 280px; }
    .image-wrapper { max-width: 100%; }
}


/* Setion B ki styling css */


/* Services Section Styles */
.services-grid-area {
    background-color: #fcfdfd; /* Light background for contrast */
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0 !important;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.1) !important;
    border-color: #10B981 !important;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #e7f7f2; /* TenzSoft Light Green */
    color: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 28px;
    transition: 0.3s;
}

.service-card:hover .icon-box {
    background: #10B981;
    color: #ffffff;
}

.service-card h4 {
    color: #064E3B; /* TenzSoft Dark Green */
    font-size: 22px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
}

.service-link {
    text-decoration: none;
    color: #10B981;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.service-link:hover {
    color: #064E3B;
    padding-left: 5px;
}

/* Hero section ke sath width align karne ke liye */
.container {
    max-width: 1200px; /* Aapke hero section ki width ke mutabiq adjust karein */
}



/*Proccess Section ki stling css*/
/* 1. Section ki total height control */
.process-section {
    padding: 0 !important; 
    margin: 0 !important;
    min-height: auto !important; /* Extra space khatam */
}

/* 2. Header aur Cards ka gap khatam */
.process-section .row.py-4 {
    padding-top: 40px !important;
    padding-bottom: 0px !important; /* Header ke neeche gap zero */
}

/* 3. Swiper Container ki height lock karein */
.processSwiper {
    padding-top: 20px !important;
    padding-bottom: 40px !important; /* Dots ke liye space */
    height: 420px !important; /* YAHAN SE HEIGHT CONTROL HOGI */
}

/* 4. Card ko exact size dein */
.process-card {
    height: 350px !important; /* Card ki height fix kar di */
    padding: 25px 20px !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Content upar se shuru ho */
    background: #ffffff;
    border-radius: 15px;
}

/* 5. Description text ko limit karein taake box bara na ho */
.process-desc {
    font-size: 13px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

/* Professional Process Cards */
.process-card {
    background: #ffffff;
    height: auto !important;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    position: relative;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 50px !important; /* Space for number */
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: #10B981;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FACC15; /* TenzSoft Yellow */
    color: #064E3B; /* Dark Green */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 5;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    color: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 28px;
    margin: 0 auto;
    transition: 0.3s;
}

.process-card:hover .process-icon {
    background: #10B981;
    color: #fff;
    transform: scale(1.1);
}

.process-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563 !important; /* Sharper Grey */
    font-weight: 500;
    margin-top: 10px;
}

/* Swiper dots position fix */
.processSwiper {
    padding: 30px 10px 60px 10px !important;
}

/* Team Section Professional Styling */
.bg-success-soft {
    background-color: #e7f7f2;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}

.team-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-10px);
}

.team-img-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1; /* Square images */
}

.team-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img-container img {
    transform: scale(1.1);
}

/* Hover Social Icons Overlay */
.team-social {
    position: absolute;
    bottom: -50px; /* Hidden by default */
    left: 0;
    width: 100%;
    background: rgba(16, 185, 129, 0.9); /* Green theme overlay */
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.team-social a:hover {
    color: #FACC15; /* Yellow theme hover */
    transform: translateY(-3px);
}

.team-info h5 {
    color: #064E3B;
    transition: 0.3s;
}

.team-card:hover h5 {
    color: #10B981;
}

.col-lg-8 span{
    margin-top: 25px;
}


/*Section D ki styling css*/


/* CTA Section Custom Styling */
.cta-main-card {
    border: none;
    transition: transform 0.3s ease;
}

/* Icons styling and animation */
.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    animation: floating 3s ease-in-out infinite;
}

.icon-circle.main-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.25);
    animation-delay: 0.5s;
}

/* Floating Animation */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cta-main-card {
        padding: 30px 20px !important;
        text-align: center;
    }
    .cta-main-card .d-flex {
        justify-content: center;
    }
    .display-5 {
        font-size: 2rem;
    }
}


/* Blog Card Styling */
.blogs-section{
    margin-bottom: -90px;
}
.blog-card {
    height: 480px !important; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0 !important;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

.blog-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #10B981; /* TenzSoft Green */
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* Custom Arrows Styling */
.blog-prev, .blog-next {
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #eee;
    color: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.blog-prev:hover, .blog-next:hover {
    background: #10B981;
    color: #fff;
    border-color: #10B981;
}

/* Arrow position fix for swiper */
.blog-prev.swiper-button-disabled, .blog-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}




/* Custom Form Styling */
.discovery-card {
    background: #ffffff;
}

.custom-input {
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    padding: 12px 15px !important;
    border-radius: 12px !important;
    font-size: 15px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background: #FFF !important;
    border-color: #10B981 !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1) !important;
}

/* Service Checkbox Buttons */
.btn-outline-success {
    border: 1.5px solid #E2E8F0;
    color: #475569;
    background: #F8FAFC;
}

.btn-check:checked + .btn-outline-success {
    background-color: #10B981 !important;
    border-color: #10B981 !important;
    color: white !important;
}

/* --- IMPORTANT: Phone Input Overlap Fix --- */
.iti { 
    width: 100% !important; 
    display: block !important; 
}

/* Text aur flag ke darmiyan space barhane ke liye padding */
.phone-input-field {
    padding-left: 90px !important; 
}

/* Agar mobile par masla ho to padding adjust karein */
@media (max-width: 576px) {
    .phone-input-field {
        padding-left: 85px !important;
    }
}



/* Footer Enhancements */
.footer-links a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: 0.3s all ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #FFD700 !important; /* Yellow hover from logo */
    transform: translateX(5px);
}

.social-box {
    width: 35px;
    height: 35px;
    background: rgba(255, 215, 0, 0.1); /* Light yellow tint */
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #FFD700 !important;
    transition: 0.3s;
}

.social-box:hover {
    background: #FFD700;
    color: #064E3B !important;
    transform: translateY(-3px);
}

.contact-icon {
    color: #FFD700;
    font-size: 1.1rem;
}

.hover-yellow:hover {
    color: #FFD700 !important;
    opacity: 1 !important;
}

/* Height and Spacing Fix */
.footer-section {
    position: relative;
    overflow: hidden;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .footer-section { text-align: center; }
    .social-links { justify-content: center; }
    .contact-details div { justify-content: center; }
}



:root {
    --primary-green: #064E3B;
    --gold-yellow: #FFD700;
}

.section-subtitle {
    color: var(--gold-yellow);
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-title {
    color: var(--primary-green);
    font-weight: 800;
}

.title-line {
    width: 60px;
    height: 4px;
    background: var(--gold-yellow);
    margin: 15px auto;
    border-radius: 2px;
}

.location-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(6, 78, 59, 0.15);
}

.flag-container {
    height: 180px;
    position: relative;
}

.flag-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-yellow);
    color: var(--primary-green);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 2;
}

.location-body {
    padding: 30px;
}

.location-body h4 {
    color: var(--primary-green);
    font-weight: 700;
}

.location-body i {
    color: var(--gold-yellow);
    margin-right: 8px;
}

.contact-link {
    display: block;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    margin: 20px 0;
}

.map-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.map-btn:hover {
    background: var(--primary-green);
    color: #fff;
}