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

/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary-red: #dc2626;
    --primary-cyan: #5dcaf5;
    --navy-blue: #000000;
    --dark-navy: #1a1a1a;
    --light-navy: #f5f5f5;
    --green-accent: #dc2626;
    --text-white: #ffffff;
    --text-gray: #666666;
    --text-light-gray: #fd1111;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Better touch target sizes for mobile */
button, 
a, 
input, 
select, 
textarea {
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Top Bar */
.top-bar {
    background-color: #ffffff;
    color: rgb(250, 248, 248);
    padding: 6px 0;
    font-size: 13px;
    border-bottom: 2px solid #5dcaf5;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgb(15, 15, 15);
}

.top-left i {
    color: #5dcaf5;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-right a {
    color: rgb(17, 17, 17);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.top-right a:hover {
    color: #01597c;
}

.top-right a i {
    color: #01597c;
}

.social-icons-top {
    display: flex;
    gap: 10px;
}

.social-icons-top a {
    width: 32px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons-top a:hover {
    background: #5dcaf5;
    transform: translateY(-2px);
}

.social-icons-top a i {
    color: #1a1a1a;
    font-size: 14px;
}

.social-icons-top a:hover i {
    color: #ffffff;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    padding: 6px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 100px;
    width: auto;
}

.logo img {
    height: 100px;
    width: auto;
}

.logo-text {
    line-height: 1.1;
    font-weight: 700;
}

.green-text {
    color: var(--green-accent);
    font-size: 22px;
}

.signals-text {
    color: var(--green-accent);
    font-size: 22px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-cyan);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 15px;
    border: 1px solid #e5e5e5;
}

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

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--primary-cyan);
    padding-left: 30px;
}

.call-back-btn {
    background-color: var(--primary-cyan);
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
    border: 2px solid var(--primary-cyan);
}

.call-back-btn:hover {
    background-color: transparent !important;
    color: var(--primary-cyan) !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #000000;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
    padding: 120px 0 80px;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.85), rgba(21, 24, 41, 0.85));
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(0, 200, 83, 0.05));
    pointer-events: none;
    z-index: 2;
}

.hero-chart {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: repeating-linear-gradient(
        0deg,
        rgba(0, 200, 83, 0.1) 0px,
        transparent 1px,
        transparent 40px,
        rgba(0, 200, 83, 0.1) 41px
    ),
    repeating-linear-gradient(
        90deg,
        rgba(0, 200, 83, 0.1) 0px,
        transparent 1px,
        transparent 40px,
        rgba(0, 200, 83, 0.1) 41px
    );
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.slider-arrow:hover {
    background: rgba(255, 23, 68, 0.8);
    border-color: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-slide.active .hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    color: var(--primary-cyan);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-slide.active .hero-subtitle {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-slide.active .hero-content h1 {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.highlight {
    color: var(--primary-cyan);
}

.red-text {
    color: var(--primary-red);
}

.white-text {
    color: #ffffff;
}

.hero-description {
    font-size: 16px;
    color: #e5e5e5;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-slide.active .hero-description {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-slide.active .hero-buttons {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary {
    background-color: var(--primary-cyan);
    color: white;
    padding: 14px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--primary-cyan);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-cyan);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(93, 202, 245, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 14px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid white;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* About Section */
.about-section {
    background-color: white;
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-subtitle {
    color: var(--primary-cyan);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

.read-more {
    color: var(--primary-cyan);
    font-weight: 600;
    text-decoration: none;
}

.about-logo {
    width: 80px;
    margin-top: 30px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.about-nav-buttons {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
}

.nav-btn {
    background-color: white;
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.nav-btn.active,
.nav-btn:hover {
    background-color: var(--primary-cyan);
    color: white;
    border-color: var(--primary-cyan);
}

.nav-btn-cta {
    background-color: var(--primary-red);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary-red);
    transition: all 0.3s ease;
}

.nav-btn-cta:hover {
    background-color: transparent;
    color: var(--primary-red);
}

/* Services Section */
.services-section {
    background-color: #f9f9f9;
    padding: 100px 0;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
    color: #000000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: #ffffff;
    padding: 45px 35px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(93, 202, 245, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-cyan);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 18px;
    font-weight: 700;
    color: #000000;
}

.service-card p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
}

.read-more-btn {
    color: var(--primary-cyan);
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more-btn:hover {
    gap: 12px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #5dcaf5 0%, #2563eb 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('minimal-world-map-isolated-white-background-with-shadow_1036473-5.avif');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 0;
}

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

@keyframes bgSlider {
    0%, 40% {
        opacity: 0.2;
    }
    45%, 55% {
        opacity: 0.3;
    }
    60%, 100% {
        opacity: 0;
    }
}

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

.testimonials-section > .container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: calc(100% + 100px);
    background: transparent;
    z-index: -1;
    border-radius: 20px;
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonials-section h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 40px;
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-icon {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.quote-icon i {
    font-size: 2.5rem;
    color: var(--primary-cyan);
}

.chart-icon {
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 2rem;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--text-white);
}

.testimonial-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.dot.active {
    background-color: white;
}

/* Speciality Section */
.speciality-section {
    background-color: #000000;
    padding: 100px 0;
}

.speciality-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    color: #ffffff;
}

.speciality-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.speciality-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.speciality-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-cyan);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.speciality-icon i {
    font-size: 2rem;
    color: white;
}

.speciality-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffffff;
}

.speciality-content p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 15px;
}

/* Stats Section */
.stats-section {
    background-color: white;
    padding: 100px 0;
    text-align: center;
}

.stats-section .section-subtitle {
    text-align: center;
}

.stats-section h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 60px;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    padding: 40px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background-color: transparent;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.stat-icon i {
    font-size: 2.5rem;
    color: var(--primary-red);
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    color: #666;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.95), rgba(21, 24, 41, 0.95)),
                url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 400"%3E%3Crect fill="%231a1f3a" width="1920" height="400"/%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.3;
}

/* Footer */
.footer {
    background-color: #ffffff;
    padding: 80px 0 30px;
    border-top: 1px solid #e5e5e5;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.footer-section p {
    color: #666666;
    line-height: 1.8;
    font-size: 14px;
}

.footer-section h4 {
    color: #000000;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-cyan);
    padding-left: 5px;
}

.footer-section ul li i {
    color: var(--primary-cyan);
    font-size: 10px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666666;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-cyan);
    font-size: 14px;
}

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

.social-icons a {
    width: 38px;
    height: 38px;
    background-color: #f5f5f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-cyan);
    color: white;
}

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 30px;
    text-align: center;
    color: #666666;
    font-size: 14px;
}

.footer-bottom span {
    color: var(--primary-cyan);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 31, 58, 0.9)),
                url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 400"%3E%3Crect fill="%231a1f3a" width="1920" height="400"/%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 200, 83, 0.08) 0px,
            transparent 1px,
            transparent 30px,
            rgba(0, 200, 83, 0.08) 31px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 200, 83, 0.08) 0px,
            transparent 1px,
            transparent 30px,
            rgba(0, 200, 83, 0.08) 31px
        );
    opacity: 0.6;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80%;
    height: 60%;
    background-image: 
        linear-gradient(to right, 
            transparent 0%, 
            transparent 5%, 
            rgba(0, 200, 83, 0.15) 5%, 
            rgba(0, 200, 83, 0.15) 8%, 
            transparent 8%,
            transparent 12%,
            rgba(0, 200, 83, 0.12) 12%,
            rgba(0, 200, 83, 0.12) 15%,
            transparent 15%,
            transparent 20%,
            rgba(0, 200, 83, 0.18) 20%,
            rgba(0, 200, 83, 0.18) 22%,
            transparent 22%,
            transparent 28%,
            rgba(0, 200, 83, 0.1) 28%,
            rgba(0, 200, 83, 0.1) 32%,
            transparent 32%,
            transparent 38%,
            rgba(0, 200, 83, 0.15) 38%,
            rgba(0, 200, 83, 0.15) 40%,
            transparent 40%,
            transparent 45%,
            rgba(0, 200, 83, 0.2) 45%,
            rgba(0, 200, 83, 0.2) 48%,
            transparent 48%,
            transparent 52%,
            rgba(0, 200, 83, 0.12) 52%,
            rgba(0, 200, 83, 0.12) 56%,
            transparent 56%,
            transparent 62%,
            rgba(0, 200, 83, 0.16) 62%,
            rgba(0, 200, 83, 0.16) 65%,
            transparent 65%,
            transparent 70%,
            rgba(0, 200, 83, 0.14) 70%,
            rgba(0, 200, 83, 0.14) 73%,
            transparent 73%,
            transparent 78%,
            rgba(0, 200, 83, 0.11) 78%,
            rgba(0, 200, 83, 0.11) 82%,
            transparent 82%,
            transparent 88%,
            rgba(0, 200, 83, 0.17) 88%,
            rgba(0, 200, 83, 0.17) 92%,
            transparent 92%
        );
    background-repeat: repeat-x;
    opacity: 0.5;
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

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

.breadcrumb a:hover {
    color: var(--primary-red);
}

.breadcrumb .separator {
    color: var(--primary-red);
}

.breadcrumb span:last-child {
    color: var(--primary-red);
}

/* About Page Content */
.about-page-content {
    background-color: white;
    padding: 100px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

.about-left-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-main-image,
.about-bottom-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-main-image img,
.about-bottom-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-logo-box {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-logo-box img {
    width: 180px;
    height: auto;
}

.about-right-column {
    padding-top: 0;
}

.about-header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.about-right-column .section-subtitle {
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.about-right-column h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.about-right-column p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

.about-right-column p strong {
    color: var(--navy-blue);
    font-weight: 600;
}

.about-nav-inline {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-btn-inline {
    background-color: white;
    color: var(--navy-blue);
    padding: 10px 22px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-btn-inline.active,
.nav-btn-inline:hover {
    background-color: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.nav-btn-inline-cta {
    background-color: white;
    color: var(--navy-blue);
    padding: 10px 22px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--navy-blue);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-btn-inline-cta:hover {
    background-color: var(--navy-blue);
    color: white;
}

/* Strengths Section */
.strengths-section {
    background-color: white;
    padding: 80px 0 100px;
}

.strengths-section .section-subtitle {
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.strengths-section h2 {
    font-size: 2.8rem;
    color: var(--navy-blue);
    text-align: center;
    margin-bottom: 80px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.strengths-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-red);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.strength-card {
    background-color: white;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
}

.strength-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.strength-icon {
    width: 80px;
    height: 80px;
    background-color: transparent;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.strength-card:hover .strength-icon {
    background-color: var(--primary-red);
}

.strength-icon i {
    font-size: 2.2rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.strength-card:hover .strength-icon i {
    color: white;
}

.strength-card h3 {
    font-size: 3.5rem;
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.strength-card p {
    color: #333;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-red);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    background-color: #d01437;
    transform: translateY(-3px);
}

.scroll-top.show {
    display: flex;
}

/* Service Detail Page Styles */
.service-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1920') center/cover;
    background-attachment: fixed;
    position: relative;
}

.service-detail-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: sticky;
    top: 100px;
}

.logo-box {
    background: white;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.logo-box img {
    max-width: 150px;
    height: auto;
}

.pricing-card {
    background: white;
    padding: 25px 20px;
    border-radius: 4px;
    text-align: center;
    border: 2px solid var(--primary-red);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
    border-color: var(--primary-red);
}

.pricing-card h3 {
    color: #000000;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.pricing-card:hover h3 {
    color: #000000;
}

.pricing-card .price {
    margin-bottom: 15px;
}

.price-usd {
    display: block;
    color: var(--primary-red);
    font-size: 22px;
    font-weight: 700;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.price-usd small {
    font-size: 13px;
    color: #999;
    font-weight: 400;
    margin: 0 5px;
}

.pricing-card:hover .price-usd {
    transform: none;
}

.price-or {
    display: none;
}

.price-inr {
    display: none;
}

.pricing-card:hover .price-inr {
    transform: none;
    color: var(--primary-red);
}

.buy-btn {
    width: 100%;
    background-color: var(--primary-red);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-btn:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.service-main-content {
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.service-header-nav {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f5f5f5;
}

.service-nav-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.service-nav-btn {
    background-color: white;
    color: #000000;
    padding: 10px 22px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-nav-btn:hover {
    background-color: var(--primary-cyan);
    color: white;
    border-color: var(--primary-cyan);
}

.service-nav-btn-cta {
    background-color: var(--primary-cyan);
    color: white;
    padding: 10px 22px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary-cyan);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-nav-btn-cta:hover {
    background-color: #3db8e5;
    border-color: #3db8e5;
    transform: translateY(-2px);
}

.service-main-content h2 {
    color: #000000;
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.service-main-content h3 {
    color: var(--primary-red);
    font-size: 1.4rem;
    margin: 40px 0 20px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5f5f5;
}

.service-main-content p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 15.5px;
    text-align: justify;
}

.service-main-content p strong {
    color: #000000;
    font-weight: 600;
}

.checkmark-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
}

.checkmark-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 18px;
    color: #333;
    line-height: 1.9;
    font-size: 15px;
}

.checkmark-list li:last-child {
    margin-bottom: 0;
}

.checkmark-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    background-color: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 15px;
}

/* Contact Page Styles */
.contact-form-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper {
    background: var(--primary-red);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
}

.contact-header-nav {
    margin-bottom: 40px;
}

.contact-nav-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.contact-form-container {
    width: 100%;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    background: transparent;
    color: white;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: white;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.submit-btn {
    background-color: var(--navy-blue);
    color: white;
    padding: 16px 50px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: auto;
    display: inline-block;
}

.submit-btn:hover {
    background-color: #111d35;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Quick Callback Section */
.quick-callback-section {
    padding: 0;
    background: #f8f9fa;
}

.callback-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1920');
    background-size: cover;
    background-position: center;
    padding: 80px 0 40px;
    text-align: center;
    color: white;
}

.callback-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.callback-header .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.callback-header .breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.callback-header .breadcrumb a:hover {
    color: var(--primary-red);
}

.callback-header .breadcrumb .current {
    color: var(--primary-red);
}

.callback-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    padding: 80px 0;
    align-items: start;
}

.callback-info {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.callback-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 30px;
}

.callback-logo {
    width: 200px;
    margin: 30px 0;
    display: block;
}

.callback-support {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid var(--primary-red);
    margin-top: 30px;
}

.callback-support i {
    font-size: 40px;
    color: var(--primary-red);
}

.callback-support h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a2744;
    margin-bottom: 5px;
}

.callback-support p {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.callback-form-container {
    background: var(--primary-red);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(37, 99, 235, 0.3);
}

.callback-form-container h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.quick-callback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-callback-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quick-callback-form input,
.quick-callback-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    background: white;
    color: #333;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.quick-callback-form input::placeholder,
.quick-callback-form textarea::placeholder {
    color: #999;
}

.quick-callback-form input:focus,
.quick-callback-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.quick-callback-form textarea {
    resize: vertical;
    min-height: 120px;
}

.reservation-btn {
    background: #1a2744;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.reservation-btn:hover {
    background: #0f1829;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Expert Popup Modal */
.expert-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 26, 44, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.expert-modal.show {
    display: flex;
}

.expert-modal-content {
    background: #1a2744;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border-top: 3px solid var(--primary-red);
    animation: slideDown 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--primary-red);
    transform: rotate(90deg);
}

.expert-modal-content h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.expert-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expert-form input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.expert-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.expert-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.expert-submit-btn {
    background: #6c757d;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    margin-top: 10px;
    align-self: flex-end;
}

.expert-submit-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Payment Options Page */
.payment-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1920');
    background-size: cover;
    background-position: center;
    padding: 80px 0 40px;
    text-align: center;
    color: white;
}

.payment-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.payment-header .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.payment-header .breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.payment-header .breadcrumb a:hover {
    color: var(--primary-red);
}

.payment-header .breadcrumb .current {
    color: var(--primary-red);
}

.payment-options-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.payment-options-section .section-subtitle {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.payment-options-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 50px;
}

.qr-payment-container {
    max-width: 600px;
    margin: 0 auto 60px;
}

.qr-code-box {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.qr-code-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a2744;
    margin-bottom: 30px;
}

.qr-code-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.qr-code-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border: 3px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
}

.qr-instructions {
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.bank-details-section {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    border: 3px solid var(--primary-red);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
}

.bank-details-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 35px;
    text-align: center;
}

.bank-info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.bank-info-item {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.bank-info-item:last-child {
    border-bottom: none;
}

.bank-info-item strong {
    font-weight: 600;
    color: #1a2744;
}

.bank-info-item span {
    color: #333;
    line-height: 1.6;
}

/* Admin Panel Styles */
.admin-login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.admin-login-box {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 100%;
}

.admin-logo {
    text-align: center;
    margin-bottom: 30px;
}

.admin-logo img {
    max-width: 150px;
}

.admin-login-box h2 {
    text-align: center;
    color: #1a2744;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.login-subtitle {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

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

.admin-login-form label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.admin-login-form label i {
    margin-right: 8px;
    color: var(--primary-red);
}

.admin-login-form input[type="text"],
.admin-login-form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.admin-login-form input:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.forgot-password {
    color: var(--primary-red);
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.admin-login-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-login-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.admin-login-btn i {
    margin-right: 8px;
}

.back-to-site {
    text-align: center;
    margin-top: 25px;
}

.back-to-site a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.back-to-site a:hover {
    color: var(--primary-red);
}

.back-to-site i {
    margin-right: 5px;
}

/* Admin Dashboard */
.admin-dashboard {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 280px;
    background: #1a2744;
    color: white;
    padding: 30px 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.admin-brand {
    text-align: center;
    padding: 0 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-brand img {
    max-width: 120px;
    margin-bottom: 15px;
}

.admin-brand h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.admin-nav {
    padding: 20px 0;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.admin-nav-item:hover,
.admin-nav-item.active {
    background: rgba(37, 99, 235, 0.2);
    color: white;
    border-left: 3px solid var(--primary-red);
}

.admin-nav-item i {
    font-size: 18px;
}

.admin-nav-item.logout {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.admin-main {
    margin-left: 280px;
    flex: 1;
    background: #f5f7fa;
}

.admin-header {
    background: white;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.admin-header h1 {
    font-size: 26px;
    font-weight: 700;
    color: #1a2744;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.admin-user i {
    font-size: 28px;
    color: var(--primary-red);
}

.admin-content {
    padding: 40px;
}

.admin-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.card-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2744;
    margin: 0;
}

.card-header p {
    color: #666;
    font-size: 14px;
    margin: 5px 0 0 0;
}

.btn-download {
    background: #5dcaf5;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-download:hover {
    background: #3ab0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(93, 202, 245, 0.3);
}

/* Submissions Stats */
.submissions-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    background: linear-gradient(135deg, #5dcaf5 0%, #3ab0e0 100%);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}

.stat-box i {
    font-size: 40px;
    opacity: 0.9;
}

.stat-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.stat-box p {
    font-size: 14px;
    margin: 5px 0 0 0;
    opacity: 0.9;
}

/* Submissions Table */
.submissions-table-container {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.submissions-table {
    width: 100%;
    border-collapse: collapse;
}

.submissions-table thead {
    background: #f8f9fa;
}

.submissions-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #1a2744;
    border-bottom: 2px solid #e9ecef;
}

.submissions-table td {
    padding: 15px;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f1f3f5;
}

.submissions-table tbody tr:hover {
    background: #f8f9fa;
}

.submissions-table .no-data {
    text-align: center;
    color: #999;
    font-style: italic;
}

.btn-delete-small {
    background: #dc2626;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-delete-small:hover {
    background: #b91c1c;
    transform: scale(1.05);
}

.qr-upload-section {
    margin-top: 30px;
}

.upload-area {
    border: 3px dashed #ddd;
    border-radius: 12px;
    padding: 60px 30px;
    text-align: center;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upload-area:hover {
    border-color: var(--primary-red);
    background: #fff5f7;
}

.upload-icon i {
    font-size: 64px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.upload-area h3 {
    font-size: 20px;
    color: #1a2744;
    margin-bottom: 8px;
}

.upload-area p {
    color: #666;
    margin-bottom: 20px;
}

.browse-btn {
    background: var(--primary-red);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.browse-btn:hover {
    background: #1d4ed8;
}

.qr-preview {
    text-align: center;
}

.qr-preview h3 {
    font-size: 20px;
    color: #1a2744;
    margin-bottom: 20px;
}

.preview-image-container {
    max-width: 400px;
    margin: 0 auto 30px;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: #f8f9fa;
}

.preview-image-container img {
    max-width: 100%;
    height: auto;
}

.preview-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-save,
.btn-cancel {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-save {
    background: #28a745;
    color: white;
}

.btn-save:hover {
    background: #218838;
}

.btn-cancel {
    background: #6c757d;
    color: white;
}

.btn-cancel:hover {
    background: #5a6268;
}

.btn-save i,
.btn-cancel i {
    margin-right: 8px;
}

.current-qr-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.current-qr-section h3 {
    font-size: 18px;
    color: #1a2744;
    margin-bottom: 20px;
}

.current-qr-display {
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-align: center;
}

.current-qr-display img {
    max-width: 100%;
    height: auto;
}

.qr-actions {
    text-align: center;
    margin-top: 20px;
}

.btn-delete {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    background: #dc3545;
    color: white;
}

.btn-delete:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.btn-delete i {
    margin-right: 8px;
}

.no-qr-message {
    padding: 40px 20px;
    color: #999;
}

.no-qr-message i {
    font-size: 48px;
    margin-bottom: 15px;
}

.instructions-list {
    margin-top: 20px;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.instruction-item i {
    color: #28a745;
    font-size: 20px;
    margin-top: 2px;
}

.instruction-item p {
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   RESPONSIVE DESIGN - Mobile First
   =================================== */

/* Medium Tablets - 768px and below */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        height: 550px;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Responsive - 968px and below */
@media (max-width: 968px) {
    /* Top Bar */
    .top-bar {
        padding: 12px 0;
        font-size: 12px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .top-left,
    .top-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-right {
        gap: 15px;
    }

    /* Navigation */
    .navbar {
        padding: 10px 0;
    }

    .container {
        padding: 0 15px;
    }

    .logo-img {
        height: 70px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        margin-top: 10px;
        border: none;
        background: #f8f8f8;
    }

    /* Hero Section */
    .hero {
        height: 500px;
        padding-top: 40px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 16px;
        margin: 20px 0;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 12px;
    }

    .btn-primary,
    .btn-outline {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .service-card {
        padding: 35px 25px;
    }

    /* Specialities */
    .speciality-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .speciality-icon {
        margin: 0 auto;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 35px 25px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    /* Callback Page */
    .callback-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .callback-info {
        padding: 30px;
    }

    .callback-form-container {
        padding: 35px;
    }

    .quick-callback-form .form-row {
        grid-template-columns: 1fr;
    }

    /* Payment Page */
    .bank-info-item {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: left;
    }

    .qr-code-box {
        padding: 30px 20px;
    }

    .bank-details-section {
        padding: 30px 20px;
    }

    /* Admin Panel */
    .admin-sidebar {
        width: 100%;
        position: relative;
        height: auto;
    }

    .admin-main {
        margin-left: 0;
    }

    .admin-header {
        padding: 20px;
    }

    .admin-header h1 {
        font-size: 20px;
    }

    .admin-content {
        padding: 20px;
    }

    .admin-login-box {
        padding: 40px 30px;
    }

    /* About Page */
    .page-header h1 {
        font-size: 2.2rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-left-column {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-logo-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 20px auto;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-nav-inline {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-nav-buttons {
        position: static;
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Contact Page */
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-nav-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Mobile Responsive - 480px and below */
@media (max-width: 480px) {
    /* Top Bar */
    .top-bar {
        padding: 10px 0;
        font-size: 11px;
    }

    .top-bar-content {
        gap: 8px;
    }

    .top-right {
        flex-direction: column;
        gap: 10px;
    }

    .top-right a {
        font-size: 11px;
    }

    .social-icons-top {
        gap: 10px;
    }

    .social-icons-top a {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    /* Logo */
    .logo-img {
        height: 60px;
    }

    /* Navigation */
    .nav-menu {
        padding: 15px;
    }

    .nav-menu li {
        padding: 10px 0;
    }

    .nav-menu a {
        font-size: 13px;
    }

    .call-back-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Hero Section */
    .hero {
        height: 450px;
        padding-top: 20px;
    }

    .hero-slide {
        padding: 80px 0 40px;
    }

    .hero-content {
        padding: 20px 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.6;
        margin: 15px 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        padding: 12px 20px;
        font-size: 13px;
        text-align: center;
    }

    .slider-nav {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    /* Section Titles */
    .section-title h2,
    .services-section h2,
    .testimonials-section h2,
    .cta-section h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-title p {
        font-size: 14px;
    }

    /* About Section */
    .about-content h2,
    .about-text-content h2 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }

    /* Stats Section */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 14px;
    }

    /* Speciality Items */
    .speciality-item {
        padding: 20px 15px;
    }

    .speciality-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .speciality-content h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .speciality-content p {
        font-size: 13px;
    }

    /* Testimonials */
    .testimonial-slider {
        padding: 0 20px;
    }

    .testimonial-slide {
        padding: 25px 20px;
    }

    .quote-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .testimonial-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 12px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info p {
        font-size: 12px;
    }

    .testimonial-nav {
        gap: 8px;
        margin-top: 25px;
    }

    .testimonial-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    /* CTA Section */
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-column h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-column p,
    .footer-column a {
        font-size: 13px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-bottom {
        padding: 20px 0;
        font-size: 12px;
    }

    /* Page Header */
    .page-header {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 1.7rem;
        margin-bottom: 10px;
    }

    .page-header p {
        font-size: 13px;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 12px;
        gap: 8px;
    }

    /* Service Detail Pages */
    .service-detail-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-sidebar {
        max-width: 100%;
        width: 100%;
        order: 2;
        padding: 25px 20px;
    }

    .service-main-content {
        order: 1;
        padding: 30px 20px;
    }

    .service-main-content h1 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }

    .service-main-content h2 {
        font-size: 1.6rem !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }

    .service-main-content h3 {
        font-size: 1.3rem !important;
        margin: 20px 0 12px !important;
    }

    .service-main-content p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        margin-bottom: 15px !important;
    }

    .checkmark-list {
        padding: 15px;
        margin: 15px 0;
    }

    .checkmark-list li {
        font-size: 13px;
        margin-bottom: 12px;
        padding-left: 30px;
        line-height: 1.6;
    }

    .checkmark-list li::before {
        width: 18px;
        height: 18px;
        font-size: 10px;
        left: 0;
    }

    /* Service Navigation Buttons */
    .service-nav-buttons {
        justify-content: center;
        gap: 6px;
        flex-wrap: wrap;
    }

    .service-nav-btn,
    .service-nav-btn-cta {
        padding: 8px 14px;
        font-size: 10px;
        white-space: nowrap;
    }

    /* Pricing Sidebar */
    .pricing-sidebar {
        padding: 20px 15px;
    }

    .pricing-sidebar h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .price-tag {
        font-size: 2rem;
        margin: 15px 0;
    }

    .price-tag small {
        font-size: 1rem;
    }

    .pricing-features {
        margin: 15px 0;
    }

    .pricing-features li {
        font-size: 13px;
        padding: 10px 0;
    }

    /* Contact Page */
    .contact-container,
    .callback-form-container,
    .login-container {
        padding: 30px 20px;
    }

    .contact-container h1,
    .callback-form-container h1 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 10px 12px;
    }

    .contact-form .form-row {
        gap: 15px;
    }

    .submit-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Contact Info Cards */
    .contact-info-card {
        padding: 20px 15px;
    }

    .contact-info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .contact-info-card p {
        font-size: 13px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 12px;
    }

    /* Payment Page */
    .payment-container {
        padding: 30px 20px;
    }

    .qr-code-box {
        padding: 25px 15px;
    }

    .qr-code-box h2 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .qr-code {
        max-width: 180px;
        margin: 15px auto;
    }

    .bank-details-section {
        padding: 25px 15px;
    }

    .bank-details-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .bank-info-item {
        padding: 12px 0;
        font-size: 13px;
    }

    .payment-methods {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .payment-method {
        padding: 15px;
    }

    /* Callback Page */
    .callback-page {
        flex-direction: column;
    }

    .callback-sidebar {
        width: 100%;
        padding: 25px 20px;
    }

    .callback-info {
        padding: 25px 20px;
    }

    .callback-info h2 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    /* Admin Panel */
    .admin-panel {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        padding: 20px;
    }

    .admin-header {
        padding: 15px;
    }

    .admin-header h1 {
        font-size: 1.3rem;
    }

    .admin-content {
        padding: 15px;
    }

    .admin-login-box {
        padding: 35px 25px;
        max-width: 100%;
    }

    .admin-login-box h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    /* Strength Cards */
    .strength-card {
        padding: 25px 20px;
    }

    .strength-card h3 {
        font-size: 2rem;
    }

    .strength-card p {
        font-size: 13px;
    }

    /* About Navigation */
    .about-nav-buttons,
    .contact-nav-buttons,
    .service-nav-buttons {
        gap: 6px;
    }

    .about-nav-btn,
    .contact-nav-btn {
        padding: 8px 14px;
        font-size: 10px;
    }

    /* Container Padding */
    .container {
        padding: 0 12px;
    }

    /* Sections Padding */
    section {
        padding: 50px 0 !important;
    }

    .about-section,
    .services-section,
    .testimonials-section,
    .cta-section {
        padding: 50px 0;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(rgba(26, 39, 68, 0.95), rgba(26, 39, 68, 0.95)), url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwMCIgaGVpZ2h0PSI2MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAwIDEwIEwgNDAgMTAgTSAxMCAwIEwgMTAgNDAgTSAwIDIwIEwgNDAgMjAgTSAyMCAwIEwgMjAgNDAgTSAwIDMwIEwgNDAgMzAgTSAzMCAwIEwgMzAgNDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+');
    background-size: cover;
    background-position: center;
    position: relative;
}

.testimonials-section .section-title h2,
.testimonials-section .section-title p {
    color: white;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.8s ease-in-out;
}

.testimonial-content {
    color: white;
}

.quote-icon {
    font-size: 48px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c91036 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.author-info h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.testimonial-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.testimonial-btn:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

/* Footer */
.footer {
    background-color: var(--navy-blue);
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
    color: white;
}

.footer-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item i {
    color: var(--primary-red);
    margin-top: 3px;
}

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

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Expert Modal */
.expert-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in-out;
}

.expert-modal-content {
    position: relative;
    background-color: #1a2744;
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.expert-modal-header {
    padding: 0;
    margin-bottom: 20px;
}

.expert-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.expert-modal-header p {
    margin: 8px 0 0;
    opacity: 0.9;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.expert-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.expert-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transform: rotate(90deg);
}

.expert-modal-body {
    padding: 0;
}

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

.expert-form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 14px;
}

.expert-form-group input,
.expert-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.expert-form-group input::placeholder,
.expert-form-group select::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.expert-form-group input:focus,
.expert-form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
    background: rgba(255, 255, 255, 0.08);
}

.expert-submit-btn {
    width: 100%;
    padding: 14px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expert-submit-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Contact Page */
.contact-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c91036 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.contact-container {
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 50px;
    max-width: 600px;
    width: 100%;
}

.contact-container h1 {
    font-size: 36px;
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.contact-container p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: none;
    border-bottom: 2px solid #ddd;
    background-color: transparent;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c91036 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 20, 61, 0.4);
}

/* Callback Page */
.callback-page {
    min-height: 100vh;
    display: flex;
    background-color: #f5f5f5;
}

.callback-sidebar {
    width: 320px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

.callback-sidebar .logo-img {
    max-width: 100%;
    height: auto;
}

.callback-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.callback-form-container {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c91036 100%);
    border-radius: 15px;
    padding: 50px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.callback-form-container h1 {
    color: white;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.callback-form-container p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    font-size: 15px;
}

.callback-form-container .form-group input {
    background-color: rgba(255, 255, 255, 0.15);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.callback-form-container .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.callback-form-container .form-group input:focus {
    border-bottom-color: white;
    background-color: rgba(255, 255, 255, 0.2);
}

.callback-form-container .form-group label {
    color: white;
}

.callback-form-container .submit-btn {
    background-color: white;
    color: var(--primary-red);
}

.callback-form-container .submit-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Payment Page */
.payment-page {
    min-height: 100vh;
    padding: 80px 0;
    background-color: #f9f9f9;
}

.payment-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.payment-container h1 {
    font-size: 42px;
    color: var(--navy-blue);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.payment-container > p {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 16px;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.payment-method {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.payment-method h2 {
    font-size: 28px;
    color: var(--navy-blue);
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-method h2 i {
    color: var(--primary-red);
}

.qr-code-container {
    text-align: center;
    margin-bottom: 20px;
}

.qr-code-container img {
    max-width: 280px;
    width: 100%;
    height: auto;
    border: 3px solid #eee;
    border-radius: 8px;
    padding: 15px;
    background-color: white;
}

.no-qr-message {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #856404;
}

.bank-details p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.bank-details strong {
    color: var(--navy-blue);
    font-weight: 600;
}

/* Admin Pages */
.admin-login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c91036 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 50px;
    max-width: 450px;
    width: 100%;
}

.login-container h1 {
    font-size: 32px;
    color: var(--navy-blue);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.login-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    display: none;
}

/* Admin Panel */
.admin-panel {
    display: flex;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.admin-sidebar {
    width: 260px;
    background-color: var(--navy-blue);
    color: white;
    padding: 30px 0;
}

.admin-logo {
    padding: 0 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.admin-logo h2 {
    font-size: 22px;
    font-weight: 700;
}

.admin-menu {
    list-style: none;
}

.admin-menu li {
    margin-bottom: 5px;
}

.admin-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.admin-menu a:hover,
.admin-menu a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.admin-menu i {
    width: 20px;
}

.admin-content {
    flex: 1;
    padding: 40px;
}

.admin-header {
    margin-bottom: 40px;
}

.admin-header h1 {
    font-size: 36px;
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.admin-header p {
    color: #666;
    font-size: 15px;
}

.admin-card {
    background-color: white;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.admin-card h2 {
    font-size: 24px;
    color: var(--navy-blue);
    margin-bottom: 25px;
    font-weight: 700;
}

.upload-area {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 50px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 30px;
}

.upload-area:hover {
    border-color: var(--primary-red);
    background-color: #fef5f7;
}

.upload-area.dragover {
    border-color: var(--primary-red);
    background-color: #fef5f7;
}

.upload-icon {
    font-size: 48px;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.upload-area p {
    color: #666;
    margin-bottom: 15px;
}

.upload-area input[type="file"] {
    display: none;
}

.choose-file-btn {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.choose-file-btn:hover {
    background-color: #c91036;
    transform: translateY(-2px);
}

.qr-preview {
    display: none;
    margin-bottom: 30px;
}

.qr-preview img {
    max-width: 300px;
    width: 100%;
    border: 2px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
}

.btn-group {
    display: flex;
    gap: 15px;
}

.save-btn,
.delete-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.save-btn {
    background-color: #28a745;
    color: white;
}

.save-btn:hover {
    background-color: #218838;
}

.delete-btn {
    background-color: #dc3545;
    color: white;
}

.delete-btn:hover {
    background-color: #c82333;
}

.current-qr {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.current-qr h3 {
    font-size: 20px;
    color: var(--navy-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.current-qr img {
    max-width: 300px;
    width: 100%;
    border: 2px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* About Page Specific */
.about-page {
    padding-top: 0;
}

.page-header {
    background: linear-gradient(to right, rgba(26, 39, 68, 0.95), rgba(26, 39, 68, 0.9)), url('https://images.unsplash.com/photo-1551836022-deb4988cc6c0?w=1920');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.about-section {
    padding: 80px 0;
    background-color: white;
}

.strengths-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.strength-card {
    background-color: white;
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.strength-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(237, 20, 61, 0.15);
}

.strength-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c91036 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.strength-card h3 {
    font-size: 42px;
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 10px;
}

.strength-card p {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

/* Service Detail Pages */
.service-detail-page {
    padding-top: 0;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        max-width: 100%;
        width: 100%;
    }

    .service-main-content {
        padding: 40px 25px;
    }

    .service-main-content h2 {
        font-size: 2rem;
    }

    .service-main-content h3 {
        font-size: 1.4rem;
    }

    .service-main-content p {
        font-size: 16px;
    }

    .pricing-sidebar {
        position: static;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .callback-page {
        flex-direction: column;
    }

    .callback-sidebar {
        width: 100%;
        padding: 30px;
    }

    .admin-panel {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-left,
    .top-right {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-container,
    .callback-form-container,
    .login-container {
        padding: 35px 25px;
    }

    .contact-container h1,
    .callback-form-container h1 {
        font-size: 28px;
    }

    .service-main-content h1 {
        font-size: 2rem !important;
    }

    .service-main-content h2 {
        font-size: 2rem !important;
    }

    .service-main-content h3 {
        font-size: 1.4rem !important;
    }

    .service-main-content p {
        font-size: 16px !important;
        line-height: 1.8 !important;
    }

    .service-main-content {
        padding: 25px 20px !important;
    }

    .pricing-sidebar {
        padding: 25px 20px;
    }

    .logo-img {
        height: 80px;
    }

    .slider-nav {
        bottom: 20px;
        right: 20px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Extra Small Devices - 375px and below */
@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .logo-img {
        height: 55px;
    }

    .top-bar {
        font-size: 10px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .btn-primary,
    .btn-outline {
        font-size: 12px;
        padding: 10px 18px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 13px;
    }
}

/* Landscape Mode for Mobile Devices */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        height: 400px;
    }

    .hero-slide {
        padding: 60px 0 30px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 13px;
        margin: 10px 0;
    }

    .hero-buttons {
        gap: 8px;
    }

    .btn-primary,
    .btn-outline {
        padding: 8px 16px;
        font-size: 12px;
    }

    .page-header {
        padding: 80px 0 40px;
    }

    .navbar {
        padding: 5px 0;
    }

    .logo-img {
        height: 50px;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .navbar,
    .footer,
    .expert-modal,
    .slider-nav,
    .testimonial-nav,
    .call-back-btn {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .page-header {
        background: var(--navy-blue);
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
}
