:root {
    --primary-color: #2c3d90;
    --secondary-color: #107b3e;
    --accent-color: #d7a728;
    --text-dark: #1f2937;
    --text-light: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Top Header */
.top-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-header a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.top-header a:hover {
    color: var(--accent-color);
}

/* Main Navigation */
.main-navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
}

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

/* Navbar Dropdown */
.main-navbar .nav-dropdown {
    position: relative;
}

.main-navbar .nav-caret {
    font-size: 10px;
    margin-left: 6px;
}

.main-navbar .dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 220px;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 999;
}

.main-navbar .dropdown-menu li {
    margin: 0;
}

.main-navbar .dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.main-navbar .dropdown-menu a:hover {
    background: #f5f7ff;
    color: var(--primary-color);
}

@media (min-width: 992px) {
    .main-navbar .nav-dropdown:hover > .dropdown-menu {
        display: block;
    }
}

@media (max-width: 991.98px) {
    .main-navbar .dropdown-menu {
        position: static;
        display: block;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
        padding: 0 0 0 16px;
        min-width: auto;
    }

    .main-navbar .dropdown-menu a {
        padding: 8px 0;
    }
}

/* Banner Section */
.owl-carousel.banner-slider,
.owl-carousel.testimonial-slider {
    display: block;
}
.banner-slider .item {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.banner-slider.home-banner .item {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.banner-item-1 {
    background-image: url('../img/banner.jpg');
}

.banner-item-2 {
    background-image: url('../img/banner-2.jpg');
}

.banner-item-3 {
    background-image: url('../img/banner-3.jpg');
}

.banner-slider .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 61, 144, 0.6) 0%, rgba(16, 123, 62, 0.4) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 40px;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-primary-custom {
    background: var(--accent-color);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background: #b8901f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(215, 167, 40, 0.4);
}

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

.section-header {
    margin-bottom: 60px;
}

.section-title-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}
.contact-section .section-title-heading {
    color: #fff;
}
.section-description {
    color: var(--text-light);
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 0;
}

/* About Section */
.about-section {
    position: relative;
    background: #ffffff;
    padding: 100px 0;
}

.about-content {
    padding-right: 40px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto 30px;
    border-radius: 2px;
}

.about-lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-highlights {
    margin-top: 40px;
}
.about-highlights .highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    flex-direction: row;
    justify-content: flex-start;
}
.highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.highlight-item:hover {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(44, 61, 144, 0.2);
}

.highlight-text h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.highlight-text p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.about-image-section {
    position: relative;
}

.about-main-image {
    position: relative;
    border-radius: 25px;
    overflow: visible;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.about-main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(44, 61, 144, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 25px;
}

.about-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
    border-radius: 25px;
}

.about-main-image:hover img {
    transform: scale(1.05);
}

.stat-box {
    position: absolute;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 3;
    min-width: 140px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.stat-box-1 {
    top: -47px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-color), #1e2d7a);
    color: white;
}

.stat-box-1 .stat-number,
.stat-box-1 .stat-label {
    color: white;
}

.stat-box-2 {
    bottom: -47px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), #f4c430);
    color: white;
}

.stat-box-2 .stat-number,
.stat-box-2 .stat-label {
    color: white;
}

.stat-box-3 {
    bottom: -47px;
    left: 20px;
    background: linear-gradient(135deg, var(--secondary-color), #0d5d2f);
    color: white;
}

.stat-box-3 .stat-number,
.stat-box-3 .stat-label {
    color: white;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-lead {
        font-size: 18px;
    }
    
    .about-stats-box {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
    
    .stat-box:not(:last-child)::after {
        display: none;
    }
    
    .stat-box {
        border-bottom: 1px solid rgba(44, 61, 144, 0.1);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .stat-box:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

/* AMC Partners */
.amc-partnerships-section {
    background: #f8f9fa;
}

.amc-logo {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amc-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.amc-logo img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(0%);
    transition: all 0.3s;
}

.amc-logo:hover img {
    filter: grayscale(100%);
}

/* Services */
.service-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
    margin-bottom: 0;
    position: relative;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
    transition: all 0.5s ease;
}

.service-box:hover .service-overlay {
    background: linear-gradient(135deg, rgba(44, 61, 144, 0.9) 0%, rgba(16, 123, 62, 0.9) 100%);
}

.service-box:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    text-align: center;
    color: white;
    transition: all 0.5s ease;
}

.service-box:hover .service-content {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    padding: 40px 30px;
}

.service-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.service-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
    margin-top: 0;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-box:hover .service-content p {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 15px;
}

.service-box:hover .service-content h4 {
    margin-bottom: 15px;
    transition: margin-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* SIP Calculator */
.calculator-section {
    position: relative;
    background-image: url('../img/contact-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 61, 144, 0.85) 0%, rgba(16, 123, 62, 0.85) 100%);
    z-index: 0;
}

.calculator-section .container {
    position: relative;
    z-index: 1;
}

.calculator-subtitle {
    color: var(--accent-color);
}

.calculator-title {
    color: white;
}

.calculator-underline {
    background: linear-gradient(90deg, white, var(--accent-color));
}

.calculator-description {
    color: rgba(255, 255, 255, 0.9);
}

.calculator-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-control {
    border-radius: 10px;
    padding: 12px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
}

.form-control:focus {
    background: rgba(255,255,255,0.2);
    border-color: var(--accent-color);
    color: white;
    box-shadow: none;
}

.form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

.result-box {
    background: rgba(255,255,255,0.15);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    backdrop-filter: blur(10px);
    display: none;
}

.result-box.show {
    display: block;
}

/* FAQ */
.faq-section {
    background: #f8f9fa;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-button {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

/* Testimonials */
.testimonial-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 20px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h5 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-author p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.testimonial-avatar-1 {
    background: #2c3d90;
}

.testimonial-avatar-2 {
    background: #1e3a8a;
}

.testimonial-avatar-3 {
    background: #1e3a8a;
}

.testimonial-rating {
    margin-top: 8px;
    color: var(--accent-color);
}

.testimonial-rating i {
    font-size: 12px;
    margin-right: 2px;
}

/* Contact Section */
.contact-section {
    position: relative;
    background-image: url('../img/banner-4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-left-box {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.contact-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-card:hover::before {
    transform: scaleY(1);
}

.contact-icon-wrapper {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(44, 61, 144, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(44, 61, 144, 0.4);
}

.contact-details {
    flex: 1;
    width: 100%;
}

.contact-details h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-details p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Map and Form */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 400px;
    flex: 1;
    min-height: 400px;
}

.map-iframe {
    border: 0;
}

.enquiry-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    overflow-y: auto;
}

@media (max-width: 991px) {
    .contact-left-box {
        margin-bottom: 30px;
    }
    
    .contact-info-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 350px;
        min-height: 350px;
    }
    
    .enquiry-form {
        height: auto;
    }
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
    display: inline-block;
}

.enquiry-form .form-group {
    margin-bottom: 20px;
}

.enquiry-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f9fafb;
    color:#000;
}

.enquiry-form .form-control:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(44, 61, 144, 0.1);
    outline: none;
}

.enquiry-form .form-control::placeholder {
    color: #9ca3af;
}

.enquiry-form select.form-control {
    cursor: pointer;
}

.enquiry-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
}

.footer-section {
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo-img {
    height: 50px;
    width: auto;

}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 30px;
}

.footer-heading {
    color: var(--accent-color);
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    list-style:none;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-links li a i {
    font-size: 10px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-links li a:hover i {
    opacity: 1;
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.contact-icon-footer {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(44, 61, 144, 0.3);
}

.contact-info-footer {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-info-footer a,
.contact-info-footer span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.contact-info-footer a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--accent-color), #f4c430);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(215, 167, 40, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    margin-top: 50px;
}

.footer-disclaimer {
    margin-bottom: 20px;
}

.disclaimer-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

.disclaimer-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 32px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
}

/* About page specific tweaks */
.about-main-image {
    min-height: 320px;
    display: block;
    position: relative;
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.team-grid .service-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-grid .service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    .about-main-image { min-height: 220px; }
}

/* Services page helpers */
.section-bg-light {
    background: #f8f9fa;
}

.service-detail-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.highlight-item-white {
    background: #ffffff;
    border: none;
}

.highlight-title-large {
    font-size: 24px;
    margin-bottom: 15px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.check-list li {
    margin-bottom: 10px;
}

.check-list .check-icon {
    color: var(--secondary-color);
    margin-right: 10px;
}

.highlight-item-centered {
    text-align: center;
    align-items: center;
    padding: 40px 30px;
    height: 100%;
}

.highlight-icon-large {
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    font-size: 36px;
}

.highlight-item-process {
    text-align: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.highlight-icon-accent {
    background: linear-gradient(135deg, var(--accent-color), #f4c430);
}

.process-step-title {
    color: white;
    margin-bottom: 10px;
}

.process-step-text {
    color: rgba(255,255,255,0.9);
}

.cta-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-lg-custom {
    font-size: 18px;
    padding: 15px 40px;
}

.btn-secondary-custom {
    background: var(--secondary-color);
}

.btn-secondary-custom:hover {
    background: #0d5d2f;
}

.ms-auto {
    margin-left: auto !important;
}

.navbar-nav.mr-auto{
        margin-left: auto !important;
}
.contact-page.contact-section{
    background-image: none;
}

.contact-page.contact-section .section-title-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}
.contact-page.contact-section::before{
    background:#fff;
    
}
.home-calculator .kp-sip-calculator label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #fff !important;
    margin-bottom: 10px;
}
.home-calculator .kp-sip-calculator-result div {
    justify-content: space-between;
    display: flex;
    color: #fff;
}
#home.banner-slider .item {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.service-image{
    position: relative;
}

.service-overlay{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    pointer-events: none; /* THIS FIXES CLICK */
}

.service-content{
    position: absolute;
    bottom:0;
    left:0;
    width:100%;
    pointer-events: none;
}

.gallery-link{
    display:block;
}

/* ===============================
   NAVBAR DROPDOWN HOVER FIX
================================= */

/* Desktop only */
@media (min-width: 992px) {

    /* parent position fix */
    .navbar .dropdown {
        position: relative;
    }

    /* hide dropdown by default */
    .navbar .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 0;
        border-radius: 6px;
        border: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    /* SHOW ON HOVER */
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }

    /* smooth effect */
    .navbar .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

}


/* Mobile dropdown fix */
@media (max-width: 991px) {

    .navbar .dropdown-menu {
        display: none;
    }

    .navbar .dropdown.show > .dropdown-menu {
        display: block;
    }

}
.main-footer ul.sub-menu{
	display:none;
}