:root {
    --accentColor: #e42032;
    --footerBg: #061e43;
    --headingColor: #082a5e;
    --textColor: #39557e;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hind', sans-serif;
    color: var(--textColor);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lexend Deca', sans-serif;
    color: var(--headingColor);
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.containerFluid {
    width: 100%;
    padding: 0 15px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}


.mainHeader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.headerInnerWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logoBrand {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.logoBrand span {
    color: var(--accentColor);
}

.navMenu {
    display: flex;
    align-items: center;
}

.navList {
    display: flex;
    list-style: none;
}

.navItem {
    margin-left: 30px;
}

.navLink {
    color: var(--white);
    font-weight: 500;
    position: relative;
}

.navLink:hover {
    color: var(--accentColor);
}

.navLink:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accentColor);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.navLink:hover:after {
    width: 100%;
}

.contactBtn {
    background: var(--accentColor);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    margin-left: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contactBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(228, 32, 50, 0.3);
}

.phoneNumber {
    color: var(--white);
    font-weight: 600;
    margin-left: 30px;
}

.mobileMenuBtn {
    display: none;
    cursor: pointer;
}


.heroBanner {
    background: linear-gradient(rgba(6, 30, 67, 0.9), rgba(6, 30, 67, 0.8)), url('../img/main.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
}

.bannerContent {
    max-width: 600px;
}

.subHeading {
    font-size: 18px;
    color: var(--accentColor);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mainHeading {
    font-size: 48px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.bannerText {
    font-size: 18px;
    margin-bottom: 30px;
}

.tagList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tagItem {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tagItem:hover {
    background: var(--accentColor);
    transform: translateY(-3px);
}


.sectionPadding {
    padding: 100px 0;
}

.aboutSection {
    display: flex;
    align-items: center;
    gap: 50px;
}

.aboutContent {
    flex: 1;
}

.sectionHeading {
    font-size: 36px;
    margin-bottom: 20px;
}

.sectionText {
    margin-bottom: 25px;
}

.featureList {
    list-style: none;
}

.featureItem {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.featureItem:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--accentColor);
    border-radius: 50%;
}

.aboutImage {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.aboutImage img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}


.servicesSection {
    background: #f8f9fa;
}

.sectionHeader {
    text-align: center;
    margin-bottom: 50px;
}

.servicesGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.serviceCard {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.serviceCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.serviceIcon {
    font-size: 40px;
    color: var(--accentColor);
    margin-bottom: 20px;
}

.serviceTitle {
    font-size: 22px;
    margin-bottom: 15px;
}


.whyUsSection {
    display: flex;
    align-items: center;
    gap: 50px;
}

.whyUsImage {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.whyUsImage img {
    width: 100%;
    height: auto;
    display: block;
}

.whyUsContent {
    flex: 1;
}


.statsSection {
    background: linear-gradient(rgba(6, 30, 67, 0.9), rgba(6, 30, 67, 0.9)), url('../img/ctaBg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    background-attachment: fixed;
    padding: 20px 0;
}

.statsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

}

.statItem {
    padding: 30px;
}

.statNumber {
    font-size: 50px;
    font-weight: 700;
    color: var(--accentColor);
    margin-bottom: 10px;
}

.statText {
    font-size: 18px;
}


.testimonialsSection {
    background: #f8f9fa;
}

.testimonialsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonialCard {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonialText {
    font-style: italic;
    margin-bottom: 20px;
}

.clientInfo {
    display: flex;
    align-items: center;
}

.clientImage {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.clientImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clientName {
    font-weight: 600;
    color: var(--headingColor);
}

.clientPosition {
    font-size: 14px;
    color: var(--accentColor);
}


.contactSection {
    display: flex;
    gap: 50px;
}

.contactForm {
    flex: 1;
}

.formGroup {
    margin-bottom: 20px;
}

.formControl {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Hind', sans-serif;
    transition: all 0.3s ease;
}

.formControl:focus {
    border-color: var(--accentColor);
    outline: none;
}

textarea.formControl {
    min-height: 150px;
    resize: vertical;
}

.submitBtn {
    background: var(--accentColor);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submitBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(228, 32, 50, 0.3);
}

.contactInfo {
    flex: 1;
}

.infoItem {
    display: flex;
    margin-bottom: 30px;
}

.infoIcon {
    font-size: 24px;
    color: var(--accentColor);
    margin-right: 20px;
}

.infoContent h4 {
    margin-bottom: 5px;
}


.mainFooter {
    background: var(--footerBg);
    color: var(--white);
    padding: 80px 0 30px;
}

.footerContent {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.footerLogo {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footerLogo span {
    color: var(--accentColor);
}

.footerAbout {
    flex: 1;
}

.footerAboutText {
    margin-bottom: 20px;
}

.footerLinks {
    flex: 1;
}

.footerTitle {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footerList {
    list-style: none;
}

.footerItem {
    margin-bottom: 10px;
}

.footerLink {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footerLink:hover {
    color: var(--accentColor);
    padding-left: 5px;
}

.footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyrightText {
    color: rgba(255, 255, 255, 0.7);
}

.footerLegal {
    display: flex;
}

.footerLegalLink {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 20px;
    transition: all 0.3s ease;
}

.footerLegalLink:hover {
    color: var(--accentColor);
}


.cookiePopup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    z-index: 1000;
    transform: translateX(-150%);
    transition: transform 0.5s ease;
}

.cookiePopup.show {
    transform: translateX(0);
}

.cookieText {
    margin-bottom: 15px;
}

.cookieBtn {
    padding: 8px 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookieAccept {
    background: var(--accentColor);
    color: var(--white);
    margin-right: 10px;
}

.cookieDecline {
    background: transparent;
    border: 1px solid #ddd;
}


.thankYouPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.thankYouPopup.show {
    opacity: 1;
    visibility: visible;
}

.popupContent {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    position: relative;
}

.popupClose {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: var(--textColor);
}

.popupIcon {
    font-size: 50px;
    color: var(--accentColor);
    margin-bottom: 20px;
}

.popupTitle {
    font-size: 24px;
    margin-bottom: 15px;
}

.breadcrumbsSection {
    padding: 20px 0;
    background: #f8f9fa;
    margin-top: 80px;
}

.breadcrumbList {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbItem {
    font-size: 14px;
    color: var(--textColor);
}

.breadcrumbItem:not(:last-child):after {
    content: '/';
    margin: 0 10px;
    color: var(--textColor);
}

.breadcrumbItem a {
    color: var(--textColor);
    transition: all 0.3s ease;
}

.breadcrumbItem a:hover {
    color: var(--accentColor);
}


.legalPage {
    background: var(--white);
}

.pageMainHeading {
    font-size: 36px;
    color: var(--headingColor);
    text-align: center;
    margin-bottom: 10px;
}

.pageLastUpdated {
    color: var(--textColor);
    margin-bottom: 30px;
    font-style: italic;
}

.legalContent {
    max-width: 900px;
    margin: 0 auto;
}

.legalHeading {
    font-size: 24px;
    color: var(--headingColor);
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.legalSubHeading {
    font-size: 20px;
    color: var(--headingColor);
    margin: 25px 0 15px;
}

.legalContent p, 
.legalContent ul {
    margin-bottom: 20px;
    line-height: 1.7;
}

.legalContent ul {
    padding-left: 20px;
}

.legalContent ul li {
    margin-bottom: 10px;
}

.legalContent a {
    color: var(--accentColor);
    text-decoration: underline;
}

.legalContent a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .pageMainHeading {
        font-size: 30px;
    }
    
    .legalHeading {
        font-size: 22px;
    }
    
    .legalSubHeading {
        font-size: 18px;
    }
}































@media (max-width: 992px) {
    .aboutSection, .whyUsSection, .contactSection {
        flex-direction: column;
    }
    
    .servicesGrid, .testimonialsGrid {
        grid-template-columns: 1fr;
    }
    
    .statsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footerContent {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .navMenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--footerBg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease;
        z-index: 1000;
    }
    
    .navMenu.active {
        right: 0;
    }
    
    .navList {
        flex-direction: column;
        align-items: center;
    }
    
    .navItem {
        margin: 15px 0;
    }
    
    .contactBtn, .phoneNumber {
        margin: 15px 0 0;
    }
    
    .mobileMenuBtn {
        display: block;
        z-index: 1001;
    }
    
    .mainHeading {
        font-size: 36px;
    }
    
    .sectionHeading {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .statsGrid {
        grid-template-columns: 1fr;
    }
    
    .mainHeading {
        font-size: 30px;
    }
    
    .sectionHeading {
        font-size: 26px;
    }
    .cookiePopup{
        left: 0;
    }
}