@font-face{
    font-family:'Roboto';
    font-style:italic;
    font-weight:100;
    font-stretch:100%;
    font-display:swap;
    src:url(https://fonts.gstatic.com/s/roboto/v48/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkC3kaSTbQWt4N.woff2) format('woff2');
}
:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --primary-color: #0a1c3d;
    --secondary-color: #017E3F;
    --accent-color: #ffd700;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
}

/* Typography - Exact source match */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 3.5rem; font-weight: 900; }
h2 { font-size: 2.5rem; font-weight: 800; }
h3 { font-size: 2rem; font-weight: 700; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
}

/* Header Styles */
.top-bar {
    background: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.main-navbar {
    background: rgb(255 255 255 / 50%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
    position: absolute;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 100%;
}

.main-navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color) !important;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: white !important;
    padding: 12px 20px !important;
    margin: 0 5px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 5px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Button Styles - Exact source match */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3aab46 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #3aab46 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
    padding: 10px 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 28, 61, 0.8) 0%, 
        rgba(10, 28, 61, 0.6) 50%, 
        rgba(255, 107, 53, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h3 { font-size: 2.2rem; color:#000;font-weight: 400;text-align:left; }

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.5);
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out;
}

.hero-content .lead {
    font-size: 14px;
    line-height: 1.8;
    margin: 40px 0;
    opacity: 0.95;
    color:#000;
    text-align:left;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section {
    padding: 120px 0;
}

.sec-overlay {
    background-color: #fff0;
    background-image: radial-gradient(at center center, #153243 0%, #017E3F 100%);
    opacity: .6;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 75px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), #3aab46);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card .icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

.feature-card h4 {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
}

/* Service Image Cards */
.service-image-card {
    height: 500px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-image-card:hover {
    transform: translateY(-5px);
}

.service-image-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 28, 61, 0.8) 0%,
        rgba(10, 28, 61, 0.6) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    transition: all 0.4s ease;
}

.service-image-card:hover .service-overlay {
    background: linear-gradient(135deg, rgba(10, 28, 61, 0.9) 0%, rgb(47 147 24 / 9%) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.service-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 100%;
}

.service-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.service-price {
    margin-bottom: 2rem;
}

.service-price .price-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.service-price .price-amount {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #12c816;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
    padding: 0.75rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2b4d 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 0;
}

.quote-section .container {
    position: relative;
    z-index: 1;
}

.quote-section h2 {
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.quote-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #3aab46);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card .service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 14px;
}

/* Package Cards */
.package-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.package-card.featured {
    transform: scale(1.02);
    border: 3px solid var(--secondary-color);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.package-header {
    background: linear-gradient(135deg, var(--primary-color), #1a2b4d);
    color: white;
    padding: 30px;
    text-align: center;
}

.package-header.featured {
    background: linear-gradient(135deg, var(--secondary-color), #3aab46);
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.package-price {
    font-size: 2rem;
    font-weight: 900;
    margin: 15px 0;
}

.package-body {
    padding: 30px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: #28a745;
    margin-right: 10px;
    font-size: 12px;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin: 15px 0;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 25px;
    font-size: 4rem;
    color: var(--secondary-color);
    font-weight: bold;
    opacity: 0.3;
}

.testimonial-stars {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 16px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 16px;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--primary-color), #1a2b4d);
    color: white;
    padding: 60px 0 30px;
}

.main-footer h5 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.main-footer p,
.main-footer li {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 10px;
}

.main-footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer a:hover {
    color: var(--secondary-color);
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-right: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    color: white;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Background Sections */
.bg-light-custom {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bg-dark-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2b4d 100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 3.5rem; }
}

@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .section-title { font-size: 2.25rem; }
    .package-card.featured { transform: none; }
}

@media (max-width: 768px) {
    .quote-section h2 { font-size: 2.5rem; }
    .section { padding: 60px 0; }
    .hero-section { min-height: 80vh; }
    .main-navbar { padding: 10px 0; }
    .navbar-brand { font-size: 24px; }
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    .hero-content { margin:10px auto; }
    .hero-content h3 { font-size: 1.6rem; }
    .hero-content .lead { font-size: 1rem; margin: 20px 0; }
    .feature-card, .service-card, .package-body { padding: 25px 20px; }
    .navbar-logo { width: 90px !important; }
    .section-title {
        font-size: 1rem !important; margin-bottom: 35px;
    }
    .content-panel { margin-right:0 !important; }
    .content-panel1 { margin-left:0 !important; }
    .content {
        padding: 110px 0px 100px 0px;
    }
    .nav-item .btn { margin:5px auto; }
    
}

@media (max-width: 576px) {
    .hero-content { margin:10px auto; }
    .hero-content h3 { font-size: 1.6rem; }
    .hero-content .lead { font-size: 1rem; margin: 20px 0; }
    .feature-card, .service-card, .package-body { padding: 25px 20px; }
    .navbar-logo { width: 90px !important; }
    .section-title {
        font-size: 1rem !important; margin-bottom: 35px;
    }
    .content-panel { margin-right:0 !important; }
    .content-panel1 { margin-left:0 !important; }
    .content {
        padding: 110px 0px 100px 0px;
    }
    .nav-item .btn { margin:5px auto; }
}

.navbar-collapse {
    background: none;
}

/* Utilities */
.text-primary-custom { color: var(--primary-color) !important; }
.text-secondary-custom { color: var(--secondary-color) !important; }
.bg-primary-custom { background-color: var(--primary-color) !important; }
.bg-secondary-custom { background-color: var(--secondary-color) !important; }

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.8s ease-in forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}
.navbar-logo {
    width: 150px; /* Larger logo */
}
.content {
    padding: 150px 0px 100px 0px;
}
.hero-content {
    background-color: #ffffff94;
    padding: 30px 30px 30px 30px;
    border-radius: 20px 20px 20px 20px;
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
}
.smart_nano {
    background:url('http://smartelite.graspsoftwaresolutions.xyz/public/images/nano.PNG');
    background-size: cover;
    background-attachment:fixed;
    text-align:center;
    position:relative;
    color:#FFF;
}
.smart_nano .section-title, .quote-section  .section-title { color:#fff; }

.quote-section {
    background:url('http://smartelite.graspsoftwaresolutions.xyz/public/images/Car-Detailing1.jpg');
    background-size: cover;
    background-attachment:fixed;
    text-align:center;
    position:relative;
    color:#FFF;
}

/* Services Dropdown Styles */
.services-dropdown {
    background: rgb(10 10 10 / 39%);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 280px;
    animation: dropdownFade 0.3s ease-out;
}
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-dropdown .dropdown-item {
    color: #000;
    padding: 0.25rem 0.5rem 8px;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    margin: 0.25rem 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
.services-dropdown .dropdown-item:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateX(5px);
}

.services-dropdown .dropdown-item i {
    color: var(--accent-orange);
    width: 20px;
    transition: all 0.3s ease;
}

.services-dropdown .dropdown-item:hover i {
    color: white;
    transform: scale(1.1);
}

.services-dropdown .dropdown-divider {
    border-color: rgba(255, 107, 53, 0.2);
    margin: 0.5rem 1rem;
}

/* Mobile Dropdown */
@media (max-width: 991px) {
    .services-dropdown {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        background: rgba(255, 107, 53, 0.05);
        border: none;
        border-radius: 0.5rem;
        margin: 0.5rem 0;
    }

    .services-dropdown .dropdown-item {
        margin: 0.125rem 0.5rem;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}
.form-label {
    margin-bottom: .1rem;
    color: #000;
}
.form-group { text-align: left; margin-bottom: 10px; }

.testimonial {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3d5a80;
}
.testimonial-slide {
  padding: 10px 7px;
}
.testimonial_box-top {
  background-color: #e5e5e5;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}
.testimonial_box-icon {
    padding: 10px 0;
    display: flex;
    flex-direction: row;
	align-items: center;
}
.testimonial_box-text {
  padding: 10px 0;
}
.testimonial_box-text p {
  color: #293241;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}
.testimonial_box-img {
  padding: 20px 0 10px;
  display: flex;
  justify-content: center;
}
.testimonial_box-img img {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  border: 2px solid #e5e5e5;
}
.testimonial_box-name {
  padding-top: 10px;
}
.testimonial_box-name h4 {
  font-size: 20px;
  line-height: 25px;
  color: #293241;
  margin-bottom: 0;
}
.testimonial_box-job p {
  color: #293241;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 20px;
  font-weight: 300;
  margin-bottom: 0;
}
.testimonial_box-icon i {
    font-size: 18px;
    color: #14213d;
    text-align: center;
}
.testimonial_box-icon p { margin-bottom:0px; margin-left:10px; line-height:15px; }
.stars i {
    color: #f39c12;
    margin-left: 2px;
	font-size:10px;
}




.content-panel {
    background: #fff;
    backdrop-filter: blur(10px);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    margin-right: -3rem;
    z-index: 999;
    box-shadow: 0 5px 50px 0 rgb(33 33 33 / .15);
}

.content-panel1 {
    background: #fff;
    backdrop-filter: blur(10px);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    margin-left: -3rem;
    z-index: 999;
    box-shadow: 0 5px 50px 0 rgb(33 33 33 / .15);
}

.image-panel {
    background: url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover;
    position: relative;
    z-index:-1;
}

/*.image-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 133, 27, 0.3), rgba(255, 193, 7, 0.2));
}*/

.program-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.program-subtitle {
    font-size: 2rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 0.5rem;
}

.program-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 2rem;
}

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    margin: 1rem 0;
}

.nav-tabs {
    border: none;
    border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
    border-radius: 0;
    color: #6c757d;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: transparent;
}

.tab-content { padding:10px; border-style: none solid solid;border-width: 1px; margin-bottom:1rem;border-color: #dee2e6; }

.nav-tabs .nav-link.active {
    /* border-color: #27ae60; */
    color: #27ae60;
    background: transparent;
    /* border-bottom-color: transparent; */
    /* border-bottom-style: none; */
}

.description-text {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.enquire-btn {
    background: transparent;
    border: 2px solid #27ae60;
    color: #27ae60;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.enquire-btn:hover {
    background: #27ae60;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.scroll-indicator:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

@media (max-width: 991.98px) {
    .content-panel {
        min-height: auto;
        padding: 3rem 1.5rem;
    }
    
    .content-panel1 {
        min-height: auto;
        padding: 3rem 1.5rem;
    }
    
    .image-panel {
        min-height: 50vh;
    }
    
    .program-title {
        font-size: 2rem;
    }
    
    .program-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .program-title {
        font-size: 1.8rem;
    }
    
    .program-subtitle {
        font-size: 1.3rem;
    }
    
    .nav-tabs .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

