/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #a9a4a4;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    transition: background 0.3s ease;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

#navbar.solid {
    background: #000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    height: 55px; /* Adjust height as needed */
    width: auto;
    max-width: 150px; /* Prevent it from being too wide */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ee7459;
    zoom: 150% ;
    text-decoration: underline;
    transition: all 1s;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.5s;
}
.hamburger.active {
    transform: rotate(360deg);
    transition: all 2s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
#hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 50, 0.7), rgba(0, 0, 0, 0.8)); /* Dark blue/black gradient overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: #fff;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-content p1 {
    font-size: 1.4rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0.9;
}

.hero-content p2 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0.8;
}

.hero-buttons {
    margin-top: 10px ;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

#hero-3d {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 300px;
    height: 300px;
    transform: translateY(-50%);
}
.btn-primary {
    background: #ff8c00; /* Yellow/orange for primary */
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease-out;
}

.btn-primary:hover {
    background: #e67e00;
    transform: translateY(-2px) scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px) scale(1.05);
}
/* Enhanced Mobile-Friendly Styles */
@media (max-width: 768px) {
    body {
        font-size: 14px; /* Smaller base font for mobile */
    }

    .container {
        padding: 0 15px; /* Tighter padding */
    }

    /* Navbar */
    #navbar {
        padding: 15px;
    }

    .nav-links {
        position: fixed;
        right: -50vw;
        top: 0;
        flex-direction: column;
        background-color: #000;
        width: 50vw;
        height: 100vh;
        text-align: center;
        transition: 0.6s;
        padding: 80px 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        right: 0;
        transition: all 0.6s;
    }
    .hamburger {
        display: flex;
    }

    /* Hero Section */
    #hero {
        height: 70vh; /* Shorter for mobile */
    }

    .hero-content h1 {
        font-size: 1.2rem;
    }

    .hero-content p1 {
        font-size: 0.9rem;
    }
    .hero-content p2 {
        font-size: 0.85rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        margin-left: 30%;
        width: 40%;
        padding: 12px;
        font-size: 0.8rem;
    }
}

/* About Section */
#about {
    padding: 100px 0;
    background: #111;
}

#about h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    padding-bottom: 50px;
}

.container {
    display: flex;
    align-items: center;
    gap: 50px; /* Space between text and image */
}

.about-text {
    flex: 1;
    padding-right: 50px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 0.9rem;
    color: #ccc;
}

.about-text p:hover {
    font-size: 1rem;
    font-weight: bold;
    color: #ee7459;
    transition: all 0.6s;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    object-fit: cover;
    border: 2px solid #676161;
    border-radius: 10px;
}

.slides {
    display: flex;
    width: 555px;             /* number of images × 100 */
    height: 450px;
    animation: slideLTR 12s infinite; /* 3 images × 4s = 12s */
}

.slides img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Animation */
@keyframes slideLTR {
    0%   { transform: translateX(0%); }
    33%  { transform: translateX(0%); }

    38%  { transform: translateX(-100%); }
    66%  { transform: translateX(-100%); }

    71%  { transform: translateX(-200%); }
    100% { transform: translateX(-200%); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 30px;
    }
    .about-text {
        padding-right: 0;
        text-align: center;
    }
    #about .container {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .slides {
        width: 90vw;
        height: 35vh;
    }
}
/* Services Section */
#services {
    padding: 100px 0;
    background: #000;
    text-align: center;
}

#services h2 {
    margin-bottom: 50px;
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    height: 300px;
    perspective: 1000px;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.service-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.flip-card-front {
    background: #111;
    border: 1px solid #333;
}

.service-icon {
    height: 110%;
    width: 110%;
    object-fit: contain;
}

.flip-card-back {
    background: #222;
    transform: rotateY(180deg);
    color: #fff;
}

.flip-card-back ul {
    list-style: none;
    padding: 0;
    text-align: center;
    width: 100%;
}

.flip-card-back li {
    margin: 5px 0;
    font-size: 0.8rem;
}

.flip-card-back p {
    font-size: 0.8rem;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    #services {
        padding: 50px 0;
        background: #111; /* Even lighter background for better visibility */
        border: 3px solid #fff; /* Thicker white border to make it stand out */
        min-height: 100vh; /* Ensure it takes full height if needed */
    }

    .services-row {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }

    .service-card {
        min-height: 300px;
        height: 35vh;
        width: 90vw;
        perspective: 1000px;
        cursor: pointer;
        border: 1px solid #fdf5e6;
        background: #333; /* Lighter card background */
    }

    .flip-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: transform 0.6s;
        transform-style: preserve-3d;
    }

    .service-card.flipped .flip-card-inner {
        transform: rotateY(180deg);
    }

    .flip-card-front, .flip-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
    }

    .flip-card-front {
        background: #444;
        border: 1px solid #fff;
    }

    .flip-card-front img {
        width: 100%;
        height: 80%;
        margin-top: -50px;
        margin-bottom: 10px;
    }

    .service-icon {
        min-width: 347px;
        min-height: 350px;
        font-size: 2rem;
        margin-top: -28px;
        margin-bottom: 10px;
    }
    
    .flip-card-front h3 {
        color: #fff;
        font-size: 1.2rem;
        text-align: center;
        margin-top: -58px;
    }

    .flip-card-back {
        background: #222;
        transform: rotateY(180deg);
        color: #fff;
    }

    /* Process Section */
    .timeline {
        flex-direction: column;
        gap: 20px;
    }

    .step {
        text-align: center;
    }

    /* Testimonials Section */
    .testimonial-slider {
        padding: 10px;
    }

    .testimonial {
        padding: 15px;
    }

    /* CTA Section */
    #cta {
        padding: 50px 0;
        text-align: center;
    }

    #quote-btn {
        width: 100%;
        padding: 15px;
    }

    /* Footer */
    #footer {
        padding: 30px 0;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    /* Extra small screens */
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .services-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .service-card {
        height: 200px;
    }

    .flip-card-front img {
        width: 100px;
        height: 100px;
    }

    .flip-card-front h3 {
        font-size: 1rem;
    }

    .strengths-grid {
        grid-template-columns: 1fr; /* Single column */
    }
}
/* Projects Section */
#projects {
    padding: 100px 0;
    background: #000;
    text-align: center;
}

#projects h2 {
    text-align: center;
    font-size: 1.5rem;
    padding-bottom: 50px;
}

.projects-container {
    position: relative;
    height: 1000px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-card {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-height: 55vh;
    max-width: 50vw;
    border: 1rem solid;
    border-color: #d1d2b4;
    border-radius: 30px;
}
.project-card h1 {
    text-align: center;
    padding: 10rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    color: #ee7459;
}

.projects-summary {
    background: linear-gradient(135deg, #111, #222);
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-top: 50px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.projects-summary.visible {
    opacity: 1;
    transform: translateY(0);
}

.projects-summary h3 {
    font-size: 2.5rem;
    color: #ee7459;
    margin-bottom: 15px;
    font-weight: bold;
}

.projects-summary p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
}

.project-card img {
    width: 100%;
    height: 100%;
    border-radius: 30px
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #327d9c, rgba(0, 0, 50, 0.6)); /* Dark blue gradient overlay */
    color: #fff;
    padding: 20px;
    text-align: left;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 30px
}

.project-overlay h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ee7459; /* Yellow accent for prominence */
}

.project-overlay p {
    font-size: 0.9rem;
    margin-bottom: 5px;
    line-height: 1.4;
    color: #ccc;
}

.view-btn {
    background: #f5a694; /* Yellow accent button */
    color: #000;
    border: none;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.view-btn:hover {
    background: #ee7459;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: #111;
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    color: #fff;
}

.close {
    float: right;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
}

/* Contact Form Modal Styles */
#contact-modal .modal-content {
    margin-top: 60px;
    max-width: 500px;
}

#contact-modal h3 {
    margin-bottom: 20px;
    color: #327d9c;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #222;
    color: #fff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ee7459;
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

#contact-modal .btn-primary {
    width: 80%;
    background: #327d9c;
    color: #000;
    border: none;
    padding: 12px;
    margin-left: 10%;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#contact-modal .btn-primary:hover {
    background: #e0601b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .projects-container {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }
    .project-card {
        max-width: 100%;
        max-height: 25%;
        width: 100%;
        border: 0.7rem solid;
    }

    .project-card h1 {
        text-align: center;
        margin-top: -90px;
        margin-left: -50px;
    }
    .project-card img {
        object-fit: cover;
        height: 94%;
        width: 100%;
    }

    .project-overlay {
        opacity: 0; /* Always visible on mobile for usability */
        transition: opacity 0.3s ease;
        background: rgba(0, 0, 50, 0.8);
        padding: 20px;
    }

    .project-overlay h3 {
        font-size: 1rem;
    }

    .project-overlay p {
        font-size: 0.8rem;
    }
    #contact-modal .btn-primary {
        width: 65%;
        margin-left: 20%
        ;
    }
}
/* Enhanced Mobile-Friendly Styles */
@media (max-width: 768px) {
    body {
        font-size: 14px; /* Smaller base font for mobile */
    }

    .container {
        padding: 0 15px; /* Tighter padding */
    }

    /* Navbar */
    #navbar {
        padding: 15px;
    }

    .nav-links {
        position: fixed;
        right: -50vw;
        top: 0;
        flex-direction: column;
        background-color: #000;
        width: 50vw;
        height: 100vh;
        text-align: center;
        transition: 0.6s;
        padding: 80px 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        right: 0;
        transition: all 0.6s;
    }
    .hamburger {
        display: flex;
    }
}

/* Construction Process Section */
#process {
    padding: 100px 0;
    background: #111;
    text-align: center;
    color: #fff;
}

#process h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

#process p {
    font-size: 0.9rem;
    margin-bottom: 0px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: relative;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ffcc00; /* Yellow accent for timeline */
    transform: translateX(-50%);
}

.step {
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
    background: #222;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: 0;
    width: 100%;
}

.step:nth-child(odd) {
    margin-right: auto;
    margin-bottom: -35px;
    margin-left: -70%;
}
.step:nth-child(odd):hover{
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3); /* Brightening shadow on hover */
    transform: translateY(-10px); /* Unique lift effect for style */
    transition: all 0.6s;
}

.step:nth-child(even) {
    margin-left: auto;
    margin-right: -70%;
    margin-bottom: -35px;
}
.step:nth-child(even):hover{
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3); /* Brightening shadow on hover */
    transform: translateY(-10px); /* Unique lift effect for style */
    transition: all 0.6s;

}

.step:nth-child(even) .step-icon {
    margin-left: 0px;
    margin-right: 0;
}

.step-icon {
    font-size: 2rem;
    color: #ffcc00; /* Yellow accent */
}

.step h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    padding-right: 10px;
}

.step p {
    font-size: 0.9rem;
    margin-top: 5px;
    line-height: 1.5;
    color: #ccc;
}

.process-cta {
    margin-top: 50px;
}

#consult-btn {
    background: #ee7459; /* Yellow accent */
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#consult-btn:hover {
    background: #ee7459;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .step {
        width: 60%;
        margin: 0 auto;
        text-align: center;
        flex-direction: column;
        gap: 0px;
    }

    .step:nth-child(odd){
        margin-left: 0px;
        text-align: center;
        flex-direction: column;
    }
    .step:nth-child(even){
        margin-right: 0px;
        text-align: center;
        flex-direction: column;
    }

    .step-icon {
        font-size: 30px;
    }

    .step h3 {
        font-size: 1rem;
    }

    .step p {
        font-size: 0.9rem;
    }

    #process h2 {
        font-size: 1.5rem;
    }

    #process p {
        font-size: 0.9rem;
    }
}

/* Why Choose Us Section */
#why-us {
    padding: 100px 0;
    background: #000;
    text-align: center;
    color: #fff;
}

#why-us h2 {
    margin-bottom: 20px;
    text-align: center;
}

#why-us p {
    font-size: 0.9rem;
    margin-bottom: 50px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.strength {
    background: #111;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength:hover {
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3); /* Brightening shadow on hover */
    transform: translateY(-10px); /* Unique lift effect for style */
    transition: all 0.6s;
}

.icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ee7459; /* Yellow accent */
}

.strength h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.strength p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
}

.why-cta {
    margin-top: 50px;
}

#expert-btn {
    background: #ee7459; /* Yellow accent */
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#expert-btn:hover {
    background: #ee7459;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .strengths-grid {
        grid-template-columns: 2fr 2fr; /* 2 columns on tablet */
        gap: 10px;
        margin-left: -20px;
        margin-right: -20px;
    }
    #why-us h2 {
        font-size: 1.5rem;
    }

    #why-us p {
        font-size: 0.9rem;
    }
    .strength {
        padding: 0;
    }
    .icon {
        font-size: 1.5rem; /* Slightly smaller icon */
    }

    .strength h3 {
        font-size: 0.8rem; /* Smaller heading */
    }
    .strength p {
        font-size: 0.7rem;
    }
}

/* Testimonials Section */
#testimonials {
    padding: 100px 0;
    background: #111;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
}

.testimonial {
    min-width: 100%;
    text-align: center;
    padding: 20px;
}

/* Quote Section */
#quote {
    padding: 100px 0;
    background: #000;
    text-align: center;
    color: #fff;
}

#quote blockquote {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
    position: relative;
    padding: 20px;
}

#quote blockquote p {
    margin-bottom: 20px;
}

#quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #ee7459;
    position: absolute;
    top: -20px;
    left: -20px;
}

#quote cite {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: bold;
}

/* Responsive adjustments for quote */
@media (max-width: 768px) {
    #quote blockquote {
        font-size: 1rem;
        padding: 15px;
    }

    #quote blockquote::before {
        font-size: 3rem;
        top: -15px;
        left: -15px;
    }

    #quote cite {
        font-size: 1rem;
    }
}

/* CTA Section */
#cta {
    padding: 50px 0;
    background: #000;
    text-align: center;
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.cta-content h2 {
    font-size: 1.3rem;
    margin-bottom: 60px;
    color: #fff;
}

#quote-btn {
    background: #fff;
    color: #000;
    border: none;
    width: 150px;
    margin-top: 100px;
    padding: 15px 30px;
    font-size: 1em;
    cursor: pointer;
    transition: box-shadow 0.3s;
    position: relative;
    z-index: 3;
}

#quote-btn:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.cta-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

@media (max-width :768px) {
    .cta-content h2 {
        font-size: 0.9rem;
    }
}
/* Footer */
#footer {
    padding: 50px 0;
    background: #111;
    color: #fff;
    text-align: left;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.contact-info p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
}
.contact-info dito {
    position: relative;
    bottom: 8px;
    color: #ccc; 
    text-decoration: none;
}
.contact-info a {
    color: #ccc; 
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
    color: #ee7459;
    transition: all 1s;
}

.icon img {
    height: 25px;
    margin-right: 10px;
    font-size: 1rem;
}
.icon img:hover {
    height: 27px;
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3); /* Brightening shadow on hover */
    transition: all 0.6s;
}

.social-icons{
    margin-top: 20px;
    display:flex;
    gap: 20px;
}

.social-icon img{
    height: 30px;
    transition: color 0.3s;
}

.social-icon img:hover {
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3); /* Brightening shadow on hover */
    transition: all 0.6s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-column {
        margin: 0;
    }

    .footer-column h4 {
        font-size: 1.1rem;
        text-align: center;
    }
    .logo {
        font-size: 1.3rem;
    }
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    #footer {
        padding: 30px 0;
    }
    .container {
        padding: 0 15px;
    }
    .footer-column h4 {
        font-size: 1rem;
    }
    .contact-info p {
        font-size: 0.7rem;  
    }
    .social-icon {
        font-size: 1.3rem;
    }
}