:root {
    /* New Color Variables Mapped to Old Names for Code Consistency */
    --dark-magenta: #9a1875;
    --light-magenta: #dd32ad;
    --azure-blue: #5d9eda;
    --blue: #345e91;
    
    /* Additional general colors if needed, based on common patterns */
    --dark-blue: var(--blue); /* Using --blue as the body/dark-blue text color */
    --secondary-blue: var(--azure-blue); /* Using --azure-blue for secondary elements */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: var(--dark-blue);
    line-height: 1.6;
    /*width: fit-content;*/
}
.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--blue); /* Used var(--blue) */
    color: white;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    left: 0;
}
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
}
.nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}
.nav a:hover {
    color: #f0a500;
}
/* hero styling */
.hero-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 100px 20px;
    gap: 40px;
    flex-wrap: wrap;
}

/* image */
.hero-gallery {
    width: 45%;
   
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-main-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
}

.hero-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.hero-thumb {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    border: 2px solid #ddd;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s;
}

.hero-thumb:hover {
    border-color: var(--dark-magenta); /* Used var(--dark-magenta) */
}

.full-btn {
    margin-top: 15px;
    width: 100%;
}

/* content styling */
.hero-content {
    width: 50%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-heading {
    font-size: 34px;
    font-weight: 800;
    color: var(--dark-magenta); /* Used var(--dark-magenta) */
    margin-bottom: 10px;
}

.hero-subtext {
    font-size: 18px;
    color: #444;
    margin-bottom: 14px;
}

.hero-info {
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.net-hero-points {
    list-style: none;
    margin-bottom: 25px;
}
.net-hero-points li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}
.net-hero-points li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary-blue); /* Used var(--secondary-blue) - defined as --azure-blue */
    position: absolute;
    left: 0;
}

/* button */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.hero-btn-fill {
    background: linear-gradient(90deg, var(--dark-magenta), var(--light-magenta)); /* Used var(--dark-magenta), var(--light-magenta) */
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
}

.hero-btn-outline {
    background: var(--blue); /* Used var(--blue) */
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.hero-trust {
    margin-top: 5px;
    color: #777;
    font-size: 15px;
}
.menu-toggle {
    display: none; 
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff; 
}

@media (max-width: 480px) {
    .nav {
        display: none; 
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px; 
        right: 0;
        width: 200px;
        padding: 15px;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
  
    .nav a {
        color: #000;
        margin-left: 0;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }
    .nav a:last-child {
        border-bottom: none;
    }
    
    .menu-toggle {
        display: block;
    }
  
    .nav.show {
        display: flex;
    }
}
/* beneifts styling */
.benefits-section {
    padding: 60px 20px;
    text-align: center;
    background: #f9f3fc;
}

.benefits-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-magenta); /* Used var(--dark-magenta) */
    margin-bottom: 10px;
}

.benefits-subtext {
    font-size: 17px;
    color: #555;
    max-width: 680px;
    margin: 0 auto 40px auto;
}
.benefit-icon {
    font-size: 38px;
    margin-bottom: 10px;
    color: var(--dark-magenta); /* Used var(--dark-magenta) */
    display: block;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.benefit-card {
    padding: 25px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 0 10px rgba(0,0,0,0.07);
    transition: 0.3s;
    border: 1px solid #eee;
    border-bottom: 4px solid var(--light-magenta); /* Used var(--light-magenta) */
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 18px rgba(0,0,0,0.12);
    border-color: var(--light-magenta); /* Used var(--light-magenta) */
}

.benefit-icon {
    font-size: 38px;
    margin-bottom: 10px;
    color: var(--blue); /* Used var(--blue) */
}

.benefit-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--light-magenta); /* Used var(--light-magenta) */
    margin-bottom: 8px;
}

.benefit-text {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

/*services*/
.services-mix-section {
    padding: 80px 20px;
    background-color: #ffffff; 
    text-align: center;
}
.services-mix-title {
    font-size: 2.5em;
    color: var(--blue); /* Changed from fixed #004a99 to var(--blue) */
    margin-bottom: 10px;
    font-weight: 700;
}
.services-mix-subtext {
    font-size: 1.15em;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
}
.services-mix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.services-mix-card {
    background-color: #f4f4f4; 
    border-radius: 12px;
    overflow: hidden; 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 4px solid transparent;
}
.services-mix-card:hover {
    transform: translateY(-8px); 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-bottom-color: var(--blue); /* Used var(--blue) */
}
.services-mix-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.services-mix-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.5s ease;
}
.services-mix-card:hover .services-mix-img img {
    transform: scale(1.05); 
}
.services-mix-icon {
    position: absolute;
    top: 170px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background-color: var(--dark-magenta); /* Changed from fixed #007bff to var(--dark-magenta) */
    color: white;
    width: 60px;
    height: 60px;
    line-height: 60px; 
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 4px solid #ffffff; 
    font-size: 1.5em;
}
.services-mix-heading {
    font-size: 1.4em;
    color: #333;
    margin-top: 50px; 
    margin-bottom: 10px;
    padding: 0 15px;
}
.services-mix-text {
    font-size: 0.95em;
    color: #777;
    padding: 0 20px;
    line-height: 1.5;
}

/*testimonial*/

.testi-section {
    padding: 80px 20px;
    background-color: #f9f3fc;; 
    text-align: center;
}

.testi-title {
    font-size: 2.5em;
    color: var(--dark-magenta); /* Used var(--dark-magenta) */
    margin-bottom: 10px;
    font-weight: 700;
}

.testi-subtext {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 50px;
}


.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.testi-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    display: flex; 
    flex-direction: column;
    justify-content: space-between; 
    min-height: 250px; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    border-top: 4px solid var(--light-magenta); /* Used var(--light-magenta) */
}

.testi-card:hover {
    transform: translateY(-5px); 
    border-color: var(--light-magenta); /* Used var(--light-magenta) */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.testi-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(130deg, var(--azure-blue), var(--blue)); /* Used var(--azure-blue), var(--blue) */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.testi-icon i {
    font-size: 26px;
    color: #fff;
}

.testi-text {
    font-size: 1.1em;
    font-style: italic;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

.testi-name {
    font-size: 1em;
    font-weight: 700;
    color: var(--dark-magenta); /* Used var(--dark-magenta) */
    margin-top: auto; 
    text-align: right;
    border-top: 1px solid #f0f0f0; 
    padding-top: 10px;
    text-align: center;
}
/* popup styling */
.popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.popup-box {
    width: 850px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    animation: slideUp 0.35s ease;
}
.popup-box1{
    background: #fff;
    border-radius: 18px;
    overflow: hidden;

    animation: scaleIn .35s 
ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
@keyframes slideUp {
    from {transform: translateY(40px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

.popup-image {
    width: 60%;
}
.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-content {
    width: 55%;
    padding: 30px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--dark-magenta); /* Used var(--dark-magenta) */
    border: none;
    color: #fff;
    font-size: 25px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}
.popup-content h2 {
    color: var(--dark-magenta); /* Used var(--dark-magenta) */
    font-size: 26px;
    margin-bottom: 8px;
}
.popup-form input,
.popup-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}
.popup-formm{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}
.popup-btn {
    width: 100%;
    background: linear-gradient(90deg, var(--dark-magenta), var(--light-magenta)); /* Used var(--dark-magenta), var(--light-magenta) */
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 17px;
    cursor: pointer;
    font-weight: 700;
}


/*footer*/

.footer-area {
    background-color: #1c1c1c;
    color: #fff;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    top: 0;
    left: 0;
}
.footer-area .footer-up {
    padding-top: 20px;
}
.footer-area h6 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #DFB163;;
}
.footer-area .logo img {
    max-width: 180px;
    margin-bottom: 15px;
}
.social-area svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-right: 10px;
}
.social-area a {
    color: #fff;
    display: inline-block;
}
.la-clock:before {
    content: "\f017";
}
.footer-area .social-area a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}
.footer-area .social-area a:hover {
    color: #f4b400;
}
.footer-area ul {
    list-style: none;
    padding: 0;
}
.footer-area ul li a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}
.footer-area ul li a:hover {
    color: #f4b400;
}
.footer-area .contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
}
.footer-area .contact-info i {
    margin-right: 8px;
    color: #f4b400;
}
.footer-area .subscribe-form input[type="email"] {
    width: 100%;
    padding: 8px;
    border: none;
    margin-bottom: 10px;
}
.footer-area .subscribe-form .main-btn {
    padding: 8px 16px;
    background-color: #f4b400;
    color: #000;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.footer-area .subscribe-form .main-btn:hover {
    background-color: #e0a800;
}
.footer-area .container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-area .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-area .col-lg-3,
.footer-area .col-md-6,
.footer-area .col-sm-12 {
    flex: 1 1 220px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}



/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-wrapper {
        flex-direction: column;
    }
    .hero-gallery,
    .hero-content {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .benefits-grid, .services-mix-grid, .testi-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 900px){
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .testi-grid {
        grid-template-columns: 1fr;
    }
}
@media(max-width: 768px) {
    .popup-box { flex-direction: column; width: 92%; }
    .popup-image { width: 100%; height: 200px; }
    .popup-content { width: 100%; }
}
@media (min-width: 1024px) {
    .popup-box1 {
        
        max-width: 1200px; 
        width: 90%;
        margin: 40px auto; 
        padding: 20px;
    }
    
    .popup-box1 {
        display: flex;
        flex-direction: row; 
        gap: 20px;
    }

    .popup-image {
        flex: 1;
        max-width: 40%;
    }

    .popup-content {
        flex: 1.5; 
        max-width: 60%;
    }
    
    .popup-image img {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 480px) {
    .nav {
        display: none; 
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 15px;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
.nav a{
    color: #000;
}
    .menu-toggle {
        display: block; 
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        position: relative;
    }

    .nav.show {
        display: flex; 
    }
}


@media (max-width: 480px) {
    .hero-thumbs img:nth-child(n+4) {
        display: none;
    }
}

@media (max-width: 768px) {
    .net-hero-points li::before { 
        content: "\f00c";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: var(--secondary-blue); /* Used var(--secondary-blue) */
        position: relative;
        left: -10px;
    }
    .hero-subtext{
        text-align: center;
    }
    .hero-info{
        text-align: center;
    }
    .net-hero-points li{
        text-align: center;
    }
    .hero-trust{
        text-align: center;
    }
}
@media (max-width: 900px){
.hero-buttons {
    display: flex;
    gap: 18px;
    margin: 20px 0;
    justify-content: center;
}
}
@media (min-width:150px) and (max-width: 479px){
.hero-wrapper{
    margin-top:0px !important;
    padding:45px 20px !important;
}

}
@media (min-width:480px) and (max-width: 769px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 60px 15px;
        gap: 25px;
        margin-top: 80px !important;
    }
}
@media (max-width: 768px) {
   
    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero-heading {
        font-size: 26px;
        line-height: 1.3;
        text-align: center;
    }

    .hero-subtext,
    .hero-info,
    .net-hero-points li,
    .hero-trust {
        text-align: center !important;
    }

    .net-hero-points {
        padding-left: 0;
    }

    .net-hero-points li {
        padding-left: 28px;
        margin-bottom: 10px;
        font-size: 15px;
        position: relative;
    }

    .net-hero-points li::before {
        content: "\f00c";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: var(--light-magenta); /* Used var(--light-magenta) */
        position: relative;
        left: -15px;
        top: 2px;
        font-size: 15px;
    }

    .hero-buttons {
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 12px !important;
        margin-top: 15px;
    }

    .hero-buttons a,
    .hero-buttons button {
        width: 80%;
    }

    .hero-gallery {
        width: 100%;
        text-align: center;
    }

    .hero-main-img img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        border-radius: 10px;
    }

    .hero-thumbs {
        justify-content: center;
        gap: 10px;
    }

    .hero-thumb {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        object-fit: cover;
    }
}
.popup-formm .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.popup-formm .form-row input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popup-formm select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-row.full-width {
    flex-direction: column;
}
@media(max-width:767px){
    .popup-content h2 {
        font-size:20px;
    }
    .popup-content p{
        font-size:12px;
    }
    .popup-formm .form-row{
        display:block;
        margin-bottom:0 !important;
    }
    .popup-formm{
        gap:0 !important;
        margin-top:20px;
    }
    .popup-btn , .popup-content{
        padding:10px;
        font-size: 13px;
    }
}
@media (max-width: 768px) {
    .popup-box {
        flex-direction: column;
    }

    .popup-images {
        height: 200px;
    }
     .popup-images img{
    width: 100%;
    height: 100%;
    object-fit: cover;
     }
     
    .popup-content {
        padding: 20px;
    }
   .popup-close {
        position: absolute;
        /* top: 12px; */
        right: 5px;
        /* background: var(--primary-accent); */
        /* border: none; */
        font-size: 25px;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        color: #fff;
        cursor: pointer;
        display: block;
    }
}
