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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(180deg, 
        rgba(240, 235, 255, 0.5) 0%, 
        rgba(245, 240, 255, 0.3) 10%,
        rgba(255, 255, 255, 1) 20%,
        rgba(230, 255, 240, 0.3) 40%,
        rgba(255, 255, 255, 1) 60%,
        rgba(240, 235, 255, 0.2) 80%,
        rgba(255, 255, 255, 1) 100%
    );
    background-attachment: fixed;
    background-size: 100% 100%;
    min-height: 100vh;
    color: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 135px;
}

/* Header & Hero Wrapper */
.header-hero-wrapper {
    position: relative;
    background: radial-gradient(ellipse at top right, transparent 30%, rgba(230, 220, 255, 0.3) 50%, transparent 70%),
                radial-gradient(ellipse at bottom left, transparent 30%, rgba(220, 255, 235, 0.3) 50%, transparent 70%);
    overflow: hidden;
}

/* Header */
header {
    position: relative;
    padding: 20px 0;
    background: transparent;
    border-bottom: none;
    z-index: 100;
}

/* Static Header for Pages without Hero */
header.header-static {
    position: relative;
    background: linear-gradient(135deg, #2D3142 0%, #1a1d2e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

header.header-static .header-glass {
    display: none;
}

header.header-static nav ul li a {
    color: #ffffff;
}

header.header-static nav ul li a:hover,
header.header-static nav ul li a.active {
    color: #7FD957;
}

.header-glass {
    position: absolute;
    top: 20px;
    left: 135px;
    right: 135px;
    height: 94px;
    border: 1px solid #DCDCDC;
    border-radius: 16px;
    z-index: -1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 40px;
    position: relative;
}

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

nav ul {
    display: flex;
    list-style: none;
    gap: 60px;
    align-items: center;
}

/* Hide Contact us link on desktop (shown as button instead) */
nav ul li:last-child {
    display: none;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2em;
    transition: color 0.3s;
}

nav ul li a.active {
    color: #31a253;
}

nav ul li a:hover {
    color: #31a253;
}

.btn {
    padding: 15px 30px;
    border-radius: 500px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.26em;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #31a253;
    color: #FFFFFF;
    border: none;
}

.btn-primary:hover {
    background: #16A34A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #000000;
    border: 1px solid #BDBDBD;
}

.btn-secondary:hover {
    border-color: #31a253;
    color: #31a253;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    padding: 150px 0 80px;
    background: transparent;
}

/* Decorative blur circles for hero */
.hero::before {
    content: '';
    position: absolute;
    top: 300px;
    right: -200px;
    width: 509px;
    height: 508px;
    background: #5B529F;
    border-radius: 50%;
    filter: blur(500px);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 437px;
    left: -246px;
    width: 385px;
    height: 384px;
    background: #7FBF7F;
    border-radius: 50%;
    filter: blur(300px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

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

.hero-badge {
    font-size: 18px;
    font-weight: 500;
    color: #1A1A1A;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 30px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 .highlight-orange {
    background: linear-gradient(90deg, rgba(49, 162, 83, 1) 0%, rgba(49, 162, 83, 1) 50%, rgba(255, 255, 255, 1) 100%);
    padding: 4px 12px;
    color: #000000;
    display: inline-block;
}

.hero h1 .highlight-dark {
    background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(32, 32, 32, 1) 100%);
    padding: 4px 12px;
    color: #000000;
    display: inline-block;
}

.hero p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.56em;
    color: #656565;
    max-width: 721px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

/* Marquee Section */
.marquee-wrapper {
    position: relative;
    overflow-x: hidden;
    padding: 160px 0 120px;
    margin-top: -70px;
    background: linear-gradient(180deg, 
        rgba(240, 235, 255, 0.3) 0%, 
        rgba(230, 255, 240, 0.4) 30%,
        rgba(255, 245, 235, 0.3) 60%,
        rgba(235, 245, 255, 0.3) 100%
    );
}

.marquee-section {
    background: #1F1F1F;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    transform: rotate(-5deg);
    margin: -80px -100px;
    width: calc(100% + 200px);
}

.marquee {
    display: flex;
    white-space: nowrap;
    width: fit-content;
    animation: scroll 15s linear infinite;
    will-change: transform;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 50px;
    padding-right: 50px;
    flex-shrink: 0;
    min-width: fit-content;
    white-space: nowrap;
}

.marquee-item {
    color: #FFFFFF;
    font-size: 54px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 30px;
}

.star-icon {
    width: 31px;
    height: 31px;
    background: #31a253;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* About & Why Section Wrapper */
.about-why-wrapper {
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center top, rgba(235, 245, 255, 0.4) 0%, rgba(220, 255, 235, 0.3) 40%, rgba(235, 230, 255, 0.3) 70%, transparent 100%);
}

/* Decorative blur circles for about-why wrapper */
.about-why-wrapper::before {
    content: '';
    position: absolute;
    top: 230px;
    left: 530px;
    width: 328px;
    height: 328px;
    background: #7FBF7F;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.about-why-wrapper::after {
    content: '';
    position: absolute;
    bottom: 200px;
    left: -171px;
    width: 328px;
    height: 328px;
    background: #7FBF7F;
    border-radius: 50%;
    filter: blur(300px);
    opacity: 0.5;
    pointer-events: none;
}

/* About Section */
.about-section {
    padding: 120px 0;
    position: relative;
}

.about-bg-text {
    position: absolute;
    bottom: -50px;
    left: 135px;
    font-size: 200px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px #4A4A4A;
    opacity: 0.1;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 470px 1fr;
    gap: 130px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1em;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.56em;
    color: #656565;
    margin-bottom: 40px;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 270px);
    gap: 30px;
    position: relative;
}

.about-images > img:first-child {
    grid-row: 1 / 3;
    grid-column: 1;
    border-radius: 24px;
    width: 100%;
    height: 458px;
    object-fit: cover;
    position: relative;
}

.about-images img:nth-child(2) {
    grid-row: 1;
    border-radius: 24px;
    width: 100%;
    height: 262px;
    object-fit: cover;
}

.about-images img:nth-child(3) {
    grid-row: 2;
    border-radius: 24px;
    width: 100%;
    height: 164px;
    object-fit: cover;
}

/* Component 57 - Rotating Logo Badge */
.rotating-badge {
    position: absolute;
    left: -66px;
    top: -75px;
    width: 195px;
    height: 195px;
    z-index: 10;
    pointer-events: none;
}

.badge-outer {
    position: relative;
    width: 100%;
    height: 100%;
}

.badge-text-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.badge-text {
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    color: #79808B;
}

.badge-text svg {
    width: 100%;
    height: 100%;
}

.badge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 114px;
    height: 114px;
    background: #FAF9FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-center img {
    width: 67px !important;
    height: auto !important;
    border-radius: 0 !important;
}

/* Why Choose Us Section */
.why-section {
    padding: 100px 0;
    position: relative;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-header h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1em;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: rgba(249, 249, 249, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    border: 1px solid rgba(220, 220, 220, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
}

.why-card:hover .why-card-icon {
    transform: scale(1.1);
}

.why-card:hover h3 {
    color: #31a253;
}

.why-card:hover .why-card-dot {
    transform: scale(2);
    opacity: 1;
}

.why-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    transition: transform 0.4s ease;
}

.why-card-icon svg {
    width: 100%;
    height: 100%;
}

.why-card h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.07em;
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

.why-card p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.56em;
    color: #656565;
}

.why-card-dot {
    width: 1px;
    height: 1px;
    background: #31a253;
    border-radius: 50%;
    position: absolute;
    top: 35px;
    left: 184px;
    transition: all 0.4s ease;
    opacity: 0.5;
}

/* Services Section */
.services-section {
    background: #000000;
    padding: 120px 0;
    position: relative;
    color: #FFFFFF;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/our-services-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 200px;
    right: 100px;
    width: 160px;
    height: 160px;
    background: #31a253;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.services-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1em;
    color: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(76, 76, 76, 0.5);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 40px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    fill: url(#gradient);
}

.service-card h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.07em;
    color: #D9D9D9;
    margin-bottom: 30px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-card ul li {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.56em;
    color: #FFFFFF;
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
}

.service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    background: #31a253;
    border-radius: 50%;
}

.service-card .read-more {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.service-card .read-more::after {
    content: '→';
    font-size: 18px;
}

/* Work Section */
.work-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 100px;
}

.work-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -137px;
    width: 328px;
    height: 328px;
    border-radius: 50%;
    filter: blur(300px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.work-header {
    text-align: center;
    margin-bottom: 60px;
}

.work-header h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1em;
    color: #000000;
    margin-bottom: 10px;
}

.work-header p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.56em;
    color: #656565;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.work-card {
    background: #F4F4F7;
    border-radius: 24px;
    overflow: hidden;
}

.work-card-image {
    width: 100%;
    height: 330px;
    overflow: hidden;
}

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.work-card:hover .work-card-image img {
    transform: scale(1.05);
}

.work-card-content {
    padding: 30px 70px 40px;
}

.work-card h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.07em;
    margin-bottom: 15px;
}

.work-card p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.56em;
    color: #656565;
}

.view-work-btn {
    text-align: center;
}

/* Achievements Section */
.achievements-section {
    background: #000000;
    padding: 120px 0;
    position: relative;
    color: #FFFFFF;
    overflow: hidden;

}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(242, 128, 33, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.achievements-header h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3em;
    color: #FFFFFF;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    border: 1px solid rgba(77, 77, 77, 0.3);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #1E1E1E 0%, #0B0B0B 100%);
    border: 1px solid #4D4D4D; /* matches Figma stroke */
    border-radius: 50%;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06); /* subtle inner highlight like Figma */
}

.achievement-number {
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1em;
    background: linear-gradient(180deg, #16A34A 0%, #31a253 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.achievement-card h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.07em;
    color: #FFFFFF;
}

.achievement-divider {
    height: 1px;
    background: #383838;
    margin: 40px 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    bottom: 100px;
    right: 200px;
    width: 120px;
    height: 120px;
    background: #31a253;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 95px;
    align-items: start;
}

.testimonials-header {
    position: sticky;
    top: 100px;
}

.testimonials-header h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1em;
    margin-bottom: 20px;
    color: #000000;
}

.testimonials-header p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.56em;
    color: #656565;
    margin-bottom: 60px;
}

.testimonial-nav {
    display: flex;
    gap: 16px;
}

.testimonial-prev,
.testimonial-next {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    transform: scale(1.05);
}

.testimonial-prev:disabled,
.testimonial-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

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

.testimonial-card {
    min-width: 100%;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08), 
                0px 8px 40px rgba(0, 0, 0, 0.06),
                0px 0px 60px rgba(242, 128, 33, 0.08);
    border: 1px solid rgba(242, 128, 33, 0.1);
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: all 0.5s ease;
}

.testimonial-card:hover {
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.1), 
                0px 12px 50px rgba(0, 0, 0, 0.08),
                0px 0px 80px rgba(242, 128, 33, 0.15);
    transform: translateY(-5px);
}

.testimonial-card.active {
    opacity: 1;
}

.quote-icon {
    margin-bottom: 30px;
    filter: drop-shadow(0px 4px 15px rgba(242, 128, 33, 0.3));
}

.quote-icon svg {
    width: 54px;
    height: 40px;
}

.testimonial-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.56em;
    color: #656565;
    margin-bottom: 50px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #DCDCDC;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #E7E7E7;
    opacity: 0.5;
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 14px;
    font-weight: 400;
    color: #656565;
    line-height: 2em;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
}

.star {
    color: #FAC505;
    font-size: 18px;
}

.star-empty {
    color: #D3D3D3;
    font-size: 18px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(90deg, #6B8E23 0%, #a2c53f 100%);
    border-radius: 24px;
    padding: 80px;
    text-align: center;
    margin: 100px 135px 100px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/our-services-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1em;
    color: #FFFFFF;
    margin-bottom: 40px;
}

/* Second CTA Section */
.cta-section-2 {
    background: linear-gradient(90deg, #E55753 0%, #5A529F 100%);
    border-radius: 24px;
    padding: 80px;
    text-align: center;
    margin: 100px 135px 100px;
    position: relative;
    overflow: hidden;
}

.cta-section-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/next-level-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
}

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

.cta-section-2 h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1em;
    color: #FFFFFF;
    margin-bottom: 40px;
}

/* Footer */
footer {
    background: #F9F9F9;
    padding: 80px 0 40px;
    border-top: 1px solid #DCDCDC;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    bottom: 100px;
    right: -100px;
    width: 385px;
    height: 384px;
    background: #5B529F;
    border-radius: 50%;
    filter: blur(300px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

footer::after {
    content: '';
    position: absolute;
    top: 50px;
    left: -107px;
    width: 385px;
    height: 384px;
    background: #7FBF7F;
    border-radius: 50%;
    filter: blur(300px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    max-width: 211px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    margin-bottom: 28px;
}

.footer-desc {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.56em;
    color: #000000;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5em;
    margin-bottom: 24px;
}

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

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

.footer-links a {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #31a253;
}

.footer-contact p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75em;
    margin-bottom: 10px;
}

.footer-contact .label {
    color: #31a253;
}

.footer-location h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-location p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: #000000;
}

.social-section {
    margin-top: 24px;
}

.social-label {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    opacity: 0.6;
    margin-bottom: 15px;
}

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

.social-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

/* Decorative Elements */
.decoration-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(300px);
    opacity: 0.5;
    pointer-events: none;
}

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

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

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

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

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

body.menu-open {
    overflow: hidden;
}

/* Responsive Styles */

/* Tablet and below (1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    /* Header */
    header nav ul {
        gap: 30px;
    }

    header nav a {
        font-size: 14px;
    }

    /* Hero */
    .hero h1 {
        font-size: 56px;
        line-height: 1.1em;
    }

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

    /* About & Why Sections */
    .about-grid {
        gap: 60px;
    }

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

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

    /* Work Section */
    .work-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Testimonials */
    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-header {
        position: static;
    }

    /* CTA Sections */
    .cta-section,
    .cta-section-2 {
        margin: 80px 40px;
        padding: 60px;
    }

    .cta-section h2,
    .cta-section-2 h2 {
        font-size: 36px;
    }

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

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

    /* Header */
    header {
        padding: 15px 0;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    /* Hide header glass border on mobile */
    .header-glass {
        display: none;
    }

    /* Hide Contact Us button in header on mobile */
    .header-content > .btn {
        display: none;
    }

    /* Show hamburger menu */
    .hamburger {
        display: flex;
    }

    /* Mobile Navigation */
    header nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #FFFFFF;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    header nav.active {
        right: 0;
    }

    header nav ul {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }

    /* Show Contact us link on mobile */
    nav ul li:last-child {
        display: block;
    }

    header nav li {
        width: 100%;
    }

    header nav a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid #F0F0F0;
    }

    header .btn {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    /* Hero Section */
    .hero {
        padding: 60px 0 80px;
    }

    .hero-badge {
        font-size: 14px;
        padding: 8px 16px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.2em;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.6em;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        margin-bottom: 0%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .marquee-item span {
        font-size: 36px;
    }
    
    /* About Section */
    .about-section {
        padding: 60px 0;
    }

    .about-bg-text {
        font-size: 80px;
        top: 80px;
    }

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

    .about-text h2 {
        font-size: 36px;
    }

    .about-text p {
        font-size: 16px;
    }

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

    .about-images img:first-child {
        grid-column: 1;
        grid-row: 1;
    }

    .about-images img:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .about-images img:nth-child(3) {
        grid-column: 1;
        grid-row: 3;
    }

    .rotating-badge {
        width: 150px;
        height: 150px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        right: auto;
        bottom: auto;
    }
    
    .rotating-badge .badge-text text {
        fill: #ffffff !important;
    }

    /* Why Section */
    .why-section {
        padding: 60px 0;
    }

    .why-header h2 {
        font-size: 36px;
    }

    .why-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Services Section */
    .services-section {
        padding: 60px 0;
    }

    .services-header h2 {
        font-size: 36px;
    }

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

    .service-card {
        padding: 30px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    /* CTA Sections */
    .cta-section,
    .cta-section-2 {
        margin: 60px 20px;
        padding: 40px 30px;
        border-radius: 16px;
    }

    .cta-section h2,
    .cta-section-2 h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    /* Work Section */
    .work-section {
        padding: 60px 0;
    }

    .work-header h2 {
        font-size: 36px;
    }

    .work-grid {
        gap: 20px;
    }

    /* Achievements Section */
    .achievements-section {
        padding: 60px 0;
    }

    .achievements-header h2 {
        font-size: 36px;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .achievement-card {
        padding: 30px;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-wrapper {
        gap: 30px;
    }

    .testimonials-header h2 {
        font-size: 36px;
    }

    .testimonials-header p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .testimonial-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    /* Footer */
    footer {
        padding: 60px 0 30px;
    }

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

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

    .social-links {
        justify-content: flex-start;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Hero */
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    /* Section Headings */
    .about-bg-text {
        font-size: 60px;
    }

    .about-text h2,
    .why-header h2,
    .services-header h2,
    .work-header h2,
    .achievements-header h2,
    .testimonials-header h2 {
        font-size: 28px;
    }

    /* CTA */
    .cta-section,
    .cta-section-2 {
        margin: 40px 15px;
        padding: 30px 20px;
    }

    .cta-section h2,
    .cta-section-2 h2 {
        font-size: 24px;
    }

    /* Cards */
    .service-card,
    .work-card,
    .achievement-card,
    .testimonial-card {
        padding: 25px;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Footer */
    .footer-logo img {
        max-width: 150px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

