/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&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'); 

@font-face {
    font-family: 'SfPro';
    src: url('fonts/sf-pro-text_regular.woff2') format('woff2'),
    url('fonts/sf-pro-text_bold.woff2') format('woff2'),
    url('fonts/sf-pro-text_light.woff2') format('woff2'),
    url('fonts/sf-pro-text_semibold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'UniformRounded'; /* Custom font name */
    src: url('fonts/Uniform-Rounded-Medium.woff2') format('woff2');
}@font-face {
    font-family: 'Axiforma'; /* Custom font name */
    src: url('fonts/Axiforma-Bold.woff2') format('woff2'),
    url('fonts/Axiforma-Regular.woff2') format('woff2');
}





.get-started {
    border: none;
    margin-right: -119px;
    margin-top: 0px;
    border-radius: 30px;
    padding: 10px 20px;
    color: white;
    font-family: 'Axiforma', sans-serif;
    font-weight: 600;
    background: #2a3b51;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.get-started:hover {
    transform: scale(1.05); /* Smooth button scaling */
    background-color: #212529; /* Darker hover effect */
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}




.hero-compare {
    background: linear-gradient(to bottom, #fff 100px, #ffffff 500px);
    color: #212529;
    text-align: center;
    padding: 150px 20px 50px 20px;
    position: relative;
    overflow: hidden;
}
.hero-compare::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/Texturelabs_Stone_124M.jpg") center center;
    opacity: 1;
    z-index: -1; /* ⬅️ This pushes it behind everything in the section */
    pointer-events: none;
  }

.hero-compare h2 {
    font-size: 4rem;
}

.hero-compare p {
    margin-top: -20px;
    margin-bottom: 32px;
    font-size: 1.2rem;
    font-family: 'AxiformaReg';
}


.hero3 {
    background-image: url(images/two-pretty-young-women-using-mobile-phone-while-dr-2024-09-22-10-07-45-utc.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 50px 54px 50px;
    color: white;
    height: 530px;
  }

  .hero3 h2{
    font-size: 2.5rem;
    background-color: rgba(207, 144, 51, 0.7);
    padding: 10px 20px;
    border-radius: 36px;
    max-width: 602px;
    width: 100%;
    text-align: left;
    margin-bottom: 50px;
  }

  .hero4{
    background: linear-gradient(to top, #fff 100px, #ffffff 500px);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .hero4-image{
    width: 500px;
  }

  .hero4 h2 {
    font-size: 2.5rem;
    margin: 7px auto;
}
  

.compare-header{
    font-size: 2.5rem;
}

.btn {
    display: inline-block;
    background: #ffcc00;
    color: #003366;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn:hover {
    background: #ffa500;
}

.bankbot-error {
    color: red;
    font-size: 12px;
}

/* Apply Here Button */
.apply-button {
    position: fixed;
    font-family: 'Axiforma';
    font-weight: 700;
    bottom: 20px;
    right: 20px;
    background-color: #2a3b51;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}
.apply-button:hover {
    transform: scale(1.05); /* Smooth button scaling */
    background-color: #f5b85d;
}

/* Chatbot Container */
#bankbot-container {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 500px;
    max-height: 470px;
    background: white;
    font-family: 'Axiforma', sans-serif;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease-out, opacity 0.3s ease-in-out, visibility 0.3s;
}

/* Show chatbot when active */
#bankbot-container.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Close Button */
.close-chatbot {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 50%;
}

/* Loan Calculator Box */
.loan-calculator {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 42%;
    max-width: 500px;
    margin: 0 auto;
}


/* Loan Amount Display */
#loanAmount {
    width: calc(100% - 18px);
    text-align: left;
    font-size: 1.5rem;
    font-weight: bold;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px;
    margin-top: 6px;
    color: #212529;
    font-size: 29px;
    font-family: "Open Sans", serif;
    font-weight: 600;
    
}

/* Slider Container */
.slider-container {
    position: relative;
    margin: 20px 0;
}

#AmountLabel{
    color: #212529;
}

/* General Slider Styling */
#loanSlider {
    appearance: none;
    -webkit-appearance: none; /* Chrome, Safari */
    -moz-appearance: none; /* Firefox */
    margin-bottom: 15px;
    width: 100%;
    height: 5px;
    background: #d1d1d1;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s ease-in-out;
}

/* WebKit (Chrome, Safari) - Custom Slider Thumb */
#loanSlider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: white;
    border: 3px solid #2a3b51;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.2s ease-in-out;
}

/* Firefox - Custom Slider Thumb */
#loanSlider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: white;
    border: 3px solid #2a3b51;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.2s ease-in-out;
}

/* Thumb Hover & Active Effects */
#loanSlider:focus::-webkit-slider-thumb,
#loanSlider:focus::-moz-range-thumb,
#loanSlider:active::-webkit-slider-thumb,
#loanSlider:active::-moz-range-thumb {
    transform: scale(1.2);
    box-shadow: 0px 0px 10px rgba(106, 13, 173, 0.5);
}



/* Min/Max Labels */
.min-value, .max-value {
    font-size: 14px;
    color: #666;
    position: absolute;
    bottom: -20px;
}

.min-value {
    left: 0;
}

.max-value {
    right: 0;
}

/* Get Started Button */
.get-started2 {
    width: 100%;
    padding: 20px 12px;
    font-size: 1.2rem;
    font-weight: bold;
    background: #2a3b51;
    color: white;
    border: none;
    border-radius: 30px;
    margin-top: 23px;
    cursor: pointer;
    font-family: 'Axiforma';
    transition: transform 0.3s ease, background 0.3s ease;
}

.get-started2:hover {
    transform: scale(1.05); /* Smooth button scaling */
    background-color: #f5b85d;
}

.get-started2 i{
    font-size: 15px;
}


/* Info Text */
.info-text {
    font-size: 0.9rem !important;
    margin-top: 20px !important;
    text-align: center;
    color: #212529;
}
#amountLabel{
    color: #212529;
}

#apr-header{
    font-size: 1.5rem;
}


/* Dropdown Styling for Large Screens */

.dropdown-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 16px;
}

.arrow {
    transition: transform 0.3s ease-in-out;
}

/* Rotate Arrow When Dropdown is Active */
.dropdown.active .arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 260%;
    left: -55px;
    background: #2a3b51;
    list-style: none;
    padding: 10px;
    margin: 0;
    width: 180px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}


/* Show Dropdown when Active */
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Links */


.dropdown-menu li a {
    color: #212529;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease-in-out;
}

.dropdown-menu li a:hover {
    color: #212529;
}

.dropdown i{
    font-size: 10px;
    margin-top: 0px;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 104%;
    max-width: 600px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    z-index: 999;
    opacity: 0;
    text-align: center;
    color: #212529;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

/* Show Modal with Animation */
.modal.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); /* Smooth scale up */
}

/* Close Button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

/* Loan Term Buttons */
.loan-term-buttons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    font-family: 'Axiforma';
}

.loan-term {
    background: #2a3b51;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px 5px -4px 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-family: 'Axiforma';
}

/* Button Hover Effect */
.loan-term:hover {
    background: #f5b85d;
    transform: scale(1.05);
}

/* Close Animation */
.modal.closing {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: transform 0.3s ease-in, opacity 0.3s ease-in;
}

.loan-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.loan-table td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.loan-table td:first-child {
    font-weight: bold;
    text-align: left;
    width: 50%;
}

.loan-table td:last-child {
    text-align: right;
}


/* Review Carousel Styling */
.review-carousel {
    width: 80%;
    max-width: 700px;
    position: relative;
    text-align: center;
}

/* Base review style - hidden but present */
.review {
    font-size: 1.2rem;
    font-style: italic;
    background: rgba(0, 0, 0, 0.4);;
    padding: 20px;
    border-radius: 40px;
    text-align: left;
    min-height: 120px;
    position: absolute;
    width: 150%;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    font-family: 'AxiformaReg';
}

/* When active, the review fades in */
.review.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

/* When fading out, smoothly disappear */
.review.fading {
    opacity: 0;
    transform: translateY(-10px);
}

.customer-name{
        font-size: 1.5rem;
    font-style: normal;
    font-weight: bold;
}

.how-it-works-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    width: 100%;
    height: 100%;
    max-width: 1200px;
}

.how-it-works-wrapper-left{
    display: flex;
        justify-content: center;
        width: 50%;
}

.how-it-works-wrapper-right{
    width: 50%;
    display: flex;
    gap: 30px;
    flex-direction: column;
    color: #212529;
}

.how-it-works-1{
    display: flex;
        justify-content: flex-start;
        gap: 30px;
        max-width: 550px;
        border-bottom: 1px solid #e3e3e3;
        font-family: 'AxiformaReg';
}    

.how-it-works-1 p{
    font-weight: normal;
    font-size: 13px;
}

.how-it-works-1 strong{
    font-size: 18px;
}

/* Section Styling */
.offer-section {
    text-align: center;
    padding: 20px 20px 60px 20px;
    background-color: white;
}

/* Heading Styling */
.offer-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #212529;
    margin-bottom: 45px;
}

/* Card Container */
.offer-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1700px;
    margin: auto;
    flex-wrap: wrap;
}

/* Individual Card */
.offer-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 25%;
    max-width: 440px;
    text-align: center;

}

/* Icon Styling */
.offer-icon {
    background: #2a3b51;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.offer-icon i {
    font-size: 32px;
    color: #ffc46c;
}

/* Card Heading */
.offer-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #212529;
    margin-bottom: 10px;
}

/* Card Text */
.offer-card p {
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
    font-family: 'AxiformaReg';
}

/* Responsive Design */
@media (max-width: 1024px) {
    .offer-container {
        flex-direction: column;
        align-items: center;
    }

    .review {
        font-size: 0.9rem !important;
        font-style: italic;
        background: rgba(0, 0, 0, 0.4);
        padding: 20px;
        border-radius: 40px;
        text-align: left;
        min-height: 120px;
        position: absolute;
        width: 115%;
        top: 0;
        left: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    }

    .modal {
        max-width: 85%;
    }

    .dropdown-left {
        display: none !important;
        justify-content: center;
        align-items: center;
        border-right: 1px solid #2a3b51;
    }

    .dropdown-menu.wide-dropdown {
        width: 100%;
        left: 0;
        top: 100%;
        display: flex
    ;
        background: #fff !important;
        padding: 20px 0px;
        border-radius: 0;
        z-index: 999;
        border-top: 0.1px solid #2a3b51;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }
}




/* Responsive Design */
@media (max-width: 768px) {


    .footer-container {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }

    header {
        background: #fff;
        color: white;
        padding: 2px 0;
        position: fixed !important;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.04);
        margin: 0;

    }
    
    header .container {
        display: flex;
        justify-content: stretch;
        align-items: center;
    }

    /* Warning Strip */
.warning-strip {
    background: #2a3b51;
        height: auto;
        color: white;
        text-align: center;
        padding: 1px 8px;
        font-size: 14px;
        position: static;
        width: calc(100% - 16px);
}

#warning-message{
    margin-top: 6px;
}

/* Link Styling */
.warning-strip a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

    .get-started {
        display: none;
    }

    .dropdown {
        position: relative !important;
        width: 100% !important;
    }

    .dropdown-menu {
        border-top: 1px solid #ddd;
        margin-top: 10px;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 95% !important;
        max-width: none !important;
        background: white !important;
        padding: 5px 0 !important;
        box-shadow: none !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        border-radius: 0;
        transition: opacity 0.3sease-in-out, transform 0.3sease-in-out;
    }

    /* Show Menu When Active */
    .dropdown.active .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        position: relative !important;
    }

    /* Fix Navigation Alignment */
    /* Ensure Navigation is Hidden by Default */
    .nav-links {
        display: none !important;
        flex-direction: column !important;
        background: #fff !important;
        position: absolute !important;
        top: 130px !important;
        right: 0 !important;
        border-radius: 5px;
        width: 100% !important;
        text-align: center !important;
        padding: 24px 0 !important;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1) !important;
    }

    .nav-links a {
        margin-bottom: 20px;
        text-decoration: none;
        width: 95%;
        font-weight: normal;
        transition: color 0.3s;
        font-size: 20px;
    }

    .nav-links a:hover{
        color: #2a3b51 !important;
    }

    /* Show Navigation When Active */
    .nav-links.active {
        display: flex !important;
    }

    /* Style for Hamburger Menu */
    .menu-toggle {
        display: block !important;
        margin-top: 0px !important;
        position: absolute !important;
        right: 20px !important;
        cursor: pointer !important;
        font-size: 24px !important;
        color: #2a3b51 !important;
        background: none !important;
        border: none !important;
    }


    .nav-links li {
        width: 50% !important;
    }
   

    .loan-calculator {
        width: 90%; /* Full width on smaller screens */
        padding: 15px;
        text-align: center; /* Center text */
    }
    
    #loanAmount {
        font-size: 1.2rem; /* Adjust input size */
    }

    .get-started2 {
        font-size: 1rem;
        padding: 10px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        margin: -22px 0px 22px 0px;
        font-size: 1rem;
    }

    .hero3 {
        background-size: cover;
        background-repeat: no-repeat;
        padding: 14px 9px;
        color: white;
        height: 400px;
      }
    
      .hero3 h2{
        font-size: 1.37rem;
        background-color: rgba(207, 144, 51, 0.7);
        padding: 10px 20px;
        border-radius: 36px;
        max-width: 315px;
        width: 100%;
        text-align: left;
      }

      .review {
        font-size: 1rem; /* Slightly smaller font for mobile */
        padding: 15px;
    }

    .how-it-works-wrapper{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        background-color: transparent;
        width: 100%;
        height: 100%;
    }

    .how-it-works-wrapper-left{
        display: flex;
            justify-content: center;
            width: 100%;
    }
    
    .how-it-works-wrapper-right{
        width: 100%;
        display: flex;
        gap: 30px;
        flex-direction: column;
        color: #212529;
    }

    .hero4 h2 {
        font-size: 2rem;
        margin: 7px auto;
    }

    .hero4-image{
        width: 300px;
        margin-bottom: 57px;
      }

      .hero5{
        background-color: white;
        text-align: center;
        padding: 50px 10px !important;
        display: flex;
        flex-direction: column;
    justify-content: center;
    align-items: center;
      }

      .hero5 h2 {
        font-size: 2rem;
        color: #212529;
        margin-bottom: 60px;
    }

    .footer-column{
        margin-left: 0px;
    }

    .social-widget{
        display: none;
    
    }

    .image-section {
        gap: 50px;
        background-color: #fff;
        padding: 50px 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .image-container {
        flex: 1;
        display: flex
    ;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        max-width: 374px;
    }

    .woman-pointing {
        width: 400px;
        height: 330px;
    }

    .man-thinking {
        width: 400px;
        height: 330px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-column{
        margin-left: 0px !important;
    }
}



.image-section-privacy {
    width: 100%;
    background-color: white;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.image-wrapper-privacy {
    max-width: 900px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.text-container-privacy h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #212529;
    text-align: left;
    margin-bottom: 20px;
}

.text-container-privacy h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2a3b51;
    margin-top: 20px;
}

.text-container-privacy p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
    font-family: 'AxiformaReg';
}

.text-container-privacy ul {
    padding-left: 20px;
    font-family: 'AxiformaReg';
}

.text-container-privacy ul li {
    margin-bottom: 5px;
    font-family: 'AxiformaReg';
}

.text-container-privacy table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: 'AxiformaReg';
}

.text-container-privacy table, th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.text-container-privacy th {
    background-color: #2a3b51;
    color: white;
    font-weight: bold;
}

.text-container-privacy a {
    color: #2a3b51;
    text-decoration: none;
}

.text-container-privacy a:hover {
    text-decoration: underline;
}


/* Cookie Banner Styling */
#cookie-banner {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    position: fixed;
    bottom: 4px;
    left: 265px;
    transform: translateX(-50%);
    width: 38%;
    background: white;
    color: #212529;
    padding: 20px;
    font-family: 'AxiformaReg', sans-serif;
    text-align: center;
    font-size: 0.7rem;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: opacity 0.3s ease-in-out;
}

.cookie-banner-content h3 {
    margin: 0 0 10px;
}

.cookie-banner-content ul {
    text-align: center;
    padding-left: 20px;
}

.cookie-buttons {
    margin-top: 15px;
}

.cookie-btn {
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-family: 'Axiforma', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    margin: 5px;
}

.cookie-accept {
    background: #2a3b51;
    color: white;
}

.cookie-accept:hover {
    background: #212529;
    transform: scale(1.05);
}

.cookie-decline {
    background: #ddd;
    color: #212529;
}

.cookie-decline:hover {
    background: #bbb;
    transform: scale(1.05);
}

.cookie-settings {
    background: #f8f8f8;
    color: #212529;
}

.cookie-settings:hover {
    background: #e0e0e0;
}

/* Cookie Settings Modal */
#cookie-settings-modal {
    display: none;
    position: fixed;
    bottom: -46px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 309px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
}

.cookie-settings-content h3 {
    margin: 0 0 10px;
}

.cookie-close {
    background: red;
    color: white;
}

.cookie-close:hover {
    background: darkred;
}

@media (max-width: 768px) {
#cookie-banner {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3sease-in-out;
    position: fixed;
    bottom: 24px;
    left: 49.5%;
    transform: translateX(-50%);
    width: 84%;
    /* max-width: 900px; */
    background: white;
    color: #212529;
    padding: 20px;
    font-family: 'Axiforma', sans-serif;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: opacity 0.3sease-in-out;
}
}

/* Full-width Dropdown */
.dropdown-menu.wide-dropdown {
    width: 100%;
    left: 0;
    top: 100%;
    display: flex;
    background: #fff;
    padding: 20px 0px;
    border-radius: 0;
    z-index: 999;
    border-top: 0.1px solid #2a3b51;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    
}

.dropdown-left, .dropdown-right {
    flex: 1;
}

.dropdown-left h3 {
    color: #2a3b51;
    font-size: 2.5rem;
    margin: 0;
}

.dropdown-links {
    margin: 30px 0px 24px 0px;
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 70px;
}


.dropdown-links a {
    position: relative; /* ✨ Make underline position relative to the link */
    display: flex;
    align-items: center;
    gap: 0px;
    color: #212529;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}


.dropdown-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2a3b51; /* underline color */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.dropdown-links a:hover::after {
    transform: scaleX(1);
}

.dropdown-links a i {
    color: #ffffff;
    font-size: 1rem;
}

.dropdown-links a:hover {
    color: #86308B;
}

.dropdown-left{
    display: flex;
        justify-content: center;
        align-items: center;
        border-right: 1px solid #2a3b51;
}

.dropdown-right{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px 0px;
}

header.active-dropdown {
    background-color: #fff !important;
    backdrop-filter: none !important;
}

.grayscale {
    filter: grayscale(100%);
}

.invert {
    filter: invert(100%);
}

.high-contrast {
    background-color: #212529 !important;
    color: yellow !important;
}

#accessibility-toolbar {
    position: fixed;
    top: 50px;
    right: 20px;
    background: white;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    z-index: 9999;
}

#accessibility-toolbar button {
    display: block;
    margin: 5px 0;
    width: 100%;
}























/* Warning Strip */
.warning-strip {
    background: #2a3b51;
        display: flex;
        height: auto;
        color: white;
        text-align: center;
        padding: 1px 8px;
        font-size: 14px;
        position: static;
        width: calc(100% - 16px);
        justify-content: flex-end;
}

#warning-message{
    margin-top: 4px;
    margin-bottom: 1px;
}

/* Link Styling */
.warning-strip a {
    color: #fff;
    text-decoration: none;
}

#contact-info{
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-right: 50px;
}




/* Hero Section */

body {
    font-family: 'montserrat', sans-serif; /* Use the exact name from @font-face */
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}


.container {
    width: 85%;
    display: flex;
    margin: 0 auto;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
    padding: 90px 90px;
    max-width: 1200px;
}

.container button{
font-size: 16px;
    font-family: 'Montserrat';
    border-radius: 5px;
    border: none;
    padding: 10px;
    font-weight: 600;
    background: white;
    color: #2a3b51;
}

#nav-button{
    font-size: 16px;
    font-family: 'Montserrat';
    border-radius: 5px;
    border: none;
    padding: 10px;
    font-weight: 600;
    background: #2a3b51;
    color: white;
}
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(images/roofImage.webp) center / cover no-repeat;
    color: white;
    text-align: center;
    padding: 150px 20px 50px 20px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 70px;
    max-width: 600px;
}

.hero p {
    margin-top: -20px;
    margin-bottom: 32px;
    font-size: 1.2rem;
    font-family: 'montserrat';
}

/* Header & Navigation */
header {
    background: #fff;
    color: white;
    padding: 2px 0;
    position: fixed;
    width: 100%;
    margin-top: 0;
    z-index: 1000;
}

header.scrolled {
    background-color: #fff;
    transition: background-color 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

header.scrolled .nav-links a {
    color: #2a3b51; /* Pink text */
}

header.scrolled .dropdown-links a {
    color: #2a3b51 !important; /* Pink text */
}

header.scrolled .nav-links a:hover {
    color: #2a3b51 !important; /* Darker purple or your chosen hover */
}

header.active-dropdown .nav-links a {
    color: #2a3b51 !important;
}




header .navContainer {
    display: flex;
    color: white;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 90%;
}

.logo-wrapper{
    width: 13%;

}

.logo {
    width: 180px;
    margin: 15px 0px 15px -11px;
}

.logo-cca-footer {
    width: 70px;
    margin: 10px 0px 10px -11px;
}


.logo-wrapper2{
    width: 8%;

}

.nav-wrapper{
    display: flex;
    justify-content: center;
}
nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    margin-top: 18px;
    padding: 0;
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    font-size: 1rem;
    color: #2a3b51;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2a3b51; /* underline color */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-links a:hover {
    color: #2a3b51;
}

.hero2 {
  padding: 60px 20px;
  background-color: #ffffff;
}

.hero2 .container {
  display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 100px;
    padding: 0;
}

.hero2 .text {
  flex: 1;
  min-width: 300px;
  max-width: 486px;
}

.hero2 .text h5 {
  color: #003366;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero2 .text h2 {
  color: #002366;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero2 .text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.hero2 .image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero2 .image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}


.coating-grid {
  background-color: #f3f8ff;
  padding: 60px 20px;
}

.coating-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.coating-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.coating-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.coating-text h2 {
  color: #003366;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 15px;
}

.coating-text p {
  color: #063d74;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.coating-text button {
  background-color: #003366;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: montserrat;
}

.coating-text button:hover {
  background-color: #002244;
}

.gallery-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-container img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.gallery-header {
     text-align: left;
    max-width: 1200px;
    margin: 0 auto 15px;
}

.gallery-btn {
  background-color: transparent;
  color: #2a3b51;
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: montserrat;
}

.walls-moreInfo {
  display: inline-block;
  padding: 10px 20px;
  background-color: #003366;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.walls-moreInfo:hover {
  background-color: #062d5e;
}


.roofs-moreInfo {
  display: inline-block;
  padding: 10px 20px;
  background-color: #003366;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.walls-moreInfo:hover {
  background-color: #062d5e;
}



/* Footer Styling */
.footer {
    background: #2a3b51;
    color: #fff;
    padding: 40px 20px;
    font-size: 0.9rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column{
    margin-left: 50px;
}

/* Footer Column Styling */
.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column p,
.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-column a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff; /* underline color */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.footer-column a:hover::after {
    transform: scaleX(1);
}


/* Contact Info Icons */
.footer-column p i {
    margin-right: 8px;
    color: #2a3b51;
}

.footer-column-contact{
    margin-left: -22px;
}

/* Footer Column Styling */
.footer-column-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column-contact p,
.footer-column-contact ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column-contact ul li {
    margin-bottom: 8px;
}

.footer-column-contact ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-column-contact ul li a:hover {
    color: #2a3b51;
}

/* Contact Info Icons */
.footer-column-contact p i {
    margin-right: 8px;
    color: #fff;
}

/* Bottom Footer Section */
.footer-bottom {
    text-align: center;
    justify-content: center;
    gap: 15px;
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
  background-color: white;
  padding: 60px 20px;
  gap: 100px;
}

.contact-container {
  max-width: 600px
}

.contact-container h2 {
  text-align: center;
  font-size: 28px;
  color: #2a3b51;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #2a3b51;
}

label span {
  color: red;
}

textarea {
  width: 97%;
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  border-radius: 10px;
  color: #2a3b51;
  resize: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

input{
    width: 94%;
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  border-radius: 10px;
}

select{
    width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  border-radius: 10px;
}

textarea {
  resize: none;
}

.form-button {
  background-color: #2a3b51;
  width: 100%;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: montserrat;
}

.form-button:hover {
  background-color: #1d2838;
}

/***********************************
************************************
************ROOF COATINGS***********
************************************
***********************************/


.hero-roof {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(images/roof2.webp) center / cover no-repeat;
    color: white;
    text-align: center;
    padding: 150px 20px 50px 20px;
}

.hero-roof h2 {
    font-size: 4rem;
    line-height: 70px;
    max-width: 600px;
}

.hero-roof p {
    margin-top: -20px;
    margin-bottom: 32px;
    font-size: 1.2rem;
    font-family: 'montserrat';
}

.container-roof {
        width: 85%;
    display: flex;
    margin: 43px auto 0;
    align-items: center;
    flex-direction: column;
    text-align: left;
    padding: 90px 90px;
    max-width: 1200px;
}

.hero2-roof .container {
    display: flex
;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 25px auto 0;
    gap: 30px;
    padding: 0;
}


.hero2-roof {
  padding: 30px 20px;
  background-color: #ffffff;
}


.hero2-roof .text {
  flex: 1;
  min-width: 300px;
}

.hero2-roof .text h5 {
  color: #003366;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero2-roof .text h2 {
  color: #002366;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero2-roof .text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.hero2-roof .image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero2-roof .image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.hover-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.hover-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.hover-image:hover img {
  transform: scale(1.03);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* transparent black overlay */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hover-image:hover .overlay {
  opacity: 1;
}


.colour-options {
  padding: 60px 20px;
  background-color: white;
  text-align: center;
}

.colour-options .container{
     width: 85%;
    display: flex;
    margin: 0 auto;
    align-items: center;
    flex-direction: column;
    text-align: left;
    padding: 0;
    max-width: 1200px;
}

.colour-options h2 {
  font-size: 28px;
  color: #003366;
  margin-bottom: 30px;
}

.colour-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.colour-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.colour-swatch .circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #ccc;
  margin-bottom: 10px;
}

.colour-swatch p {
  margin: 0;
  font-weight: 600;
  color: #333;
}

/***********************************
************************************
************WALL COATINGS***********
************************************
***********************************/


.hero-wall {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(images/wallCoating2.webp) center / cover no-repeat;
    color: white;
    text-align: center;
    padding: 150px 20px 50px 20px;
}

.hero-wall h2 {
    font-size: 4rem;
    line-height: 70px;
    max-width: 600px;
}

.hero-wall p {
    margin-top: -20px;
    margin-bottom: 32px;
    font-size: 1.2rem;
    font-family: 'montserrat';
}

.container-wall {
        width: 85%;
    display: flex;
    margin: 43px auto 0;
    align-items: center;
    flex-direction: column;
    text-align: left;
    padding: 90px 90px;
    max-width: 1200px;
}

.hero2-wall .container {
    display: flex
;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 25px auto 0;
    gap: 30px;
    padding: 0;
}


.hero2-wall {
  padding: 30px 20px;
  background-color: #ffffff;
}


.hero2-wall .text {
  flex: 1;
  min-width: 300px;
}

.hero2-wall .text h5 {
  color: #003366;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero2-wall .text h2 {
  color: #002366;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero2-wall .text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.hero2-wall .image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero2-wall .image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}


/***********************************
************************************
************WALL COATINGS***********
************************************
***********************************/


.hero-gallery {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(images/photos/image33.jpeg) center / cover no-repeat;
    color: white;
    text-align: center;
    padding: 150px 20px 50px 20px;
}

.hero-gallery h2 {
    font-size: 4rem;
    line-height: 70px;
    max-width: 600px;
}

.hero-gallery p {
    margin-top: -20px;
    margin-bottom: 32px;
    font-size: 1.2rem;
    font-family: 'montserrat';
}

.container-gallery {
        width: 85%;
    display: flex;
    margin: 43px auto 0;
    align-items: center;
    flex-direction: column;
    text-align: left;
    padding: 90px 90px;
    max-width: 1200px;
}

.hero2-gallery .container {
    display: flex
;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 25px auto 0;
    gap: 30px;
    padding: 0;
}


.hero2-gallery {
  padding: 30px 20px;
  background-color: #ffffff;
}


.hero2-gallery .text {
  flex: 1;
  min-width: 300px;
}

.hero2-gallery .text h5 {
  color: #003366;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero2-gallery .text h2 {
  color: #002366;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero2-gallery .text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.hero2-gallery .image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero2-gallery .image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .hover-overlay {
  opacity: 1;
}

.gallery-title{
    text-align: center;
    font-size: 3rem;
    padding: 0;
    margin-bottom: -30px;
    color: #2a3b51;

}

.hero-btn {
  padding: 12px 24px;
  background-color: #2a3b51;
  color: white !important;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #2a3b51;
}

.privacy-container {
      max-width: 900px;
    margin: 0px auto;
    background: white;
    padding: 200px 40px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .privacy-container h1 {
      font-size: 32px;
      margin-bottom: 20px;
      color: #003366;
    }

    .privacy-container h2 {
      font-size: 20px;
      margin-top: 30px;
      color: #003366;
    }

    .privacy-container p {
      line-height: 1.6;
      color: #333;
    }

    .privacy-container ul {
      margin-left: 20px;
    }

    .privacy-container a {
      color: #003366;
      text-decoration: underline;
    }

    .privacy-container small {
      display: block;
      margin-top: 40px;
      color: #777;
    }


    .testimonials {
  padding: 80px 20px;
  background-color: #f3f8ff;
  text-align: center;
}

.testimonials .section-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: #999;
  text-transform: uppercase;
}

.testimonials .section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #111;
  font-weight: bold;
}

.testimonial-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.user-info img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #eee;
}

.user-info h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.user-info small {
  color: #777;
}

.testimonial-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
}

.stars {
  color: #ffc107;
  font-size: 18px;
}

.testimonials .container{
    .container {
    width: 85%;
    display: flex;
    margin: 0 auto;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
    padding: 90px 90px;
    max-width: 1200px;
}
}

/* Mobile styling */
@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonials .section-title {
    font-size: 26px;
  }
}



/* ✅ Mobile Styles */
@media (max-width: 768px) {

    .hero2 {
    padding: 60px 0px;
    background-color: #ffffff;
}

    .gallery-title{
        font-size: 2rem;
    }

    .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    gap: 20px;
}

.gallery-section {
    padding: 60px 20px 50px;
    background-color: #ffffff;
}


    .two-column {
    grid-template-columns: 1fr;
  }

    .contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 60px 20px;
    gap: 20px;
    flex-direction: column;
}

.contact-container {
    width: 100%;
}

.contact-info{
    text-align: center;
    color: #2a3b51;
}


textarea {
  width: 93%;
}

input{
    width: 93%;
}


.hero2 .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    padding: 0;
}

.container {
    width: 85%;
    display: flex;
    margin: 0 auto;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
    padding: 90px 0px;
    max-width: 1200px;
}

#contact-info {
    font-size: 11px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-right: 50px;
}
    
  .coating-grid-container {
    grid-template-columns: 1fr;
  }

  .coating-text,
  .coating-image {
    text-align: center;
  }

  .coating-text h2 {
    font-size: 22px;
  }

  .coating-text p {
    font-size: 15px;
  }

  .coating-text button {
    width: 100%;
    max-width: 300px;
    margin: 10px auto 0;
    font-family: montserrat;
  }

  .coating-image img{
    height: auto !important;
  }

  .footer-container {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }

   .container-roof{
    padding: 90px 0px !important;
   } 

      .container-wall{
    padding: 90px 0px !important;
   } 

     .container-gallery{
    padding: 90px 0px !important;
   } 

   .colour-options h2 {
    text-align: center;
}

.gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.gallery-section .container{
    width: 100% !important;
}


}


html {
  scroll-behavior: smooth;
}
