:root {
    --primary: #ff5e00;
    --primary-dark: #cc4a00;
    --navy: #0b1528;
    --text-white: #ffffff;
    --text-gray: #b0b8c6;
    --topbar-bg: #ff5e00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f9f9f9;
    overflow-x: hidden;
}

h1, h2, h3, .logo-text strong {
    font-family: 'Outfit', sans-serif;
}

/* Top Bar */
.topbar {
    background: var(--topbar-bg);
    color: var(--text-white);
    padding: 10px 5%;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 100;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    width: 90%;
}
@media (max-width: 1024px) {
    .topbar { width: 100%; clip-path: none; }
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin-right: 50px;
}
.topbar-socials {
    display: flex;
    gap: 15px;
    align-items: center;
}
.topbar-socials a {
    color: var(--text-white);
    text-decoration: none;
    transition: 0.3s;
}
.topbar-socials a:hover {
    color: var(--navy);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: var(--text-white);
    position: sticky;
    top: 20px;
    z-index: 1000;
    border-radius: 50px;
    width: 92%;
    max-width: 1200px;
    margin: 20px auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}
.navbar.scrolled {
    padding: 10px 5%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: var(--navy);
    padding: 8px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.logo img {
    height: 50px;
    width: auto;
    transition: 0.3s;
}
.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-links li a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}
.nav-links li a:hover {
    color: var(--primary);
}
.mobile-phone {
    display: none;
}
.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--navy);
    cursor: pointer;
}

.btn-read-more {
    background: var(--primary);
    color: var(--text-white);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.btn-read-more:hover {
    background: var(--primary-dark);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 120px);
    min-height: 600px;
    overflow: hidden;
    background: #e0e0e0;
}

/* Background Image Right */
.hero-right {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.hero-right img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
}

/* The Orange Curve (Acts as Border) */
.hero-curve-orange {
    position: absolute;
    top: -10%; left: -5%;
    width: 58%; height: 120%;
    background: var(--primary);
    border-radius: 0 50% 50% 0;
    z-index: 2;
}

/* The Navy Blue Background */
.hero-left {
    position: absolute;
    top: -10%; left: -5%;
    width: 56.5%; height: 120%;
    background: var(--navy);
    border-radius: 0 50% 50% 0;
    z-index: 3;
    display: flex;
    align-items: center;
    padding-left: 13%;
}

.slider-dots {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.slider-dots .dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}
.slider-dots .dot.active {
    background: transparent;
    border: 2px solid var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 94, 0, 0.2);
}

.hero-text-content {
    color: var(--text-white);
    max-width: 550px;
}
.subheading {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-text-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}
.hero-text-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-hero.btn-call {
    background: #007bff;
    color: #fff;
}
.btn-hero.btn-call:hover { background: #0056b3; transform: translateY(-3px); }
.btn-hero.btn-wa {
    background: #25D366;
    color: #fff;
}
.btn-hero.btn-wa:hover { background: #1ebd5a; transform: translateY(-3px); }

.btn-play {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
}
.btn-play:hover {
    color: var(--primary);
}
.play-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 0 0 6px rgba(255, 94, 0, 0.2);
}

/* About Section */
.about {
    padding: 6rem 5%;
    background: var(--text-white);
}
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-left {
    position: relative;
    padding: 20px;
}
.about-image-wrapper {
    position: relative;
}
.about-image-wrapper img {
    width: 100%;
    border-radius: 30px 100px 30px 100px;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.dots-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--primary) 20%, transparent 20%);
    background-size: 20px 20px;
    z-index: 1;
}
.curve-shape {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 200px;
    height: 200px;
    background: #f4f6f8;
    border-radius: 50%;
    z-index: 3;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.about-right .subheading {
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-right h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 20px;
}
.about-desc {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-list-experience {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}
.about-list {
    list-style: none;
    flex: 1;
}
.about-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #555;
    font-weight: 600;
}
.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.experience-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-left: 2px solid #eee;
    padding-left: 30px;
}
.exp-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}
.exp-text {
    font-weight: 800;
    color: var(--navy);
    font-size: 1.1rem;
    margin-top: 5px;
    margin-left: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-footer {
    display: flex;
    align-items: center;
    gap: 30px;
}
.btn-orange {
    background: var(--primary);
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.btn-orange:hover {
    background: var(--primary-dark);
}
.about-contact-person {
    display: flex;
    align-items: center;
    gap: 15px;
}
.about-contact-person img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}
.person-details h4 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 3px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}
.person-details p {
    color: #888;
    font-size: 0.9rem;
}

/* Advanced Services Section */
.services-advanced {
    padding: 6rem 5%;
    background: #fbfdff;
    position: relative;
    overflow: hidden;
}
.services-advanced .section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--navy);
}
.services-advanced .section-title span {
    color: var(--primary);
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 5rem auto;
    position: relative;
    z-index: 10;
}
.wg-item {
    width: 100%;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
}
.wg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.wg-item:hover img {
    transform: scale(1.15);
}
.wg-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 94, 0, 0.3);
    opacity: 0;
    transition: 0.3s ease;
}
.wg-item:hover::after {
    opacity: 1;
}

/* Split Content Below */
.services-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 10;
}
.ss-left h2 {
    font-size: 2.5rem;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}
.ss-left p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
.ss-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
    margin-bottom: 40px;
}
.ss-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-weight: 500;
}
.ss-list li i {
    color: var(--primary);
    font-size: 1.1rem;
}
.ss-right {
    position: relative;
    padding-left: 20px;
}
.ss-image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    z-index: 2;
}
.ss-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: ellipse(90% 70% at 90% 50%);
}
.ss-curve-orange {
    position: absolute;
    top: -3%;
    left: -10px;
    width: 100%;
    height: 106%;
    background: var(--primary);
    clip-path: ellipse(90% 70% at 90% 50%);
    z-index: 1;
}

/* Stats Counter Section */
.stats-counter {
    background: var(--navy);
    padding: 5rem 5%;
    position: relative;
    overflow: hidden;
}
.stats-counter::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(255,94,0,0.1), transparent);
}
.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}
.stat-box {
    text-align: center;
    color: #fff;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 94, 0, 0.2);
    border-color: var(--primary);
}
.stat-box i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.stat-number::after {
    content: '+';
    color: var(--primary);
}
.stat-text {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
}

/* Portfolio Sections */
.portfolio-sections {
    padding: 6rem 5%;
    background: #fff;
}
.split-row {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 6rem auto;
    gap: 50px;
}
.split-row:last-child {
    margin-bottom: 0;
}
.split-row.reverse {
    flex-direction: row-reverse;
}
.split-text {
    flex: 1;
}
.split-text h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.2;
}
.split-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}
.split-img {
    flex: 1;
    position: relative;
    height: 400px;
}
.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.curve-left {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 250px;
    height: 250px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 1;
}
.curve-right {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 250px;
    height: 250px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 1;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
    background: #f4f6f8;
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-container .section-title {
    margin-bottom: 3rem;
}
.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.accordion-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: 0.3s;
}
.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}
.accordion-header i {
    color: var(--primary);
    transition: transform 0.3s ease;
}
.accordion-header:hover {
    color: var(--primary);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fff;
}
.accordion-content p {
    padding: 0 25px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Accordion Active State */
.accordion-item.active .accordion-header {
    color: var(--primary);
}
.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}
.accordion-item.active .accordion-content {
    max-height: 250px;
    padding-bottom: 5px;
}

/* Google Reviews Section */
.reviews-section {
    padding: 6rem 5%;
    background: #fff;
}
.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}
.btn-google-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.btn-google-review:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.reviews-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 10px 40px 10px;
    max-width: 1200px;
    margin: 0 auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.reviews-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}
.review-card {
    min-width: 350px;
    max-width: 350px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}
.review-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}
.rc-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.stars {
    color: #fbbc05;
    font-size: 1.1rem;
    display: flex;
    gap: 3px;
}
.google-icon {
    width: 25px;
}
.rc-text {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}
.rc-user {
    display: flex;
    align-items: center;
    gap: 15px;
}
.rc-user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}
.rc-user-info h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 2px;
}
.rc-user-info p {
    font-size: 0.85rem;
    color: #888;
}

/* Contact */
.contact {
    padding: 6rem 5%;
    background: #f4f6f8;
}
.contact-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #eee;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.contact-card i.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.whatsapp-icon { color: #25D366; }
.call-icon { color: #007bff; }
.form-icon { color: var(--primary); }

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}
.contact-card p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    flex-grow: 1;
}
.btn-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    width: 100%;
    transition: 0.3s;
    cursor: pointer;
    border: none;
}
.whatsapp-btn { background: #25D366; color: #fff; }
.whatsapp-btn:hover { background: #1ebd5a; }
.call-btn { background: #007bff; color: #fff; }
.call-btn:hover { background: #0056b3; }

.wa-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}
.wa-form input, .wa-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}
.wa-form input:focus, .wa-form textarea:focus {
    border-color: var(--primary);
}
.form-submit-btn {
    background: var(--primary);
    color: #fff;
    font-family: inherit;
    margin-top: auto;
}
.form-submit-btn:hover { background: var(--primary-dark); }

/* Footer */
.footer-area {
    background: var(--navy);
    color: #fff;
    padding: 5rem 5% 0 5%;
    font-family: inherit;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 3rem;
}
.footer-col h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
}
.footer-col h3 span {
    color: var(--primary);
}
.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 5px;
}
.about-col p {
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 20px;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}
.links-col ul, .services-col ul {
    list-style: none;
}
.links-col ul li, .services-col ul li {
    margin-bottom: 15px;
}
.links-col ul li a, .services-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}
.links-col ul li a:hover, .services-col ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}
.contact-col p {
    color: #bbb;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-col p i {
    color: var(--primary);
    font-size: 1.1rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}
.footer-bottom p {
    color: #888;
    font-size: 0.95rem;
}

/* Floating Action Buttons */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
}
.whatsapp-avatar {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: 0.3s;
}
.whatsapp-avatar:hover {
    transform: scale(1.05);
}
.whatsapp-avatar i {
    font-size: 2.2rem;
}
.whatsapp-tooltip {
    background: #fff;
    color: #25D366;
    padding: 10px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.whatsapp-tooltip:hover {
    background: #25D366;
    color: #fff;
}

.fab-call-now {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--navy);
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}
.fab-call-now i {
    font-size: 1.5rem;
}
.fab-call-now:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .hero-curve-orange, .hero-left {
        width: 100%;
        border-radius: 0;
        top: 0; left: 0; height: auto;
        position: relative;
    }
    .hero {
        flex-direction: column; height: auto; display: flex;
    }
    .hero-right {
        position: relative; width: 100%; height: 400px;
    }
    .hero-left {
        padding: 40px 5%;
    }
    .slider-dots { display: none; }
    .contact-cards-container { grid-template-columns: 1fr; }
    .about-container { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .about-list-experience { flex-direction: column; align-items: flex-start; }
    .experience-badge { border-left: none; padding-left: 0; margin-top: 20px; border-top: 2px solid #eee; padding-top: 20px; width: 100%; }
    .about-footer { flex-direction: column; align-items: flex-start; }
    
    .work-gallery { grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 4rem; }
    .wg-item { height: 180px; }
    
    .services-split { grid-template-columns: 1fr; gap: 30px; }
    .ss-image-wrapper { height: 350px; }
    .ss-list { grid-template-columns: 1fr; }
    .split-row { flex-direction: column; gap: 30px; }
    .split-row.reverse { flex-direction: column; gap: 30px; }
    .split-img { width: 100%; height: 350px; }
    
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
    .navbar { flex-direction: row; justify-content: space-between; padding: 15px 5%; }
    .mobile-menu-btn { display: block; }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        box-sizing: border-box;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        border-radius: 25px;
        margin-top: 15px;
    }
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: none;
    }
    .nav-links li a {
        display: block;
        padding: 15px;
        font-size: 1.05rem;
        background: #fcfcfc;
        border-radius: 50px;
        color: var(--navy);
        font-weight: 700;
        text-transform: uppercase;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.02);
        transition: 0.3s;
    }
    .nav-links li a:active {
        background: #f1f5f9;
        transform: scale(0.98);
    }
    .nav-links li.mobile-phone {
        display: block;
        margin-top: 10px;
    }
    .nav-links li.mobile-phone a {
        background: var(--primary);
        color: #fff !important;
        font-weight: 800;
        border: none;
        box-shadow: 0 4px 15px rgba(255, 94, 0, 0.3);
    }
    
    .hero-text-content h1 { font-size: 3rem; }
    .hero-text-content p { font-size: 1rem; }
    .section-title, .about-right h2, .services-advanced .section-title, .split-text h2, .contact-info h2 { font-size: 2rem; }
    .about, .services-advanced, .portfolio-sections, .contact { padding: 4rem 5%; }
    
    .topbar-content { flex-direction: column; align-items: center; gap: 10px; margin-right: 0; }
    .topbar { width: 100%; text-align: center; clip-path: none; }
    
    .hero-right { height: 300px; }
    .ss-image-wrapper { height: 250px; }
    
    .curve-left, .curve-right { display: none; } /* Hide the circle accent on mobile */
    
    .work-gallery { grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 3rem; }
    .wg-item { height: 150px; border-radius: 12px; }
    
    .ss-left, .split-text { text-align: left !important; width: 100%; }
    .services-split { align-items: flex-start; }
    
    .split-row, .split-row.reverse { flex-direction: column; align-items: flex-start; gap: 25px; text-align: left; }
    
    .split-img { width: 100%; height: 280px; flex: none; margin: 0; position: relative; overflow: visible; border-radius: 30px; }
    .split-img img { 
        height: 100%; width: 90%; position: absolute; top: 0; right: 0; left: auto;
        clip-path: ellipse(90% 70% at 90% 50%); border-radius: 30px; z-index: 2; margin: 0;
    }
    
    .curve-left { 
        display: block; background: var(--primary); border: none;
        border-radius: 20px 0 0 20px; z-index: 1; clip-path: ellipse(90% 70% at 90% 50%);
        width: 100%; height: 106%; top: -3%; left: -10px; bottom: auto; right: auto; position: absolute;
    }
    
    .split-row.reverse .split-img img {
        right: auto; left: 0;
        clip-path: ellipse(90% 70% at 10% 50%);
    }
    
    .curve-right { 
        display: block; background: var(--primary); border: none;
        border-radius: 0 20px 20px 0; z-index: 1; clip-path: ellipse(90% 70% at 10% 50%);
        width: 100%; height: 106%; top: -3%; right: -10px; bottom: auto; left: auto; position: absolute;
    }

    .split-text h2 { font-size: 1.6rem; margin-bottom: 15px; line-height: 1.3; }
    .split-text p { font-size: 1rem; }
    
    .footer-container { grid-template-columns: 1fr; text-align: left; }
    .footer-col h4::after { left: 0; transform: none; }
    .contact-col p { justify-content: flex-start; }
    .social-links { justify-content: flex-start; }
    
    .whatsapp-widget { bottom: 15px; left: 15px; }
    .whatsapp-tooltip { display: none; }
    .fab-call-now { bottom: 15px; right: 15px; padding: 10px 15px; font-size: 0.9rem; }
    
    .stats-counter, .faq-section, .reviews-section { padding: 4rem 5%; }
    .stat-number { font-size: 2.8rem; }
    .stat-box i { font-size: 2.5rem; }
    
    .accordion-header { font-size: 1rem; padding: 15px 20px; }
    .accordion-content p { padding: 0 20px; font-size: 0.95rem; }
    
    .review-card {
        min-width: 300px;
        max-width: 300px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-text-content h1 { font-size: 2.3rem; }
    .section-title, .about-right h2, .services-advanced .section-title, .split-text h2, .contact-info h2 { font-size: 1.8rem; }
    .exp-number { font-size: 3.5rem; }
    .hero-buttons { flex-direction: column; align-items: flex-start; gap: 15px; }
    .about-footer { flex-direction: column; align-items: flex-start; gap: 20px; }
    
    .work-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 2rem; }
    .wg-item { height: 120px; border-radius: 10px; }
    
    .split-row, .split-row.reverse { gap: 20px; align-items: flex-start; }
    
    .split-img { height: 220px; }
    
    .split-text h2 { font-size: 1.3rem; margin-bottom: 10px; line-height: 1.2; }
    .split-text p { font-size: 0.9rem; line-height: 1.5; }
    
    .stats-container { grid-template-columns: 1fr; }
}
