* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Alexandria', sans-serif;
    font-size: 0.8rem;
    font-weight: 100;
}

@font-face {
    font-family: 'Dafont';
    src: url('font-family/Pacifico.ttf') format('opentype');
}
@font-face {
    font-family: 'Dafont1';
    src: url('font-family/Idealy2.otf') format('opentype');
}

@font-face {
    font-family: 'Dafont2';
    src: url('font-family/ValentineSoul.ttf') format('truetype');
}

@font-face {
    font-family: 'Dafont3';
    src: url('font-family/Coffee Soda.otf') format('opentype');
}













/* ------------------------------------------ Basic right & left autoscroll styling --------------------------- */
.hidden-left {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 1s;
  }
  
  .hidden-right {
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s;
  }
  
  .show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
  
  .hidden-left:nth-child(2){
    transition-delay: 200ms;
  }
  .hidden-left:nth-child(3){
    transition-delay: 500ms;
  }
  .hidden-left:nth-child(4){
    transition-delay: 700ms;
  }









/* ------------------------------------------ underline-effect  --------------------------- */
.underline-effect {
    position: relative;
    text-decoration: none;
    padding-bottom: 4px;
    font-size: 1rem;
    font-weight: bold;
}

/* Pseudo-element for the underline */
.underline-effect::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    border-radius: 8px;
    background-color: #007bff; /* Blue color for the underline */
    transition: width 0.4s ease, left 0.4s ease;
}

/* Hover effect expanding the line outward from the center */
.underline-effect:hover::after,
.underline-effect.active::after {
    width: 100%;
    left: 0;
}













/* ------------------------------------------ pop-up-text --------------------------- */
/* Default transition */
.pop-up-text {
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.pop-up-text.visible {
    opacity: 1;
    transform: translateY(0);
}


.pop-up-text:nth-child(2){
    transition-delay: 200ms;
  }
  .pop-up-text:nth-child(3){
    transition-delay: 600ms;
  }
  .pop-up-text:nth-child(4){
    transition-delay: 700ms;
  }

/* Disable transition on small screens */
@media (max-width: 768px) {
    .pop-up-text {
        transition: none;
        opacity: 1;
        transform: translateY(0); /* Reset position */
    }
}














/* ------------------------------------------  header --------------------------- */
.header {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('images/cleaning3.webp') no-repeat center center/cover;
}
.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.571);
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(0, 0, 0, 0.571);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
.navbar img {
    height: 40px;
}
.navbar ul {
    list-style: none;
    display: flex;
}
.navbar ul li {
    margin: 12px;
}
.navbar ul li a {
    color: #ffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}
.navbar ul li a:hover{
    transform: scale(1.05);
}
.hero-content {
    position: absolute;
    top: 40%;
    left: 6%;
    transform: translateY(-50%);
    color: #ffff;
    max-width: 70%;
    z-index: 1;
}
.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}
.hero-content p {
    width: 50%;
}
.ptxt{
    font-family: Dafont1;
    font-size: 1.2rem;
    font-weight: 400;
}
.menu-toggle{
    display: none;
}
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        display: none;
        position: absolute;
        top: 40px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.941);
        backdrop-filter: blur(10px);
        text-align: center;
        padding: 10px 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; 
    }
    .navbar ul.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
    .menu-toggle {
        display: block;
        cursor: pointer;
        color: white;
        font-size: 1.5rem;
    }
    .hero-content {
        max-width: 80%;
    }
    .hero-content h2 {
        word-wrap: break-word;
        font-size: 2.3rem;
    }
    .hero-content p {
        width: auto;
    }
}

























/* ------------------------------------------  about-section --------------------------- */
.about-section { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    overflow: hidden;
    padding: 50px; 
    gap: 40px; 
    max-width: 1200px;
    margin: auto;
     }
.about-img {
    position: relative;
    width: 45%; 
    border-radius: 10px;
    overflow: hidden; 
    }
.about-img img { 
    width: 100%;
    border-radius: 10px;
     }
.video-overlay { 
        position: relative;
        bottom: 10%;
        left: 10%; 
        bottom: 62px;
        background: #007bff;
        padding: 15px;
        color: white;
        border-radius: 8px;
        max-width: 80%; 
        transition: transform 0.3s ease-in-out;
    }
    .video-overlay:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
.video-overlay button { 
        background: white;
        color: #007bff;
        padding: 8px 12px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        margin-bottom: 12px;
        transition: transform 0.3s ease-in-out;
    }
.video-overlay button:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
.about-text { 
    width: 50%; 
}
.about-text h2 { 
    font-size: 28px;
    color: #222; 
    margin-bottom: 15px;
     }
.about-text p {
    color: #555;
    margin-bottom: 20px;
     }
.about-text .abtpatg{
    font-size: 0.9rem;
    font-weight: 700;
    color: #007bff;
}
.about-list {
    list-style: none; 
    padding: 0; 
}
.about-list li {
    margin-bottom: 10px;
    color: #555; 
    }
.about-signature { 
    display: flex;
    align-items: center; 
    margin-top: 20px;
     }
.about-signature img { 
    width: 70px;
    height: 70px; 
    border-radius: 50%; 
    object-fit: cover; 
    margin-right: 15px;
 }
.about-signature div { 
    font-size: 14px; 
    color: #333;
 }
 .ptext{
    font-family: Dafont2;
    font-size: 2rem;
 }

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        padding: 30px;
         }
    .about-img, .about-text {
        width: 100%; 
        }
    .video-overlay { 
        bottom: 5%; 
        left: 5%; 
        max-width: 90%;
    }
}












/* ------------------------------------------  services-section  --------------------------- */
.hero1 {
    padding: 50px 20px;
    background-color: #007bff;
}

.hero2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10%;
    color: #ffff;
}

/* Stack elements on small screens */
@media (max-width: 768px) {
    .hero2 {
        flex-direction: column;
        text-align: center;
        padding: 30px 5%;
    }
    .left-content, .right-content {
        flex: none;
        width: 100%;
    }
    .buttons {
        justify-content: center;
    }
}

.left-content {
    flex: 1;
}

.right-content {
    flex: 1;
    text-align: left;
}

.highlight {
    color: yellow;
    font-family: 'Dafont1', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
}

.left-content h1 {
    font-size: 2rem;
    font-weight: 700;
}

/* Make text and buttons center-aligned on small screens */
@media (max-width: 768px) {
    .right-content p {
        text-align: center;
    }
}

.right-content p {
    max-width: 600px;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    gap: 10px;
}

/* Ensure buttons wrap on smaller screens */
@media (max-width: 480px) {
    .buttons {
        flex-direction: column;
        align-items: center;
    }
}

.primary {
    background: white;
    color: #007bff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}
.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.secondary {
    background: none;
    color: #ffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}
.secondary:hover {
    transform: scale(1.05);
}

/* Cards Responsive */
.cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr ;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 0 5%;
}

.card {
    padding: 20px;
    border: #ffff solid 3px;
    border-radius: 10px;
    width: 220px;
    text-align: center;
    color: #ffff;
    transition: transform 0.3s ease-in-out;
}
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Stack cards on small screens */
@media (max-width: 768px) {
    .cards-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 90%;
        max-width: 300px;
    }
}

.highlight-card {
    background: #ffff;
    color: #000;
}

.card h3 {
    text-align: left;
}

.textp22 {
    color: #007bff;
    transition: transform 0.3s ease-in-out;
}
.textp22:hover {
    transform: scale(1.05);
}

.textp23 {
    color: #ffffff;
    transition: transform 0.3s ease-in-out;
}
.textp23:hover {
    transform: scale(1.05);
}

.card a {
    display: block;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;
    text-align: left;
}

.card p {
    text-align: left;
    margin: 1rem 0 2rem 0;
}

.cleaner12 {
    filter: brightness(0) invert(1);
}

.card img {
    width: 50px;
    margin: 0 10rem 10px 0;
}

/* Center images and text in cards for mobile */
@media (max-width: 768px) {
    .card img {
        display: block;
        margin: 0 auto 10px auto;
    }
    .card h3, .card p, .card a {
        text-align: center;
    }
}


















/* ------------------------------------------  news-section --------------------------- */
/* .news-section {
    text-align: center;
    margin: 5rem 0 5rem 0;
}
.news-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.news-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.card3 {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease-in-out;
}
.card3:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.card3 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card3-content {
    padding: 15px;
    text-align: left;
}
.tag {
    display: inline-block;
    background: #007bff;
    color: #ffff;
    padding: 10px 10px 10px 10px;
    border-radius: 3px;
    position: relative;
    bottom: 1.9rem;
    font-size: 0.8rem;
}
.date-author {
    font-size: 0.9rem;
    color: gray;
    margin: 10px 0;
}
.card3 h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    border-bottom: 3px solid transparent;
    display: inline-block;
    transition: border-color 0.3s ease-in-out;
}
.card3:hover h3 {
    border-bottom: 3px solid #007bff;
}
.card3 p {
    font-size: 0.9rem;
    color: gray;
    margin-bottom: 15px;
}
.read-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55%;
    margin: 0 0 1rem 1.5rem;
    border-radius: 5px;
    padding: 7px;
    border: 2px solid #007bff;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.card3:hover .read-more {
    background: #007bff;
}

.read-more a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: color 0.3s ease-in-out;
}


.read-more a::before,
.read-more a::after {
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
    margin: 0 5px;
    transition: opacity 0.3s ease-in-out;
}


.read-more a::before {
    content: "\f35a"; 
    color: #007bff;
}

.read-more a::after {
    content: "\f35a";
    color: #ffff;
    opacity: 0; 
}


.card3:hover .read-more a {
    color: #ffff;
}

.card3:hover .read-more a::before {
    opacity: 0; 
}

.card3:hover .read-more a::after {
    opacity: 1; 
} */





















/* ------------------------------------------  testimonial-container --------------------------- */

        .testimonials-header {
            text-align: center;
            margin-bottom: 40px;
            color: #007bff;
        }

        .testimonials-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
        }

        .testimonials-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .slider-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .slider {
            width: 100%;
            height: 350px;
            margin: auto;
            overflow: hidden;
            position: relative;
            mask-image: linear-gradient(
                to right,
                rgba(0, 0, 0, 0),
                rgba(0, 0, 0, 1) 10%,
                rgba(0, 0, 0, 1) 90%,
                rgba(0, 0, 0, 0)
            );
        }

        /* Pause animation for all items when hovering over the slider */
        .slider:hover .item {
            animation-play-state: paused;
        }

        .item {
            width: 320px;
            height: 280px;
            padding: 25px;
            border-radius: 16px;
            background-color: rgba(255, 255, 255, 0.95);
            color: #333;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            position: absolute;
            left: max(calc((320px + 50px) * 8), 100%);
            animation-name: scrollleft;
            animation-duration: 30s;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
            animation-play-state: running;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .item1 {
            animation-delay: calc(30s / 8 * (8 - 1) * -1);
        }

        .item2 {
            animation-delay: calc(30s / 8 * (8 - 2) * -1);
        }

        .item3 {
            animation-delay: calc(30s / 8 * (8 - 3) * -1);
        }

        .item4 {
            animation-delay: calc(30s / 8 * (8 - 4) * -1);
        }

        .item5 {
            animation-delay: calc(30s / 8 * (8 - 5) * -1);
        }

        .item6 {
            animation-delay: calc(30s / 8 * (8 - 6) * -1);
        }

        .item7 {
            animation-delay: calc(30s / 8 * (8 - 7) * -1);
        }

        .item8 {
            animation-delay: calc(30s / 8 * (8 - 8) * -1);
        }

        @keyframes scrollleft {
            to {
                left: -320px;
            }
        }

        .testimonial-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            margin-bottom: 15px;
        }

        .testimonial-header span {
            font-size: 1.1rem;
            font-weight: 700;
            color: #2d3748;
        }

        .testimonial-header img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #667eea;
        }

        .testimonial-content {
            text-align: left;
            font-size: 0.95rem;
            font-weight: 500;
            margin: 15px 0;
            color: #4a5568;
            line-height: 1.6;
            height: 120px;
            overflow-y: auto;
            padding-right: 5px;
        }

        .testimonial-content::-webkit-scrollbar {
            width: 4px;
        }

        .testimonial-content::-webkit-scrollbar-thumb {
            background: #cbd5e0;
            border-radius: 10px;
        }

        .testimonial-stars {
            text-align: left;
            font-size: 1rem;
            color: #ffc107;
            margin-top: 10px;
        }

        .testimonial-rating {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }

        .testimonial-date {
            font-size: 0.8rem;
            color: #718096;
        }

        .add-testimonial-btn {
            display: inline-block;
            margin-top: 40px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid white;
            padding: 14px 30px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            backdrop-filter: blur(10px);
        }

        .add-testimonial-btn:hover {
            background: white;
            color: #667eea;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .testimonials-header h1 {
                font-size: 2.2rem;
            }
            
            .slider {
                height: 300px;
            }
            
            .item {
                width: 280px;
                height: 250px;
                padding: 20px;
            }
            
            .testimonial-content {
                height: 100px;
                font-size: 0.9rem;
            }
        }






/*------------------------ scroll------2 -------------------- */
/* .slider2{
    width: 90%;
    max-width: 1536px;
    margin-inline: auto;
    position: relative;
    height: 160px;
    margin: auto;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 1) 10%,
        rgba(0, 0, 0, 1) 90%,
        rgba(0, 0, 0, 0)
    );
    
}
.items2 {
    width: 307px;
    height: 140px;
    padding: 12px;
    border-radius: 6px;
    background-color: #333;
    color: #ffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: min(calc((-60px + 40px) * 8), 100%);
    animation-name: scrollright; 
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    margin-right: 15rem;
}

.items1{
    animation-delay: calc(30s / 8 * (8 - 1) * -1);
}
.items2{
    animation-delay: calc(30s / 8 * (8 - 2) * -1);
}
.items3{
    animation-delay: calc(30s / 8 * (8 - 3) * -1);
}
.items4{
    animation-delay: calc(30s / 8 * (8 - 4) * -1);
}
.items5{
    animation-delay: calc(30s / 8 * (8 - 5) * -1);
}
.items6{
    animation-delay: calc(30s / 8 * (8 - 6) * -1);
}
.items7{
    animation-delay: calc(30s / 8 * (8 - 7) * -1);
}
.items8{
    animation-delay: calc(30s / 8 * (8 - 8) * -1);
}


@keyframes scrollright {
    to {
        left: 100%; 
    }
} */


















    /* ------------------------------------------  parallax-container --------------------------- */
    .parallax {
        background-image: url("images/cleaning9.webp");
        min-height: 444px;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        overflow: hidden;
    }

    .parallax-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 885px;
    gap: 20px;
    background: rgba(0, 0, 0, 0.694); /* Semi-transparent dark */
    backdrop-filter: blur(12px);     /* <-- Blur effect */
    -webkit-backdrop-filter: blur(12px); /* Safari support */
    padding: 20px;
    border-radius: 10px;
    margin: 6px 0 100px 0;
    overflow: hidden; /* Prevent background overflow artifacts */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Optional frosted glass edge */
    }


    .parallax-content .video-container,
    .parallax-content .text-container {
        flex: 1;
        max-width: 45%;
    }

    .parallax-content .video-container video {
        width: 100%;
        height: 100%;
        border-radius: 4px;
    }

.h2parallex{
    color: #00aaff;
    font-size: 2rem;
    font-weight: 800;
}


    .parallax-content .text-container {
        color: white;
        font-family: 'Josefin Sans', sans-serif;
        padding: 20px;
        font-size: 0.9rem;
        font-weight: 550;
    }

    @media (max-width: 768px) {
        .parallax-content {
        flex-direction: column;
        text-align: center;
        }
        .parallax-content .video-container, 
        .parallax-content .text-container {
        max-width: 100%;
        }
    }























/* ------------------------------------------  footer --------------------------- */
footer {
    background: linear-gradient(135deg, #1c3687 0%, #152a6b 100%);
    color: white;
    padding: 50px 0 20px; /* Changed to 0 on sides for full width */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px; /* Added padding to container instead of footer */
}

.footer-section {
    flex: 1;
    min-width: 200px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #00aaff, #4caf50);
    border-radius: 2px;
}

.footer-section p {
    color: #e0e0e0;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
    position: relative;
}

/* Enhanced Link Hover Effects */
.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 4px;
    padding-left: 15px;
}

.footer-section ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00aaff;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.footer-section ul li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    color: #4caf50;
    transform: scale(1.2);
}

/* Get Directions Link */
.footera {
    color: #00aaff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid #00aaff;
    border-radius: 25px;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footera:hover {
    background: #00aaff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 170, 255, 0.3);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #00aaff 0%, #0088cc 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    width: 100%;
    max-width: 200px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 170, 255, 0.3);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: #00aaff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 170, 255, 0.4);
}

.social-icons a:nth-child(2):hover {
    background: #1da1f2; /* Twitter blue */
}

.social-icons a:nth-child(3):hover {
    background: #0077b5; /* LinkedIn blue */
}

/* Footer Subscribe Section - FULL WIDTH */
.footer-subscribe {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #1c3687;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px; /* Increased padding for better spacing */
    margin: 50px 0 30px; /* Removed side margins for full width */
    width: 100%; /* Full width */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* Optional: Add a subtle pattern or decorative elements */
.footer-subscribe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 0 0 2px 2px;
}

.footer-subscribe .logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00aaff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subscribe-text {
    color: #1c3687;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    max-width: 600px;
}

.subscribe-text p {
    margin: 0;
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #e0e0e0;
    font-size: 0.9rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 20px 0;
}

.footer-bottom a {
    color: #00aaff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.footer-bottom a:hover {
    color: #ffffff;
    background: rgba(0, 170, 255, 0.2);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section ul li a {
        padding-left: 0;
        text-align: center;
    }
    
    .footer-section ul li a::before {
        display: none;
    }
    
    .footer-section ul li a:hover {
        padding-left: 0;
        transform: none;
    }
    
    .footer-subscribe {
        padding: 40px 15px;
        margin: 40px 0 20px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .cta-button {
        max-width: 100%;
    }
    
    .footer-bottom {
        padding: 20px 15px 0;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 0 15px;
    }
    
    .footer-subscribe .logo {
        font-size: 2rem;
    }
    
    .subscribe-text {
        font-size: 1rem;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .footer-subscribe {
        padding: 30px 15px;
        margin: 30px 0 20px;
    }
}