@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


.open-sans-regular {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.montserrat-regular {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


.roboto-slab-regular {
    font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


.fira-sans-thin {
    font-family: "Fira Sans", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.fira-sans-extralight {
    font-family: "Fira Sans", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.fira-sans-light {
    font-family: "Fira Sans", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.fira-sans-regular {
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.fira-sans-medium {
    font-family: "Fira Sans", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.fira-sans-semibold {
    font-family: "Fira Sans", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.fira-sans-bold {
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.fira-sans-extrabold {
    font-family: "Fira Sans", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.fira-sans-black {
    font-family: "Fira Sans", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.fira-sans-thin-italic {
    font-family: "Fira Sans", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.fira-sans-extralight-italic {
    font-family: "Fira Sans", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.fira-sans-light-italic {
    font-family: "Fira Sans", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.fira-sans-regular-italic {
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.fira-sans-medium-italic {
    font-family: "Fira Sans", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.fira-sans-semibold-italic {
    font-family: "Fira Sans", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.fira-sans-bold-italic {
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.fira-sans-extrabold-italic {
    font-family: "Fira Sans", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.fira-sans-black-italic {
    font-family: "Fira Sans", sans-serif;
    font-weight: 900;
    font-style: italic;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Slab';
}

body {
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1259px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Header Styles */
.header .container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background-color: #1A1A33;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: static;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    width: 109px;
    height: 39px;
    margin-top: 3px;
    margin-left: 20px;
}

.main-nav>ul {
    display: flex;
    gap: 38px;
    position: relative;
}

.main-nav a {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    font-family: 'Montserrat';
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #0066ff;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #0066ff;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.quote-btn {
    background-color: #00B2FF;
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background-color: #05a2e6;
    transform: translateY(-2px);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown>a {
    /*display: flex;*/
    align-items: center;
    gap: 5px;
}

.dropdown>a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover>a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    margin: 0;
}

.dropdown-menu a {
    padding: 8px 20px;
    display: block;
    color: #333 !important;
    font-size: 14px !important;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #0066ff !important;
    padding-left: 25px;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive styles for mobile menu */
@media (max-width: 992px) {
    .dropdown>a i {
        display: none;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 8px 30px;
    } 
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 400px; /* Ensure minimum height */
    background-color: #f0f0f0; /* Fallback background */
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 735px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-text {
    position: absolute;
    top: 83%;
    left: 24%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    z-index: 10; /* Ensure text is above image */
    padding: 20px;
    border-radius: 5px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    position: relative;
    z-index: 11;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
}


.section-header {
    max-width: 1259px;
    margin: 0 auto;
    text-align: justify;
    margin-top: 80px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 30px;
    color: #1A1A33;
    margin-bottom: 20px;
    align-content: centre;
    padding-top: 40px;
    text-align: center;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    width: 1170px;
    color: #000;
    margin-bottom: 20px;
    margin-top: 20px;
}

.section-header li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
    list-style-type: disc;
}

/* Services Section */

.services-section .container {
    width: 100%;
    max-width: 1259px;
    margin: 0 auto;
    padding: 0 15px;
    margin-top: 50px;
}

.services-section {
    padding: 0px 0PX 60px 0;
    background-color: #fff;
}

.services-content {
    display: flex;
    gap: 5px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.services-image {
    flex: 1;
    overflow: hidden;
}

.services-image img {
    width: 735px;
    height: 397px;
    display: block;
    transition: transform 0.3s ease;
}

.services-accordion {
    flex: 1;
    max-width: 450px;
    /* Added max-width to control the width */
    margin: 0 auto;
    /* Center the accordion */
}

.accordion-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: transparent;
    opacity: 0.9;
}

.accordion-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.accordion-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.accordion-header h3 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: #333;
    flex-grow: 1;
    text-align: left;
    line-height: 1.4;
}

.accordion-header i.fa-chevron-down {
    color: #777;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i.fa-chevron-down {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: transparent;
    padding-left: 55px;
}

.accordion-content ul {
    padding: 0 0 15px 0;
    margin: 0;
    list-style: none;
}

.accordion-content li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
    font-size: 16px;
}

.accordion-content li:before {
    content: "•";
    color: #00B2FF;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .services-content {
        flex-direction: column;
        padding: 0 20px;
    }

    .services-image {
        margin-bottom: 40px;
        max-width: 550px;
        /* Match accordion width */
        margin-left: auto;
        margin-right: auto;
    }

    .services-accordion {
        width: 100%;
        max-width: 550px;
        /* Keep consistent width */
    }
}

@media (max-width: 768px) {
    .app-development {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .accordion-header {
        padding: 15px 20px;
    }

    .accordion-content ul {
        padding: 0 20px 15px 70px;
    }
}

/* Main Content */
.about-main {
    flex: 1;
    padding: 80px 0;
    background-color: #fff;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 10px 0;
    background-color: #fff;
}

.why-choose-us .section-title {
    text-align: left; 
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    margin-left: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.feature-item {
    background: transparent;
    padding: 20px 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
    transition: all 0.3s ease;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-img {
    width: 100%;
    height: auto;
    max-width: 40px;
    max-height: 40px;
}

.feature-item p {
    font-family: 'Roboto Slab', serif;
    font-size: 15px;
    text-align: left;
    line-height: 1.6;
    color: #666;
    margin: 0;
    padding-top: 5px;
}

.feature-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

/* Our Partners Section */
.partners-section {
    padding: 60px 0;
    background-color: #fff;
}

.partners-section .section-title {
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    margin-left: 15px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.partner-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 0 15px;
    margin-bottom: 20px;
}

.partner-logo { 
    max-width: 100%;
    height: auto;
    max-height: 92px;
    width: auto;
    opacity: 1;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: none;
    opacity: 1;
}

/* Responsive styles for Why Choose Us */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 80px 0;
    }
    
    .why-choose-us .section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .feature-item {
        padding: 40px 25px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
}

/* Footer Styles */
.footer {
    background: #101325;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 15px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 70px;
    flex-direction: row;
    justify-content: space-around;
}

.footer-brand {
    flex: 1;
    min-width: 529px;
    max-width: 400px;
}

.logo-social-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 25px;
}

.footer-logo {
    flex-shrink: 0;
    margin: 0;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
    display: block;
}

.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
    padding-top: 5px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #0066ff;
    border-radius: 55px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background-color: #00B2FF;
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-description {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
    opacity: 0.9;
}

.footer-links,
.footer-services {
    flex: 0 1 180px;
}

.footer h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00B2FF 0%, rgba(0, 178, 255, 0) 100%);
    border-radius: 2px;
}

.footer ul {
    list-style: none;
    line-height: 1.1;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 16px;
}

.footer ul li:last-child {
    margin-bottom: 0;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: block;
    font-weight: 300;
    position: relative;
    padding-left: 0;
}

.footer ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #00B2FF;
}

.footer ul li a:hover {
    color: #00B2FF;
    padding-left: 20px;
}

.footer ul li a:hover::before {
    opacity: 1;
    left: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    margin-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255);
    font-size: 14px;
    margin: 0;
    font-weight: 300;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-legal a:hover {
    color: #00B2FF;
}

.footer-legal span {
    color: rgba(255, 255, 255);
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-content {
        gap: 30px;
    }

    .footer-brand,
    .footer-links,
    .footer-services {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand,
    .footer-links,
    .footer-services {
        width: 100%;
        flex: none;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .mobile-menu {
        display: block;
        margin-left: auto;
        margin-right: 20px;
    }

    .quote-btn {
        margin-left: auto;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .back-to-top {
        margin-top: 15px;
    }
}

/* Contact Form Section */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-content {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    padding-right: 30px;
}

.contact-info h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.contact-info p {
    color: #666;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 30px;
    font-size: 20px;
    font-family: 'Roboto Slab', serif;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-method i {
    font-size: 24px;
    color: #00B2FF;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-method h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.contact-method p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    font-size: 15px;
    transition: border-color 0.3s;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00B2FF;
    border-width: 2px;
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.form-footer {
    margin-top: 25px;
}

/* Toggle Switch */
.privacy-optin {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin-right: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #00B2FF;
}

input:checked+.slider:before {
    transform: translateX(20px);
}

.privacy-notice {
    font-size: 12px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

.privacy-notice a {
    color: #00B2FF;
    text-decoration: none;
    margin-left: 5px;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

.submit-btn {
    background-color: #000;
    color: white;
    border: none;
    width: 146px;
    height: 46px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn:hover {
    background-color: #0099e0;
}

/* Responsive styles */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media (min-width: 2000px) {
    .header .container {
        width: 100%;
        max-width: 1950px;
        margin: 0 auto;
        padding: 0 30px;
    }

    .main-nav a {
        color: #fff;
        font-weight: 400;
        font-size: 24px;
        position: relative;
    }

    .logo {
        width: 140px !important;
        height: 50px !important;
        margin: 20px 30px 0 0 !important;
        transform: scale(1.5);
        transform-origin: left center;
    }

    .main-nav>ul {
        display: flex;
        gap: 50px;
        position: relative;
        align-items: center;
    }

    .quote-btn {
        padding: 15px 35px !important;
        font-size: 20px !important;
        border-radius: 30px !important;
        margin-left: 20px !important;
    }

    .hero {
        width: 100%;
        height: 735px;
        overflow: hidden;
        position: relative;
        align-items: center;
    }

    .container {
        width: 100%;
        max-width: 1800px;
        margin: 0 auto;
        padding: 0 15px;
    }


    .section-header {
        max-width: 1800px;
        margin: 0 auto;
        padding: 0 20px;
        margin-top: 90px;
    }

    .section-header h2 {
        font-size: 57px;
        color: #1A1A33;
        margin-bottom: 20px;
        align-content: centre;
        padding-top: 40px;
        text-align: center;
        font-weight: 700;
    }

    .section-header p {
        font-size: 26px;
        line-height: 1.8;
        width: 1700px;
        color: #000;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .section-header li {
        font-size: 24px;
        line-height: 1.8;
        color: #000;
        list-style-type: disc;
    }

    .services-section .container {
        width: 100%;
        max-width: 1816px;
        margin: 0 auto;
        padding: 0 15px;
        margin-top: 50px;
    }

    .services-content {
        display: flex;
        gap: 5px;
        align-items: flex-start;
        max-width: 1800px;
        margin: 0 auto;
    }

    .services-accordion {
        flex: 1;
        max-width: 450px;
        margin: 0;
    }

    .services-image {
        overflow: hidden;
    }

    .services-image img {
        width: 983px;
        height: 529px;
        display: block;
        transition: transform 0.3s ease;
    }

    .services-accordion {
        flex: 1;
        max-width: 750px;
        margin: 0;
    }

    .accordion-header h3 {
        margin: 0;
        font-size: 32px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        color: #333;
        flex-grow: 1;
        text-align: left;
        line-height: 1.4;
    }

    .accordion-icon img {
        width: 47px;
        height: 47px;
        object-fit: contain;
    }

    .services-content {
        display: flex;
        gap: 45px;
        align-items: flex-start;
        max-width: 1800px;
        margin: 0 auto;
    }

    .accordion-content li {
        padding: 4px 0;
        color: #555;
        position: relative;
        padding-left: 20px;
        font-size: 26px;
    }

    .accordion-item {
        margin-bottom: 31px;
        border-bottom: 1px solid #fff;
        border-radius: 0;
        overflow: hidden;
        background: transparent;
        box-shadow: none;
    }

    .services-section {
        padding: 0px 0PX 60px 0;
        background-color: #fff;
    }

    .why-choose-us .section-title {
        text-align: left;
        font-family: 'Montserrat', sans-serif;
        font-size: 37px;
        margin-left: 15px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #333;
        position: relative;
        padding-bottom: 15px;
    }

    .feature-img {
        width: 67px;
        height: 52px;
        max-width: 71px;
        max-height: 94px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        max-width: 1800px;
        margin: 0 auto;
        padding: 0 10px;
    }

    .feature-item p {
        font-family: 'Roboto Slab', serif;
        font-size: 22px;
        text-align: left;
        line-height: 1.6;
        color: #666;
        margin: 0;
        padding-top: 5px;
    }

    .partners-section .section-title
 {
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    margin-left: 15px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.partner-logo {
    max-width: 100%;
    height: auto;
    max-height: 140px;
    width: auto;
    opacity: 1;
    transition: all 0.3s ease;
}


    .contact-section {
        padding: 120px 0;
        background-color: #fff;
    }

    .contact-content {
        display: flex;
        gap: 50px;
        max-width: 1800px;
        margin: 0 auto;
    }

    .contact-info h2 {
        font-size: 62px;
        line-height: 1.3;
        color: #333;
        margin-bottom: 20px;
        font-weight: 600;
        font-family: 'Montserrat', sans-serif;
    }

    .contact-info p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 30px;
        font-size: 29px;
        font-family: 'Roboto Slab', serif;
    }

    .form-group label {
        display: block;
        margin-bottom: 14px;
        font-weight: 500;
        color: #444;
        font-size: 26px;
    }

    .switch {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 25px;
        margin-right: 10px;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 17px;
        width: 17px;
        left: 9px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

    .privacy-notice {
        font-size: 24px;
        color: #777;
        margin: 0;
        line-height: 1.5;
    }

    .submit-btn {
        background-color: #000;
        color: white;
        border: none;
        width: 175px;
        height: 61px;
        font-size: 27px;
        font-weight: 500;
        border-radius: 25px;
        cursor: pointer;
        transition: background-color 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer .container {
        max-width: 1800px;
        margin: 0 auto;
        padding: 60px 15px 20px;
    }

    .footer-brand {
        flex: 1;
        min-width: 600px;
        max-width: 400px;
    }

    .footer-description {
        color: #fff;
        font-size: 23px;
        line-height: 1.8;
        margin: 0;
        font-weight: 300;
        opacity: 0.9;
    }

    .footer-logo img {
        width: 118px !important;
        height: 39px !important;
        margin: 20px 51px 0 0 !important;
        transform: scale(1.5);
        transform-origin: left center;
    }

    .footer-social {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin: 0;
        padding-top: 5px;
    }

    .social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 55px;
        height: 55px;
        background-color: #0066ff;
        border-radius: 25px;
        color: #fff;
        font-size: 26px;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer h3 {
        color: #fff;
        font-size: 29px;
        font-weight: 600;
        margin: 0 0 30px 0;
        position: relative;
        padding-bottom: 15px;
        font-family: 'Montserrat', sans-serif;
        letter-spacing: 0.5px;
    }

    .footer h3 {
        color: #fff;
        font-size: 32px;
        font-weight: 600;
        margin: 0 0 30px 0;
        position: relative;
        padding-bottom: 15px;
        font-family: 'Montserrat', sans-serif;
        letter-spacing: 0.5px;
    }

    .footer-links,
    .footer-services {
        flex: 0 1 315px;
    }

    .footer ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 27px;
        transition: all 0.3s ease;
        display: block;
        font-weight: 300;
        position: relative;
        padding-left: 0;
    }

    .copyright {
        color: rgba(255, 255, 255);
        font-size: 19px;
        margin: 0;
        font-weight: 300;
    }

    .footer-legal a {
        color: rgba(255, 255, 255);
        font-size: 20px;
        text-decoration: none;
        transition: color 0.3s ease;
        font-weight: 300;
    }

    .footer ul li a:hover {
        color: #00B2FF;
        padding-left: 40px;
    }

    .hero-text {
        position: absolute;
        top: 79%;
        left: 24%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        width: 100%;
        z-index: 10;
        padding: 20px;
        border-radius: 5px;
    }

    .hero-text h1 {
        font-size: 85px;
        font-weight: 500;
        margin: 0;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        font-family: 'Montserrat', sans-serif;
        color: #fff;
        position: relative;
        z-index: 11;
    }

}

