:root {
    --white: #fff;
    --accent: hsl(275, 100%, 25%);
    --accent1: #212199;
    --blue: #0100C0;
    --navy: #151735;
    --sand: #D9D9D9;
    --deep-purple: #48005A;
    --gray: #918c8c;
    --outline: 1px solid rgba(255, 255, 255, 0.4);
    --outline-nav: 1px solid rgb(201, 201, 201);
    --gradient: linear-gradient(90deg, #0100C0 0%, #48005A 100%);
    --text: #222;
    --radius: 10px;
    --radius-mixed: 8px 24px 8px 24px;
    --hero-overlay: rgba(0, 0, 0, 0.7);
    --service-overlay: rgba(72, 0, 90, 0.8);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    --font-poppins: 'Poppins', sans-serif;
    --font-semibold: 510 !important;
    --font-regular: 180 !important;

    /* Typography Variables */
    --h1-size: 40px;
    --h1-weight: var(--font-semibold);
    --h1-line-height: 1.15;
    
    --h2-size: 38px;
    --h2-weight: var(--font-semibold);
    --h2-line-height: 1.6;
    
    --h3-size: 32px;
    --h3-weight: var(--font-semibold);
    --h3-line-height: 1.3;

    --h4-size: 24px;
    --h4-weight: var(--font-semibold);
    --h4-line-height: 1.4;

    --h5-size: 20px;
    --h5-weight: var(--font-semibold);
    --h5-line-height: 1.5;
    
    --p-size: 16px;
    --p-weight: var(--font-regular);
    --p-line-height: 1.6;
    
    /* Link Variables */
    --a-size: 18px;
    --a-weight: var(--font-semibold);
    --a-line-height: 1.4;
    --a-color: var(--text);
    --a-hover-color: var(--white);
    
    /* List Item Variables */
    --li-size: 16px;
    --li-weight: var(--font-regular);
    --li-line-height: 0.7;
    --li-padding: 8px 0;

    /* Span Variables */
    --span-size: 13px;
    --span-weight: var(--font-regular);
    --span-line-height: 1.4;
    --span-color: var(--white);
}

/* Global Typography Styles */
h1 {
    font-size: var(--h1-size);
    font-weight: var(--h1-weight);
    line-height: var(--h1-line-height);
    margin: 0;
}

h2 {
    font-size: var(--h2-size);
    font-weight: var(--h2-weight);
    line-height: var(--h2-line-height);
    margin: 0;
}

h3 {
    font-size: var(--h3-size);
    font-weight: var(--h3-weight);
    line-height: var(--h3-line-height);
    margin: 0;
}

h4 {
    font-size: var(--h4-size);
    font-weight: var(--h4-weight);
    line-height: var(--h4-line-height);
    margin: 0;
}

h5 {
    font-size: var(--h5-size);
    font-weight: var(--h5-weight);
    line-height: var(--h5-line-height);
    margin: 0;
}

p {
    font-size: var(--p-size);
    font-weight: var(--p-weight);
    line-height: var(--p-line-height);
    margin: 0;
}

span {
    font-size: var(--span-size);
    font-weight: var(--span-weight);
    line-height: var(--span-line-height);
    color: var(--span-color);
}

/* Global Link Styles */
a {
    font-size: var(--a-size);
    font-weight: var(--a-weight);
    line-height: var(--a-line-height);
    color: var(--a-color);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Global List Item Styles */
li {
    font-size: var(--li-size);
    font-weight: var(--li-weight);
    line-height: var(--li-line-height);
    padding: var(--li-padding);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-poppins);
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--blue);
    font-size: var(--h2-size);
    font-weight: var(--font-semibold);
    text-transform: none;
    display: block;
    margin: 0;
}

/* Global Button Styles */
.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--deep-purple);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent);
}

.btn-secondary {
    background: var(--blue);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--accent1);
}

/* Navigation Header Styles */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    height: auto;
    display: flex;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    height: 100px;
    width: auto;
    display: block;
    max-height: none;
}

.logo-link {
    text-decoration: none;
    display: block;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.nav-list {
    list-style: none;
    gap: 55px;
}

/* Navigation Links */
.nav-link {
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--deep-purple);
}

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

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--navy);
    margin: 2.5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Menu Animation */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 30px;
        box-shadow: var(--shadow);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: var(--outline-nav);
        width: 100%;
    }
    
    .nav-list .btn {
        margin-top: 20px;
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
    
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--hero-overlay);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .nav-list {
        width: 100%;
        right: -100%;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .hamburger-line {
        width: 22px;
        height: 2px;
    }
}

/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 735px;
    display: flex;
    align-items: center;
}

.hero-bg-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-image.active {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-container {
    flex: 0 0 45%;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-right {
    flex: 0 0 55%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin: 0;
}

/* Hero Mobile Styles */
@media (max-width: 1024px) {
    .hero {
        min-height: 600px;
    }
    
    .hero-container {
        flex: 0 0 100%;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-right {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        padding: 60px 0;
    }
    
    .hero-container {
        gap: 24px;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 10px;
    }
    
    .hero-desc {
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin-bottom: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 140px;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 450px;
        padding: 40px 0;
    }
    
    .hero-container {
        gap: 20px;
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px;
    }
    
    .hero-desc {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 8px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .hero-buttons .btn {
        max-width: 250px;
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .hero {
        min-height: 400px;
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 24px !important;
    }
    
    .hero-desc {
        font-size: 14px !important;
    }
    
    .hero-buttons .btn {
        max-width: 220px;
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* About Section Styles */
.about {
    padding: 80px 0 0 0;
}

.about-images {
    flex: 0 0 55%;
    position: relative;
}

.about-img {
    box-shadow: var(--shadow);
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.about-content {
    flex: 0 0 45%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-right: 24px;
}

/* About Mobile Styles */
@media (max-width: 1024px) {
    .about {
        padding: 60px 0 0 0;
    }
    
    .about .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-images {
        flex: 0 0 auto;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-img {
        min-height: 400px;
    }
    
    .about-content {
        flex: 0 0 auto;
        width: 100%;
        padding-right: 0;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 50px 0 0 0;
    }
    
    .about .container {
        gap: 30px;
    }
    
    .about-images {
        max-width: 100%;
    }
    
    .about-img {
        min-height: 350px;
    }
    
    .about-content {
        gap: 18px;
        padding: 25px 15px 0;
    }
    
    .about-title {
        font-size: 20px !important;
        line-height: 1.4 !important;
    }
    
    .about-content p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 0 0 0;
    }
    
    .about .container {
        gap: 25px;
    }
    
    .about-img {
        min-height: 300px;
    }
    
    .about-content {
        gap: 16px;
        padding: 25px 10px 0;
    }
    
    .about-title {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }
    
    .about-content p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 360px) {
    .about {
        padding: 30px 0 0 0;
    }
    
    .about-img {
        min-height: 250px;
    }
    
    .about-content {
        gap: 14px;
        padding: 0 8px;
    }
    
    .about-title {
        font-size: 16px !important;
    }
    
    .about-content p {
        font-size: 13px !important;
    }
}

/* Services Section Styles */
.services {
    padding: 80px 0 0 0;
}

.services-header {
    text-align: center;
    line-height: 38px;
}

.services-desc {
    text-align: center;
    padding-top: 20px;
    max-width: 830px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 42px;
}

.service-card {
    position: relative;
    height: 360px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--service-overlay);
    z-index: 2;
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--deep-purple);
    background: var(--service-overlay);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title {
    color: var(--white);
    text-align: center;
    margin: 0;
    padding: 18px;
    position: relative;
    z-index: 3;
}

.services-three-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    padding: 48px 0;
    max-height: 600px;
}

.service-column {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

/* Column 1: Installation Works */
.installation-works {
    background: var(--navy);
    color: var(--white);
    padding: 32px 32px 28px;
}

/* Column 2: Local Equipment Fabrication */
.equipment-fabrication {
    background: var(--deep-purple);
    color: var(--white);
    padding: 32px 32px 28px;
}

/* Column 3: Other Services */
.other-services {
    color: var(--text);
    padding: 0;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    overflow: hidden;
}

.image-header {
    position: relative;
    width: 100%;
    height: 190px;
    object-fit: cover;
    overflow: hidden;
}

.image-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    opacity: 0.9;
    z-index: 1;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logo-overlay-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    transform: translate(-50%, -50%);
    padding: 15px;
    z-index: 2;
    object-fit: cover;
}

.content-section {
    padding: 18px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.column-title {
    padding-bottom: 12px;
    text-align: left;
}

.column-title.dark {
    color: var(--deep-purple);
    padding-bottom: 16px;
    text-align: left;
}

/* Service List Styles */
.service-list {
    padding-left: 19px;
    margin: 0;
}

.service-list li.wrapped-item {
    line-height: 1.7;
    padding: 2px 0;
}

.service-list li:last-child {
    border-bottom: none;
}

.message-btn {
    margin-top: 24px;
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: var(--deep-purple);
    color: var(--white);
}

.message-btn:hover {
    background: var(--accent);
    color: var(--white);
}

/* Services Mobile Styles */
@media (max-width: 1024px) {
    .services {
        padding: 60px 0 0 0;
    }
    
    .services-header {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }
    
    .services-desc {
        font-size: 16px !important;
        line-height: 1.6 !important;
        padding: 15px 20px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding-top: 35px;
    }
    
    .service-card {
        height: 320px;
    }

    .service-card::before {
        height: 60px;
    }
    
    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
    }
    
    .service-card:hover .service-image {
        transform: scale(1.08);
    }
    
    .service-column:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }
    
    .services-three-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
        max-height: none;
    }

    .service-column {
        min-height: auto;
    }
    
    .installation-works {
        order: 1;
    }
    
    .equipment-fabrication {
        order: 2;
    }
    
    .other-services {
        order: 3;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 50px 0 0 0;
    }
    
    .services-header {
        font-size: 20px !important;
        line-height: 1.2 !important;
        padding: 0 15px;
    }
    
    .services-desc {
        font-size: 15px !important;
        line-height: 1.5 !important;
        padding: 15px 15px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 30px 15px 0;
    }
    
    .service-card {
        height: 280px;
    }
    
    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }
    
    .service-card:hover .service-image {
        transform: scale(1.05);
    }
    
    .service-column:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }
    
    .service-title {
        font-size: 20px !important;
        padding: 15px;
    }
    
    .services-three-columns {
        gap: 25px;
        padding: 30px 15px;
    }
    
    .column-title {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }
    
    .service-list {
        gap: 8px;
    }
    
    .service-list li {
        font-size: 14px !important;
        line-height: 1.4 !important;
        padding: 6px 0;
    }
    
    .message-btn {
        margin-top: 20px;
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 40px 0 0 0;
    }
    
    .services-header {
        font-size: 20px !important;
        padding: 0 10px;
    }
    
    .services-desc {
        font-size: 14px !important;
        padding: 10px 10px 0;
    }
    
    .services-grid {
        gap: 12px;
        padding: 25px 10px 0;
    }
    
    .service-card {
        height: 250px;
    }
    
    .service-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }
    
    .service-card:hover .service-image {
        transform: scale(1.03);
    }
    
    .service-column:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }
    
    .service-title {
        font-size: 18px !important;
        padding: 12px;
    }
    
    .services-three-columns {
        gap: 20px;
        padding: 25px 10px;
    }
    
    .column-title {
        font-size: 20px !important;
    }
    
    .service-list li {
        font-size: 13px !important;
        padding: 5px 0;
    }
    
    .message-btn {
        margin-top: 18px;
        padding: 12px 18px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .services {
        padding: 30px 0 0 0;
    }
    
    .services-header {
        font-size: 20px !important;
        padding: 0 8px;
    }
    
    .services-desc {
        font-size: 13px !important;
        padding: 8px 8px 0;
    }
    
    .services-grid {
        gap: 10px;
        padding: 20px 8px 0;
    }
    
    .service-card {
        height: 220px;
    }
    
    .service-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }
    
    .service-card:hover .service-image {
        transform: scale(1.02);
    }
    
    .service-column:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow);
    }
    
    .service-title {
        font-size: 16px !important;
        padding: 10px;
    }
    
    .services-three-columns {
        gap: 18px;
        padding: 20px 8px;
    }
    
    .column-title {
        font-size: 18px !important;
    }
    
    .service-list li {
        font-size: 12px !important;
        padding: 4px 0;
    }
    
    .message-btn {
        margin-top: 16px;
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Call to Action Banner Styles */
.cta-banner {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 90px;
    margin-bottom: 72px;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
    z-index: 2; 
}

.cta-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cta-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
}

.cta-banner-title {
    color: var(--white);
    padding-top: 20px;
    padding-bottom: 16px;
}

/* CTA Banner Mobile Styles */
@media (max-width: 1024px) {
    .cta-banner {
        min-height: 350px;
        margin-top: 70px;
        margin-bottom: 60px;
    }
    
    .cta-banner-content {
        padding: 30px 20px;
    }
    
    .cta-banner-title {
        font-size: 32px !important;
        line-height: 1.3 !important;
        padding: 15px 0 12px;
    }
    
    .cta-banner-btn {
        padding: 16px 28px;
        font-size: 16px;
        font-weight: 600;
    }
}

@media (max-width: 768px) {
    .cta-banner {
        min-height: 300px;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    
    .cta-banner-content {
        padding: 25px 15px;
    }
    
    .cta-banner-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
        padding: 12px 0 10px;
    }
    
    .cta-banner-btn {
        padding: 14px 24px;
        font-size: 16px;
        font-weight: 600;
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        min-height: 250px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .cta-banner-content {
        padding: 20px 10px;
    }
    
    .cta-banner-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
        padding: 10px 0 8px;
    }
    
    .cta-banner-btn {
        padding: 12px 20px;
        font-size: 15px;
        font-weight: 600;
        min-width: 140px;
    }
}

@media (max-width: 360px) {
    .cta-banner {
        min-height: 220px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .cta-banner-content {
        padding: 15px 8px;
    }
    
    .cta-banner-title {
        font-size: 22px !important;
        line-height: 1.2 !important;
        padding: 8px 0 6px;
    }
    
    .cta-banner-btn {
        padding: 10px 18px;
        font-size: 14px;
        font-weight: 600;
        min-width: 120px;
    }
}

/* Clients Section Styles */
.clients-title {
    text-align: center;
}

.clients-grid {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 50px 0;
    flex-wrap: wrap;
}

.client-logo {
    background: var(--white);
    border-radius: var(--radius);
    height: 100px;
    width: calc(34.3% - 47px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 180px;
    overflow: hidden;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* Clients Section Mobile Styles */
@media (max-width: 1024px) {
    .our-clients {
        padding: 20px 0;
    }
    
    .clients-title {
        font-size: 32px !important;
        line-height: 1.3 !important;
    }
    
    .clients-grid {
        gap: 25px;
        padding: 40px 0;
    }
    
    .client-logo {
        width: calc(50% - 12.5px);
        min-width: 140px;
        min-height: 160px;
    }
}

@media (max-width: 768px) {
    .our-clients {
        padding: 20px 0;
    }
    
    .clients-title {
        font-size: 20px !important;
        line-height: 1.2 !important;
        padding: 0 15px;
    }
    
    .clients-grid {
        gap: 20px;
        padding: 30px 15px;
        justify-content: center;
    }
    
    .client-logo {
        width: calc(50% - 10px);
        min-width: 120px;
        min-height: 140px;
        height: 80px;
    }
    
    .client-logo img {
        max-width: 90%;
        max-height: 90%;
    }
}

@media (max-width: 480px) {
    .our-clients {
        padding: 20px 0;
    }
    
    .clients-title {
        font-size: 20px !important;
        padding: 0 10px;
    }
    
    .clients-grid {
        gap: 15px;
        padding: 25px 10px;
        flex-direction: column;
        align-items: center;
    }
    
    .client-logo {
        width: 100%;
        max-width: 200px;
        min-width: auto;
        min-height: 120px;
        height: 70px;
    }
    
    .client-logo img {
        max-width: 85%;
        max-height: 85%;
    }
}

@media (max-width: 360px) {
    .our-clients {
        padding: 20px 0;
    }
    
    .clients-title {
        font-size: 20px !important;
        padding: 0 8px;
    }
    
    .clients-grid {
        gap: 12px;
        padding: 20px 8px;
    }
    
    .client-logo {
        max-width: 180px;
        min-height: 100px;
        height: 60px;
    }
    
    .client-logo img {
        max-width: 80%;
        max-height: 80%;
    }
}

/* Gallery Section Styles */
.gallery {
    position: relative;
    background: var(--navy);
    padding: 80px 0;
    overflow: hidden;
}

.gallery-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
    z-index: 1;
}

.bubble-img {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 450px;
    height: 320px;
    z-index: 1;
}

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

.gallery-header {
    text-align: center;
    padding-bottom: 15px;
}

.gallery-title,
.gallery-title span {
    color: var(--white);
}

.gallery-filter-btn {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 50px;
    max-width: 990px;
    margin: 0 auto;
}

.gallery-filter-btn .btn {
    white-space: normal;
    word-break: break-word;
    padding: 15px 0;
}

.gallery-filter-btn .btn.active {
    background: var(--blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    /* max-width: 1200px;
    margin: 0 auto; */
    display: none;
}

.gallery-grid.active {
    display: grid;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-filter-btn .filter-btn.active {
    background: var(--blue);
}

/* Gallery Section Mobile Styles */
@media (max-width: 1024px) {
    .gallery {
        padding: 60px 0;
    }
    
    .gallery-title {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }
    
    .gallery-filter-btn {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding-bottom: 40px;
        max-width: 600px;
    }
    
    .gallery-filter-btn .btn {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 18px;
    }
    
    .gallery-item img {
        height: 220px;
    }
    
    .gallery-item:hover img {
        transform: scale(1.06);
    }
    
    .gallery-bg {
        height: 250px;
    }
    
    .bubble-img {
        width: 350px;
        height: 250px;
        top: -30px;
        left: -30px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 50px 0;
    }
    
    .gallery-title {
        font-size: 20px !important;
        line-height: 1.2 !important;
    }
    
    .gallery-filter-btn {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-bottom: 30px;
        padding: 0 15px 30px;
        max-width: 300px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-filter-btn .btn {
        padding: 14px 24px;
        font-size: 14px;
        width: 200px;
        text-align: center;
        border-radius: 12px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .gallery-filter-btn .btn.active {
        background: var(--blue);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(1, 0, 192, 0.3);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .gallery-item:hover img {
        transform: scale(1.05);
    }
    
    .gallery-bg {
        height: 200px;
    }
    
    .bubble-img {
        width: 200px;
        height: 200px;
        top: -20px;
        left: -20px;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 40px 0;
    }
    
    .gallery-title {
        font-size: 20px !important;
    }
    
    .gallery-filter-btn {
        gap: 10px;
        padding: 0 10px 25px;
        max-width: 280px;
    }
    
    .gallery-filter-btn .btn {
        padding: 12px 20px;
        font-size: 13px;
        width: 180px;
        border-radius: 10px;
        letter-spacing: 0.3px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    }
    
    .gallery-filter-btn .btn.active {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(1, 0, 192, 0.25);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 10px;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .gallery-item:hover img {
        transform: scale(1.03);
    }
    
    .gallery-bg {
        height: 150px;
    }
    
    .bubble-img {
        width: 220px;
        height: 150px;
        top: -15px;
        left: -15px;
    }
}

@media (max-width: 360px) {
    .gallery {
        padding: 30px 0;
    }
    
    .gallery-title {
        font-size: 20px !important;
    }
    
    .gallery-filter-btn {
        gap: 8px;
        padding: 0 8px 20px;
        max-width: 260px;
    }
    
    .gallery-filter-btn .btn {
        padding: 10px 18px;
        font-size: 12px;
        width: 160px;
        border-radius: 8px;
        letter-spacing: 0.2px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .gallery-filter-btn .btn.active {
        transform: translateY(-1px);
        box-shadow: 0 3px 12px rgba(1, 0, 192, 0.2);
    }
    
    .gallery-grid {
        gap: 10px;
        padding: 0 8px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-item:hover img {
        transform: scale(1.02);
    }
    
    .gallery-bg {
        height: 120px;
    }
    
    .bubble-img {
        width: 180px;
        height: 120px;
        top: -10px;
        left: -10px;
    }
}

/* Contact Section Styles */
.contact {
    padding: 80px 0 30px;
}

.contact-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1370px;
    margin: 0 auto;
    padding: 0 35px;
}

.contact-image {
    flex: 1;
    position: relative;
}

.contact-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form {
    flex: 1;
    padding: 49px 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-header {
    padding-bottom: 30px;
    text-align: center;
}

.contact-form-header h1 {
    line-height: 70px !important;
}

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

.form-row {
    display: flex;
    gap: 16px;
}

.form-group {
    flex: 1;
    padding-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--sand);
    border-radius: var(--radius);
    font-size: var(--p-size);
    font-weight: var(--font-regular);
    font-family: var(--font-poppins);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    outline: none;
    box-shadow: var(--shadow);
}

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

.contact-form-submit {
    text-align: center;
}

.contact-form-submit .btn {
    width: 32%;
    padding: 15px 0;
}

@media (max-width: 1024px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-image,
    .contact-form {
        flex: none;
        width: 100%;
    }
    
    .contact-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        gap: 30px; /* Reduced gap for mobile */
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-form-header h1 {
        font-size: var(--h2-size);
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-wrapper {
        gap: 25px; /* Even smaller gap for very small screens */
    }
    
    .contact-form-header h1 {
        font-size: var(--h3-size);
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
    }
    
    .contact-img {
        height: 250px; /* Smaller image for mobile */
    }
}

/* Contact Section Mobile Styles */
@media (max-width: 1024px) {
    .contact {
        padding: 60px 0 20px;
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 35px;
        padding: 0 20px;
    }
    
    .contact-image,
    .contact-form {
        flex: none;
        width: 100%;
    }
    
    .contact-img {
        height: 350px;
        width: 100%;
        object-fit: cover;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    .contact-form-header h1 {
        font-size: 32px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px;
    }
    
    .contact-form-header p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
    
    .form-group {
        padding-bottom: 18px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 16px 18px;
        font-size: 15px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .contact-form-submit .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 50px 0 15px;
    }
    
    .contact-wrapper {
        gap: 25px;
        padding: 0 15px;
    }
    
    .contact-img {
        height: 280px;
    }
    
    .contact-form {
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .contact-form-header {
        padding-bottom: 25px;
    }
    
    .contact-form-header h1 {
        font-size: 28px !important;
        line-height: 1.2 !important;
        margin-bottom: 12px;
    }
    
    .contact-form-header p {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        padding-bottom: 16px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 8px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .contact-form-submit {
        margin-top: 10px;
    }
    
    .contact-form-submit .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 40px 0 10px;
    }
    
    .contact-wrapper {
        gap: 20px;
        padding: 0 10px;
    }
    
    .contact-img {
        height: 220px;
        border-radius: 8px;
    }
    
    .contact-form {
        padding: 25px 15px;
        border-radius: 10px;
    }
    
    .contact-form-header {
        padding-bottom: 20px;
    }
    
    .contact-form-header h1 {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 10px;
    }
    
    .contact-form-header p {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }
    
    .form-group {
        padding-bottom: 14px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 6px;
    }
    
    .form-group textarea {
        min-height: 90px;
    }
    
    .contact-form-submit {
        margin-top: 8px;
    }
    
    .contact-form-submit .btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 18px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 6px;
    }
}

@media (max-width: 360px) {
    .contact {
        padding: 30px 0 5px;
    }
    
    .contact-wrapper {
        gap: 15px;
        padding: 0 8px;
    }
    
    .contact-img {
        height: 180px;
        border-radius: 6px;
    }
    
    .contact-form {
        padding: 20px 12px;
        border-radius: 8px;
    }
    
    .contact-form-header {
        padding-bottom: 18px;
    }
    
    .contact-form-header h1 {
        font-size: 22px !important;
        line-height: 1.2 !important;
        margin-bottom: 8px;
    }
    
    .contact-form-header p {
        font-size: 13px !important;
        line-height: 1.3 !important;
    }
    
    .form-group {
        padding-bottom: 12px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 4px;
    }
    
    .form-group textarea {
        min-height: 80px;
    }
    
    .contact-form-submit {
        margin-top: 6px;
    }
    
    .contact-form-submit .btn {
        width: 100%;
        max-width: 220px;
        padding: 10px 16px;
        font-size: 13px;
        font-weight: 600;
        border-radius: 4px;
    }
}

/* Footer Styles */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 0;
    margin-top: 48px;
}

.footer-main {
    padding: 66px 0 34px 0;
}

.footer-main .container {
    display: flex;
    align-items: flex-start; 
    gap: 83px;
    border-bottom: var(--outline);
    padding-bottom: 32px;
}

.footer-brand {
    flex: 0 0 235px;
    text-align: center;
    padding-top: 17px;
}

.footer-logo {
    height: 130px;
    width: auto;
    padding: 0 0 16px 0;
    display: block;
    margin: 0 auto;
}

.footer-content {
    flex: 1;
    display: flex;
    gap: 77px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer-section:nth-child(1) {
    flex: 0 0 340px; 
}

.footer-section:nth-child(2) {
    flex: 0 0 320px; 
}

.footer-section:nth-child(3) {
    flex: 0 0 170px; 
}

.footer-section h4 {
    padding-bottom: 16px;
    text-transform: none;
}

.footer-section p,
.footer-services {
    padding: 0 0 8px 0;
}

.footer-services {
    list-style: disc inside;
    padding-left: 12px;
    line-height: 1.2;
}

.footer-services li {
    padding-bottom: 8px;
}

.footer-contact {
    padding: 32px 0 64px 0;
    background: var(--navy);
}

.footer-contact .container {
    display: flex;
    justify-content: space-between;
    gap: 137px;
    line-height: 18px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 250px;
}

.contact-item.phone {
    gap: 0 !important;
}

.contact-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.contact-info p {
    padding: 0 0 4px 0;
}

.contact-info span {
    opacity: 0.8;
}

.footer-copyright {
    background: var(--blue);
    color: var(--white);
    text-align: center;
    padding: 16px 0;
}

@media (max-width: 900px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-sections {
      flex-direction: column;
      gap: 24px;
      width: 100%;
    }
    .footer-section {
      width: 100%;
    }
}

/* Footer Mobile Styles */
@media (max-width: 1024px) {
    .footer {
        margin-top: 40px;
    }
    
    .footer-main {
        padding: 50px 0 25px 0;
    }
    
    .footer-main .container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }
    
    .footer-brand {
        flex: none;
        width: 100%;
        padding-top: 0;
    }
    
    .footer-logo {
        height: 100px;
        padding: 0 0 12px 0;
    }
    
    .footer-content {
        flex: none;
        width: 100%;
        gap: 30px;
        justify-content: center;
    }
    
    .footer-section:nth-child(1),
    .footer-section:nth-child(2),
    .footer-section:nth-child(3) {
        flex: none;
        width: 100%;
        max-width: 600px;
    }
    
    .footer-section h4 {
        font-size: 20px !important;
        padding-bottom: 12px;
    }
    
    .footer-section p {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }
    
    .footer-services li {
        font-size: 15px !important;
        padding-bottom: 6px;
    }
    
    .footer-contact {
        padding: 25px 0 50px 0;
    }
    
    .footer-contact .container {
        flex-direction: column;
        gap: 25px;
        align-items: center;
        text-align: center;
    }
    
    .contact-item {
        flex: none;
        width: 100%;
        max-width: 400px;
        min-width: auto;
        justify-content: center;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-info p {
        font-size: 16px !important;
        padding: 0 0 3px 0;
    }
    
    .contact-info span {
        font-size: 14px !important;
    }
    
    .footer-copyright {
        padding: 12px 0;
    }
    
    .footer-copyright p {
        font-size: 14px !important;
    }
}

@media (max-width: 768px) {
    .footer {
        margin-top: 30px;
    }
    
    .footer-main {
        padding: 40px 0 20px 0;
    }
    
    .footer-main .container {
        gap: 30px;
        padding: 0 15px 20px;
    }
    
    .footer-logo {
        height: 80px;
        padding: 0 0 10px 0;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h4 {
        font-size: 18px !important;
        padding-bottom: 10px;
    }
    
    .footer-section p {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }
    
    .footer-services li {
        font-size: 14px !important;
        padding-bottom: 5px;
    }
    
    .footer-contact {
        padding: 20px 0 40px 0;
    }
    
    .footer-contact .container {
        gap: 20px;
        padding: 0 15px;
    }
    
    .contact-item {
        max-width: 350px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-info p {
        font-size: 15px !important;
    }
    
    .contact-info span {
        font-size: 13px !important;
    }
    
    .footer-copyright {
        padding: 10px 0;
    }
    
    .footer-copyright p {
        font-size: 13px !important;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .footer {
        margin-top: 25px;
    }
    
    .footer-main {
        padding: 30px 0 15px 0;
    }
    
    .footer-main .container {
        gap: 25px;
        padding: 0 10px 15px;
    }
    
    .footer-logo {
        height: 70px;
        padding: 0 0 8px 0;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-section h4 {
        font-size: 16px !important;
        padding-bottom: 8px;
    }
    
    .footer-section p {
        font-size: 13px !important;
        line-height: 1.3 !important;
    }
    
    .footer-services li {
        font-size: 13px !important;
        padding-bottom: 4px;
    }
    
    .footer-contact {
        padding: 15px 0 30px 0;
    }
    
    .footer-contact .container {
        gap: 15px;
        padding: 0 10px;
    }
    
    .contact-item {
        max-width: 300px;
        gap: 10px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-info p {
        font-size: 14px !important;
    }
    
    .contact-info span {
        font-size: 12px !important;
    }
    
    .footer-copyright {
        padding: 8px 0;
    }
    
    .footer-copyright p {
        font-size: 12px !important;
        padding: 0 10px;
    }
}

@media (max-width: 360px) {
    .footer {
        margin-top: 20px;
    }
    
    .footer-main {
        padding: 25px 0 12px 0;
    }
    
    .footer-main .container {
        gap: 20px;
        padding: 0 8px 12px;
    }
    
    .footer-logo {
        height: 60px;
        padding: 0 0 6px 0;
    }
    
    .footer-content {
        gap: 18px;
    }
    
    .footer-section h4 {
        font-size: 15px !important;
        padding-bottom: 6px;
    }
    
    .footer-section p {
        font-size: 12px !important;
        line-height: 1.2 !important;
    }
    
    .footer-services li {
        font-size: 12px !important;
        padding-bottom: 3px;
    }
    
    .footer-contact {
        padding: 12px 0 25px 0;
    }
    
    .footer-contact .container {
        gap: 12px;
        padding: 0 8px;
    }
    
    .contact-item {
        max-width: 280px;
        gap: 8px;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
    }
    
    .contact-info p {
        font-size: 13px !important;
    }
    
    .contact-info span {
        font-size: 11px !important;
    }
    
    .footer-copyright {
        padding: 6px 0;
    }
    
    .footer-copyright p {
        font-size: 11px !important;
        padding: 0 8px;
    }
}