/* ========================================
   HNT & Associates - Custom Styles
   Light Color Theme
   ======================================== */

/* ===== CSS Variables ===== */
:root {
    /* Light Color Palette */
    --primary-color: #4A90A4;
    --primary-light: #6BA8BC;
    --primary-dark: #357A8C;
    --secondary-color: #7EB8A8;
    --accent-color: #F5A962;

    /* Background Colors */
    --bg-light: #FAFBFC;
    --bg-white: #FFFFFF;
    --bg-cream: #FEF9F3;
    --bg-soft-blue: #F0F7FA;
    --bg-gradient: linear-gradient(135deg, #F0F7FA 0%, #FEF9F3 100%);

    /* Text Colors */
    --text-dark: #2C3E50;
    --text-medium: #5A6B7D;
    --text-light: #8A9AAC;
    --text-white: #FFFFFF;

    /* Border & Shadow */
    --border-light: #E8EDF2;
    --shadow-soft: 0 4px 20px rgba(74, 144, 164, 0.08);
    --shadow-medium: 0 8px 30px rgba(74, 144, 164, 0.12);
    --shadow-hover: 0 12px 40px rgba(74, 144, 164, 0.18);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Utility Classes ===== */
.section-padding {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    color: var(--text-medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    color: var(--text-white);
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(74, 144, 164, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 164, 0.4);
    color: var(--text-white);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 30px;
    background: transparent;
    font-weight: 500;
    transition: var(--transition-normal);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* ===== Navbar ===== */
#mainNavbar {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: none;
    transition: var(--transition-normal);
}

#mainNavbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-soft);
}

.navbar-brand {
    font-size: 2.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.brand-highlight {
    color: var(--text-dark);
    font-family: var(--font-primary);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 30px;
}

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

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== Important Links Dropdown ===== */
.important-links-dropdown .dropdown-toggle::after {
    content: '';
    border: solid var(--text-dark);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    margin-left: 8px;
    vertical-align: middle;
    position: static;
    width: auto;
    height: auto;
    background: none;
}

.important-links-dropdown .dropdown-menu {
    background: var(--bg-white);
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    padding: 15px 0;
    margin-top: 0;
    min-width: 280px;
    animation: fadeInDown 0.3s ease;
    top: 100%;
}

/* Bridge the gap between trigger and dropdown */
.important-links-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.important-links-dropdown .dropdown-item {
    padding: 12px 25px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.important-links-dropdown .dropdown-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 24px;
}

.important-links-dropdown .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(74, 144, 164, 0.1) 0%, rgba(126, 184, 168, 0.1) 100%);
    color: var(--primary-color);
    padding-left: 30px;
}

.important-links-dropdown .dropdown-item:hover i {
    color: var(--primary-dark);
}

.important-links-dropdown .dropdown-divider {
    margin: 8px 20px;
    border-top-color: var(--border-light);
}

/* Hover to open dropdown on desktop */
@media (min-width: 992px) {
    .important-links-dropdown:hover .dropdown-menu {
        display: block;
    }

    .important-links-dropdown .dropdown-menu {
        display: none;
    }
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--bg-gradient);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234A90A4' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--bg-white);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0% 100%);
}

.hero-badge {
    display: inline-block;
    background: rgba(74, 144, 164, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(74, 144, 164, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
}

.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: var(--bg-white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.floating-card span {
    font-weight: 600;
    color: var(--text-dark);
}

.floating-card.card-1 {
    top: 80px;
    right: 0;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 200px;
    left: 20px;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 120px;
    right: 40px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ===== About Section ===== */
.about-section {
    background: var(--bg-white);
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 40px;
}

.about-image-box {
    width: 350px;
    height: 400px;
    background: var(--bg-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
}

.about-icon {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 25px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.experience-badge h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 5px;
}

.experience-badge p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-content {
    padding-left: 30px;
}

.about-text {
    color: var(--text-medium);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

/* ===== Quote Section ===== */
.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.quote-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.quote-text {
    font-size: 1.5rem;
    color: var(--text-white);
    font-style: italic;
    font-family: var(--font-primary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.quote-author {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* ===== Services Section ===== */
.services-section {
    background: var(--bg-soft-blue);
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid var(--border-light);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 15px;
}

/* ===== Updates Section ===== */
.updates-section {
    background: var(--bg-white);
}

.update-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-normal);
    border: 1px solid var(--border-light);
}

.update-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.update-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #E8974A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.update-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.update-content h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-weight: 600;
}

.update-content p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* ===== Why Us Section ===== */
.why-us-section {
    background: var(--bg-cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-white);
    padding: 18px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
}

.value-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.value-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.value-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.team-values-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 50px 40px;
    border-radius: 25px;
    color: var(--text-white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-values-box h3 {
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.team-values-box p {
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.team-stats {
    display: flex;
    gap: 40px;
}

.team-stat h4 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.team-stat p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ===== Team Section ===== */
.team-section {
    background: var(--bg-soft-blue);
}

.team-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    background: var(--bg-gradient);
    padding: 40px;
}

.team-avatar {
    font-size: 6rem;
    color: var(--primary-color);
}

.team-info {
    padding: 30px;
}

.team-info h5 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-soft-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

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

/* ===== Contact Section ===== */
.contact-section {
    background: var(--bg-white);
}

.contact-info-card {
    background: var(--bg-gradient);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--text-white);
}

.contact-info-card h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.contact-info-card p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.8;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
}

.contact-form-wrapper h4 {
    margin-bottom: 25px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.form-control,
.form-select {
    padding: 15px 20px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 164, 0.1);
}

.map-wrapper {
    height: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

/* ===== Newsletter Section ===== */
.newsletter-section {
    padding: 60px 0;
    background: var(--bg-soft-blue);
}

.newsletter-box {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
}

.newsletter-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.newsletter-box p {
    color: var(--text-medium);
    margin: 0;
}

.newsletter-form .input-group {
    max-width: 450px;
    margin-left: auto;
}

.newsletter-form .form-control {
    border-radius: 30px 0 0 30px;
    padding: 15px 25px;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 15px 30px;
}

/* ===== Footer ===== */
.footer-section {
    background: var(--text-dark);
    color: var(--text-white);
    padding-top: 80px;
}

.footer-brand h4 {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-brand h4 span {
    color: var(--primary-light);
}

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

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition-normal);
}

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

.footer-section h5 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
}

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

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

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

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-credit-link {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-credit-link:hover {
    color: var(--text-white);
    text-decoration: underline;
}

/* ===== Scroll to Top Button ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-medium);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ===== Responsive Styles ===== */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .team-values-box {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 50px 0;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        flex: 1 1 45%;
    }

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

    .about-image-box {
        width: 280px;
        height: 320px;
    }

    .about-icon {
        font-size: 5rem;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    .newsletter-box {
        padding: 30px;
        text-align: center;
    }

    .newsletter-form .input-group {
        margin: 20px auto 0;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .footer-section {
        padding-top: 50px;
    }

    .scroll-top-btn,
    .whatsapp-float {
        right: 20px;
    }

    .whatsapp-float {
        bottom: 90px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .scroll-top-btn {
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }

    .experience-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }

    .about-image-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .team-stats {
        flex-direction: column;
        gap: 20px;
    }
}