:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --dark-gray: #2a2a2a;
    --gold: #d4af37;
    --gold-light: #f0d875;
    --gold-dark: #b8960c;
    --yellow: #ffc107;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-gray: #6c757d;
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-black);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

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

.text-gold {
    color: var(--gold);
}

.btn-gold {
    background: var(--gradient-gold);
    border: none;
    color: var(--primary-black);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: var(--primary-black);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.navbar-brand img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    transition: var(--transition);
}

/* Logo Hover Effect */
.navbar-brand:hover img {
    transform: scale(1.07);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

.navbar.scrolled .navbar-brand img {
    width: 42px;
    height: 42px;
    border-width: 1.5px;
}


.navbar-brand .brand-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
}

.navbar-brand .brand-sub {
    font-size: 0.75rem;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 8px 18px !important;
    margin: 0 2px;
    border-radius: 25px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold);
}

.navbar-toggler {
    border: 2px solid var(--gold);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4af37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22m-22 8h22m-22 8h22'/%3e%3c/svg%3e");
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%), 
                url('./digital_marketing_te_3068a38d.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm-30 30v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 1;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 40px;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll-indicator a {
    color: var(--gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

.cta-banner {
    background: var(--gradient-gold);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.cta-banner h3 {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 5px;
}

.cta-banner p {
    color: var(--dark-gray);
    font-weight: 500;
}

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

.section-subtitle {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-black);
    margin-bottom: 15px;
}

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

.why-us-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card.featured {
    background: var(--primary-black);
    color: var(--white);
}

.why-card.featured::before {
    transform: scaleX(1);
}

.why-card.featured h4 {
    color: var(--gold);
}

.why-card.featured p {
    color: rgba(255,255,255,0.8);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-black);
    box-shadow: var(--shadow-gold);
}

.why-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--text-gray);
    margin-bottom: 0;
}

.services-section {
    padding: 100px 0;
    background: var(--white);
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    height: 100%;
    transition: var(--transition);
    border: 2px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--white));
}

.service-card.featured .service-card-image::after {
    background: linear-gradient(transparent, var(--primary-black));
}

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

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

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    border-color: var(--gold);
}

.service-card.featured h4,
.service-card.featured p,
.service-card.featured .service-features li {
    color: var(--white);
}

.service-card.featured h4 {
    color: var(--gold);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card.featured .service-icon {
    background: var(--gradient-gold);
    color: var(--primary-black);
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card > p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 0.9rem;
}

.about-section {
    padding: 100px 0;
    background: var(--light-gray);
}

 .about-image {
    position: relative;
    height: 100%;
    min-height: 500px;
} 

/* .about-im {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
} */


.about-image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}

.about-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom:0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                url('../public/about-img.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}

.about-shape::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--gold);
    border-radius: 30px;
}

.about-content-box {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-gold);
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.about-content-box i {
    font-size: 3rem;
    color: var(--primary-black);
    display: block;
    margin-bottom: 10px;
}

.about-content-box span {
    font-weight: 600;
    color: var(--primary-black);
    font-size: 1.1rem;
}

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

.about-content .lead {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.audit-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
}

.audit-box {
    background: var(--gradient-gold);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-gold);
}

.audit-box h3 {
    color: var(--primary-black);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.audit-box p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

.testimonials-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

/* .testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
} */

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonials-slider:hover .testimonial-track {
    animation-play-state: paused;
}



.testimonial-card {
    min-width: 400px;
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}


.testimonial-rating {
    margin-bottom: 25px;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 2rem;
}


.quote-icon {
    font-size: 4rem;
    color: var(--lavender);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 1rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--lavender-light);
}

.testimonial-author h5 {
    font-size: 1.1rem;
    color: var(--royal-dark);
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* .author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-black);
} */

/* .author-info h5 {
    margin-bottom: 0;
    font-size: 1.1rem;
} */

/* .author-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
} */

/* .testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    background: transparent;
    border-radius: 50%;
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: var(--gold);
    color: var(--primary-black);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--gold);
    transform: scale(1.2);
} */

.faq-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.accordion-button {
    padding: 25px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-black);
    background: var(--white);
    box-shadow: none !important;
}

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

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3E%3Cpath fill-rule='evenodd' d='m1.646 4.646a.5.5 0 0 1 .708 0l5.646 5.647 5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
    padding: 0 30px 25px;
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding: 50px 40px;
    border-radius: 30px;

}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-black);
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.contact-details a:hover {
    color: var(--gold);
}

.contact-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-social h5 {
    color: var(--white);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links 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(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 30px;
}


/* CTA Call Now Button */
.cta-callnow {
    margin-top: 30px;
}

.callnow-btn {
    display: inline-block;
    background: var(--gradient-gold); /* Gold color */
    color: #000;
    padding: 14px 35px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.callnow-btn i {
    margin-right: 10px;
}

.callnow-btn:hover {
    background: #b8942f;
    color: #fff;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}


.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);


}





.footer {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding: 80px 0 30px;
    color: var(--white);
}

.footer-brand .brand-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
    display: block;
}

.footer-brand .brand-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    margin: 25px 0;
}

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

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

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

.footer-title {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

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

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

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

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

.footer-contact li i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

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

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

.copyright {
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.footer-tagline {
    color: var(--gold);
    margin: 0;
    font-weight: 500;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: var(--primary-black);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-image {
        min-height: 400px;
    }
    
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .audit-box {
        padding: 30px;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
        margin: 0 5px;
        min-width: 300px;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .cta-banner {
        text-align: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
