
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
}

body{
    background:#f5f5f5;
}

/* Navbar */
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 50px;

    background:rgba(1, 23, 61, 0.881);
    color:white;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
}

.logo-section{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-section img{
    width:50px;
    height:50px;
    object-fit:cover;
}
/* Hero */
.hero{
    position:relative;

    height:70vh;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    background:linear-gradient(
    -45deg,
    #c7e7ff,
    #b8ddff,
    #d6efff,
    #c4e4ff
);

    background-size:400% 400%;

    animation:bgAnimation 1s ease infinite;

    @keyframes bgAnimation{

        0%{
            background-position:0% 50%;
        }
    
        50%{
            background-position:100% 50%;
        }
    
        100%{
            background-position:0% 50%;
        }
    
    }
}
.overlay{
    background:rgba(121, 27, 57, 0.853);

    padding:40px;
    border-radius:10px;

    text-align:center;
    color:white;
}

.overlay h2{
    font-size:50px;
    margin-bottom:15px;
}

.overlay p{
    font-size:20px;
    margin-bottom:20px;
}

button{
    padding:12px 25px;

    border:none;
    background:orange;

    color:white;
    font-size:16px;

    cursor:pointer;
}



.company-section{
    display:flex;

    align-items:center;
    justify-content:space-between;

    padding:100px 80px;

    gap:60px;
    

    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );

    background-size:400% 400%;
    animation:bgAnimation 10s ease infinite;
}

/* Left Image */
.company-image{
    flex:1;
}

.company-image img{
    width:100%;
    max-width:500px;

    border-radius:15px;

    box-shadow:0 0 20px rgba(0,0,0,0.2);
}

/* Right Text */
.company-content{
    flex:1;
}

.company-content h2{
    font-size:45px;
    margin-bottom:25px;
}

.company-content h3{
    margin-top:20px;
    margin-bottom:10px;
}

.company-content p{
    line-height:1.9;
    color:#444;
    margin-bottom:15px;
}
/* About */
.about{
    padding:60px 80px;
    text-align:center;
}

/* Projects */
.projects{
    padding:60px 80px;
}

.project-card{
    width:300px;

    
    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );


    padding:15px;

    border-radius:10px;

    box-shadow:0 0 10px rgba(0,0,0,0.2);
}

.project-card img{
    width:100%;
    border-radius:10px;
}

/* Contact */
.contact{
    padding:60px 80px;

    display:flex;
    flex-direction:column;

    gap:15px;
}

.contact input{
    padding:12px;
    width:300px;
}

.about{
    padding:60px 80px;
    text-align:center;
}

footer{
    background:rgba(1, 23, 61, 0.881);
    color:white;

    padding-top:50px;
}

.footer-container{
    display:flex;
    justify-content:space-around;
    flex-wrap:wrap;

    padding:0 50px 40px;
}

.footer-section{
    width:300px;
    margin-bottom:30px;
}

.footer-section h2,
.footer-section h3{
    margin-bottom:20px;
}

.footer-section p{
    line-height:1.8;
    color:#ccc;
}

.footer-section ul{
    list-style:none;
}

.footer-section ul li{
    margin-bottom:10px;
}

.footer-section ul li a{
    text-decoration:none;
    color:#ccc;
}

.footer-section ul li a:hover{
    color:white;
}

.footer-bottom{
    text-align:center;

    border-top:1px solid #333;

    padding:20px;

    color:#aaa;
}


/* Section Divider */
.section-divider{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:80px;

    padding:40px 0;

    background:  #f10d11,
}

.line{
    width:180px;
    height:4px;

    background:#220a0a;
}

.section-divider img{
    width:75px;
    height:75px;

    object-fit:contain;

    opacity:0.9;
}

.footer-brand{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:15px;

    margin-bottom:25px;
}

.footer-logo{
    width:70px;
    height:70px;

    object-fit:contain;
}

footer a{
    color: white !important;
    text-decoration: none !important;
}

footer a:visited{
    color: white !important;
}

footer a:hover{
    color: gold !important;
}

footer a:active{
    color: white !important;
}


/* About Hero */
.about-hero{
    min-height:70vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:80px;

    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );

    background-size:400% 400%;

    animation:bgAnimation 10s ease infinite;
}

/* Hero Content */
.hero-content{
    display:flex;

    align-items:center;
    justify-content:center;

    gap:50px;

    flex-wrap:wrap;
}

/* Large Logo */
.hero-logo img{
    width:260px;
    height:260px;

    object-fit:contain;

    filter:drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

/* Text */
.hero-text{
    max-width:600px;
}

.hero-text h1{
    font-size:70px;

    color:#111;

    margin-bottom:20px;

    font-weight:700;
}

.hero-text p{
    font-size:22px;

    color:#333;

    line-height:1.8;
}

/* About Company Section */
.about-company{
    display:flex;

    align-items:flex-start;
    justify-content:center;

    gap:60px;

    padding:100px 80px;

    flex-wrap:wrap;

    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );

    background-size:400% 400%;

    animation:bgAnimation 10s ease infinite;
}

/* Left Image */
.about-image img{
    width:500px;
    max-width:100%;

    border-radius:15px;

    box-shadow:0 0 20px rgba(0,0,0,0.15);
}

/* Right Content */
.about-content{
    max-width:700px;
}

.about-content h2{
    font-size:40px;

    margin-top:30px;
    margin-bottom:20px;

    color:#111;
}

.about-content h3{
    font-size:22px;

    margin-top:20px;
    margin-bottom:10px;

    color:#222;
}

.about-content p{
    font-size:17px;

    line-height:1.9;

    color:#444;

    margin-bottom:18px;
}

/* Footer */
footer{
   this is my complete code for css i want every footer colour same as head 

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
}

body{
    background:#f5f5f5;
}

/* Navbar */
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 50px;

    background:rgba(1, 23, 61, 0.881);
    color:white;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
}

.logo-section{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-section img{
    width:50px;
    height:50px;
    object-fit:cover;
}
/* Hero */
.hero{
    position:relative;

    height:70vh;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    background:linear-gradient(
    -45deg,
    #c7e7ff,
    #b8ddff,
    #d6efff,
    #c4e4ff
);

    background-size:400% 400%;

    animation:bgAnimation 1s ease infinite;

    @keyframes bgAnimation{

        0%{
            background-position:0% 50%;
        }
    
        50%{
            background-position:100% 50%;
        }
    
        100%{
            background-position:0% 50%;
        }
    
    }
}
.overlay{
    background:rgba(121, 27, 57, 0.853);

    padding:40px;
    border-radius:10px;

    text-align:center;
    color:white;
}

.overlay h2{
    font-size:50px;
    margin-bottom:15px;
}

.overlay p{
    font-size:20px;
    margin-bottom:20px;
}

button{
    padding:12px 25px;

    border:none;
    background:orange;

    color:white;
    font-size:16px;

    cursor:pointer;
}



.company-section{
    display:flex;

    align-items:center;
    justify-content:space-between;

    padding:100px 80px;

    gap:60px;
    

    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );

    background-size:400% 400%;
    animation:bgAnimation 10s ease infinite;
}

/* Left Image */
.company-image{
    flex:1;
}

.company-image img{
    width:100%;
    max-width:500px;

    border-radius:15px;

    box-shadow:0 0 20px rgba(0,0,0,0.2);
}

/* Right Text */
.company-content{
    flex:1;
}

.company-content h2{
    font-size:45px;
    margin-bottom:25px;
}

.company-content h3{
    margin-top:20px;
    margin-bottom:10px;
}

.company-content p{
    line-height:1.9;
    color:#444;
    margin-bottom:15px;
}
/* About */
.about{
    padding:60px 80px;
    text-align:center;
}

/* Projects */
.projects{
    padding:60px 80px;
}

.project-card{
    width:300px;

    background:white;

    padding:15px;

    border-radius:10px;

    box-shadow:0 0 10px rgba(0,0,0,0.2);
}

.project-card img{
    width:100%;
    border-radius:10px;
}

/* Contact */
.contact{
    padding:60px 80px;

    display:flex;
    flex-direction:column;

    gap:15px;
}

.contact input{
    padding:12px;
    width:300px;
}

.about{
    padding:60px 80px;
    text-align:center;
}

footer{
    background:#111;
    color:white;

    padding-top:50px;
}

.footer-container{
    display:flex;
    justify-content:space-around;
    flex-wrap:wrap;

    padding:0 50px 40px;
}

.footer-section{
    width:300px;
    margin-bottom:30px;
}

.footer-section h2,
.footer-section h3{
    margin-bottom:20px;
}

.footer-section p{
    line-height:1.8;
    color:#ccc;
}

.footer-section ul{
    list-style:none;
}

.footer-section ul li{
    margin-bottom:10px;
}

.footer-section ul li a{
    text-decoration:none;
    color:#ccc;
}

.footer-section ul li a:hover{
    color:white;
}

.footer-bottom{
    text-align:center;

    border-top:1px solid #333;

    padding:20px;

    color:#aaa;
}


/* Section Divider */
.section-divider{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:80px;

    padding:40px 0;

    background:  #f10d11,
}

.line{
    width:180px;
    height:4px;

    background:#220a0a;
}

.section-divider img{
    width:75px;
    height:75px;

    object-fit:contain;

    opacity:0.9;
}

.footer-brand{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:15px;

    margin-bottom:25px;
}

.footer-logo{
    width:70px;
    height:70px;

    object-fit:contain;
}

footer a{
    color: white !important;
    text-decoration: none !important;
}

footer a:visited{
    color: white !important;
}

footer a:hover{
    color: gold !important;
}

footer a:active{
    color: white !important;
}


/* About Hero */
.about-hero{
    min-height:70vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:80px;

    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );

    background-size:400% 400%;

    animation:bgAnimation 10s ease infinite;
}

/* Hero Content */
.hero-content{
    display:flex;

    align-items:center;
    justify-content:center;

    gap:50px;

    flex-wrap:wrap;
}

/* Large Logo */
.hero-logo img{
    width:260px;
    height:260px;

    object-fit:contain;

    filter:drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

/* Text */
.hero-text{
    max-width:600px;
}

.hero-text h1{
    font-size:70px;

    color:#111;

    margin-bottom:20px;

    font-weight:700;
}

.hero-text p{
    font-size:22px;

    color:#333;

    line-height:1.8;
}

/* About Company Section */
.about-company{
    display:flex;

    align-items:flex-start;
    justify-content:center;

    gap:60px;

    padding:100px 80px;

    flex-wrap:wrap;

    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );

    background-size:400% 400%;

    animation:bgAnimation 10s ease infinite;
}

/* Left Image */
.about-image img{
    width:500px;
    max-width:100%;

    border-radius:15px;

    box-shadow:0 0 20px rgba(0,0,0,0.15);
}

/* Right Content */
.about-content{
    max-width:700px;
}

.about-content h2{
    font-size:40px;

    margin-top:30px;
    margin-bottom:20px;

    color:#111;
}

.about-content h3{
    font-size:22px;

    margin-top:20px;
    margin-bottom:10px;

    color:#222;
}

.about-content p{
    font-size:17px;

    line-height:1.9;

    color:#444;

    margin-bottom:18px;
}

/* Footer */
footer{
    background:#111;

    color:white;

    padding:50px 20px;

    text-align:center;
}

.footer-brand{
    display:flex;

    align-items:center;
    justify-content:center;

    gap:15px;

    margin-bottom:20px;
}

.footer-logo{
    width:70px;
    height:70px;

    object-fit:contain;
}

footer a{
    color:white !important;

    text-decoration:none !important;
}

footer a:hover{
    color:gold !important;
}

/* Contact Hero */
.contact-hero{
    min-height:65vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );

    background-size:400% 400%;

    animation:bgAnimation 10s ease infinite;
}

.contact-hero-logo{
    width:180px;

    margin-bottom:25px;
}

.contact-hero-content h1{
    font-size:65px;

    color:#111;

    margin-bottom:20px;
}

.contact-hero-content p{
    font-size:22px;

    color:#333;
}

/* Contact Cards */
.contact-cards{
    display:flex;

    justify-content:center;

    gap:30px;

    padding:100px 80px;

    flex-wrap:wrap;

    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );

    
}

.contact-card{
    width:320px;

    padding:40px;

    border-radius:20px;

    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );

    backdrop-filter:blur(10px);

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

    text-align:center;

    transition:0.4s;
}

.contact-card:hover{
    transform:translateY(-10px);
}

.contact-card h2{
    margin-bottom:20px;
}

.contact-card p{
    color:#555;
}

.contact-card a{
    text-decoration:none;

    color:#111;
}

/* Form Section */
.contact-form-section{
    padding:100px 20px;

    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );

    background-size:400% 400%;

    animation:bgAnimation 10s ease infinite;
}

.contact-form-container{
    max-width:700px;

    margin:auto;

    background:rgba(255,255,255,0.4);

    backdrop-filter:blur(10px);

    padding:50px;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.contact-form-container h2{
    text-align:center;

    margin-bottom:35px;

    font-size:42px;
}

form{
    display:flex;
    flex-direction:column;

    gap:20px;
}

form input,
form textarea{
    padding:18px;

    border:none;

    border-radius:12px;

    outline:none;

    font-size:16px;
}

form textarea{
    height:160px;

    resize:none;
}

form button{
    padding:16px;

    border:none;

    border-radius:40px;

    background:#111;

    color:white;

    font-size:18px;

    cursor:pointer;

    transition:0.3s;
}

form button:hover{
    background:#0a84ff;

    transform:translateY(-3px);
}

/* Map Section */
.map-section{
    padding:100px 20px;

    text-align:center;

    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );
}

.map-section h2{
    font-size:42px;

    margin-bottom:40px;
}

.map-section iframe{
    width:90%;
    height:450px;

    border:none;

    border-radius:20px;
}

/* Social */
.social-section{
    padding:80px 20px;

    text-align:center;

    background:#f7f7f7;
}

.social-section h2{
    font-size:40px;

    margin-bottom:30px;
}

.social-links{
    display:flex;

    justify-content:center;

    gap:25px;
}

.social-links a{
    text-decoration:none;

    background:#111;

    color:white;

    padding:15px 30px;

    border-radius:40px;

    transition:0.3s;
}

.social-links a:hover{
    background:#0a84ff;

    transform:translateY(-5px);
}

    color:white;

    padding:50px 20px;

    text-align:center;
}

.footer-brand{
    display:flex;

    align-items:center;
    justify-content:center;

    gap:15px;

    margin-bottom:20px;
}

.footer-logo{
    width:70px;
    height:70px;

    object-fit:contain;
}

footer a{
    color:white !important;

    text-decoration:none !important;
}

footer a:hover{
    color:gold !important;
}

/* Mobile Responsive */
@media(max-width:768px){

    .about-overlay h2{
        font-size:38px;
    }

    .about-company{
        padding:60px 25px;
    }

    .about-content h2{
        font-size:32px;
    }

}



/* Contact Hero */
.contact-hero{
    min-height:65vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );

    background-size:400% 400%;

    animation:bgAnimation 10s ease infinite;
}

.contact-hero-logo{
    width:180px;

    margin-bottom:25px;
}

.contact-hero-content h1{
    font-size:65px;

    color:#111;

    margin-bottom:20px;
}

.contact-hero-content p{
    font-size:22px;

    color:#333;
}

/* Contact Cards */
.contact-cards{
    display:flex;

    justify-content:center;

    gap:30px;

    padding:100px 80px;

    flex-wrap:wrap;

    background:white;
}

.contact-card{
    width:320px;

    padding:40px;

    border-radius:20px;

    background:rgba(255,255,255,0.5);

    backdrop-filter:blur(10px);

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

    text-align:center;

    transition:0.4s;
}

.contact-card:hover{
    transform:translateY(-10px);
}

.contact-card h2{
    margin-bottom:20px;
}

.contact-card p{
    color:#555;
}

.contact-card a{
    text-decoration:none;

    color:#111;
}

/* Form Section */
.contact-form-section{
    padding:100px 20px;

    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );

    background-size:400% 400%;

    animation:bgAnimation 10s ease infinite;
}

.contact-form-container{
    max-width:700px;

    margin:auto;

    background:rgba(255,255,255,0.4);

    backdrop-filter:blur(10px);

    padding:50px;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.contact-form-container h2{
    text-align:center;

    margin-bottom:35px;

    font-size:42px;
}

form{
    display:flex;
    flex-direction:column;

    gap:20px;
}

form input,
form textarea{
    padding:18px;

    border:none;

    border-radius:12px;

    outline:none;

    font-size:16px;
}

form textarea{
    height:160px;

    resize:none;
}

form button{
    padding:16px;

    border:none;

    border-radius:40px;

    background:#111;

    color:white;

    font-size:18px;

    cursor:pointer;

    transition:0.3s;
}

form button:hover{
    background:#0a84ff;

    transform:translateY(-3px);
}

/* Map Section */
.map-section{
    padding:100px 20px;

    text-align:center;

    background:white;
}

.map-section h2{
    font-size:42px;

    margin-bottom:40px;
}

.map-section iframe{
    width:90%;
    height:450px;

    border:none;

    border-radius:20px;
}

/* Social */
.social-section{
    padding:80px 20px;

    text-align:center;

    background:#f7f7f7;
}

.social-section h2{
    font-size:40px;

    margin-bottom:30px;
}

.social-links{
    display:flex;

    justify-content:center;

    gap:25px;
}

.social-links a{
    text-decoration:none;

    background:#111;

    color:white;

    padding:15px 30px;

    border-radius:40px;

    transition:0.3s;
}

.social-links a:hover{
    background:#0a84ff;

    transform:translateY(-5px);
}

/* Vision Mission Section */
.vision-mission{
    display:flex;

    justify-content:center;
    align-items:stretch;

    gap:40px;

    padding:100px 80px;

    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );

    background-size:400% 400%;

    animation:bgAnimation 10s ease infinite;
}

/* Cards */
.vision-card,
.mission-card{
    width:500px;

    padding:50px;

    border-radius:25px;

    background:rgba(255,255,255,0.35);

    backdrop-filter:blur(12px);

    box-shadow:0 10px 30px rgba(0,0,0,0.1);

    transition:0.4s;

    text-align:center;
}

.vision-card:hover,
.mission-card:hover{
    transform:translateY(-12px);
}

/* Icons */
.vision-icon,
.mission-icon{
    font-size:65px;

    margin-bottom:25px;
}

/* Heading */
.vision-card h2,
.mission-card h2{
    font-size:38px;

    margin-bottom:20px;

    color:#111;
}

/* Text */
.vision-card p,
.mission-card p{
    font-size:18px;

    line-height:1.9;

    color:#444;
}



.about-content ul{
    padding-left:25px;

    margin-bottom:25px;
}

.about-content ul li{
    font-size:17px;

    line-height:1.9;

    color:#444;

    margin-bottom:10px;
}

.about-content{
    max-width:700px;

    width:100%;
}






.gallery-page {
    padding: 60px 10%;
    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );
    text-align: center;
}

.gallery-page h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #222;
}

/* Simple Clean Grid */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

/* Plain Images (NO box, NO shadow) */
.gallery-container img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* Subtle hover only */
.gallery-container img:hover {
    transform: scale(1.03);
}


.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}



.google-btn {
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    color: rgb(249, 247, 247);
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

/* Centering effect already handled by text-align:center */

.google-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


/* Project Section */
.project-section {
    padding: 70px 10%;
    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );
}

/* Main Container */
.project-container {
    max-width: 1000px;
    margin: auto;
    background: rgb(244, 247, 247);
    padding: 50px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Tag */
.project-tag {
    display: inline-block;
    background: #222;
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Headings */
.project-container h1 {
    font-size: 42px;
    color: #111;
    margin-bottom: 10px;
}

.project-container h3 {
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Paragraph */
.project-container p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

/* Highlight Sections */
.highlights,
.why-choose {
    margin-top: 40px;
}

.highlights h2,
.why-choose h2 {
    margin-bottom: 20px;
    color: #222;
}

/* List */
.highlights ul {
    list-style: none;
    padding: 0;
}

.highlights ul li {
    background: #0aa6d166;
    padding: 15px 20px;
    margin-bottom: 12px;
    border-left: 4px solid #e415bb;
    border-radius: 8px;
    transition: 0.3s;
}

/* Hover */
.highlights ul li:hover {
    transform: translateX(5px);
    background: #f1f1f1;
}

/* Project Image Section */

.project-image-section {
    padding: 70px 10%;
     background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );
    text-align: center;
}

.project-image-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #222;
}

.project-image-container img {
    width: 100%;
    max-width: 1100px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: 0.4s;
}

/* Hover Effect */

.project-image-container img:hover {
    transform: scale(1.02);
}



/* Contact Hover Effects */

.contact-card a,
.footer-contact a{
    transition: 0.3s ease;
}

.contact-card a:hover,
.footer-contact a:hover{
    color: #0a84ff !important;
}


.location a {
    color: #e53e3e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.location a:hover {
    text-decoration: underline;
}


.owner-section {
    padding: 60px 40px;
    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );
}

.owner-card {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.owner-photo{
    flex: 0 0 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owner-photo img{
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.owner-details h2 {
    font-size: 14px;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.owner-details h3 {
    font-size: 28px;
    color: #1a2e4a;
    margin-bottom: 6px;
}

.owner-title {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
    font-style: italic;
}

.owner-details p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 12px;
}

.owner-highlights {
    display: flex;
    gap: 30px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #010a17;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-number {
    font-size: 26px;
    font-weight: 700;
    color: #2563eb;
}

.highlight-label {
    font-size: 12px;
    color: #64748b;
    text-align: center;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .owner-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .owner-highlights {
        justify-content: center;
    }
}




/* =====================================
   SAFE RESPONSIVE CODE
   (Will NOT change desktop design)
===================================== */

/* Prevent horizontal scrolling */
html, body{
    overflow-x:hidden;
}

/* Images responsive */
img{
    max-width:100%;
    height:auto;
}

/* Videos & maps responsive */
iframe,
video{
    max-width:100%;
}

/* =====================================
   TABLET
===================================== */

@media(max-width:992px){

    .company-section,
    .about-container,
    .project-container,
    .contact-container{
        flex-wrap:wrap;
        gap:20px;
    }

    .overlay{
        width:90%;
    }

    .project-card{
        width:45%;
    }
}

/* =========================
   FINAL MOBILE RESPONSIVE FIX
========================= */

@media(max-width:768px){

    body{
        overflow-x:hidden;
    }

    /* Navbar */
    nav{
        flex-direction:column;
        padding:15px;
        text-align:center;
    }

    nav ul{
        flex-direction:column;
        gap:15px;
        margin-top:15px;
    }

    /* Hero */
    .overlay{
        width:100%;
        padding:20px;
    }

    .overlay h2{
        font-size:32px;
    }

    .overlay p{
        font-size:16px;
    }

    /* Company */
    .company-section{
        flex-direction:column;
        padding:60px 20px;
        text-align:center;
    }

    .company-content h2{
        font-size:32px;
    }

    /* About Hero */
    .hero-content{
        flex-direction:column;
        text-align:center;
    }

    .hero-text h1{
        font-size:40px;
    }

    .hero-text p{
        font-size:18px;
    }

    /* About Company */
    .about-company{
        flex-direction:column;
        padding:60px 20px;
    }

    /* Vision Mission */
    .vision-mission{
        flex-direction:column;
        padding:60px 20px;
    }

    .vision-card,
    .mission-card{
        width:100%;
    }

    /* Owner Section */
    .owner-card{
        flex-direction:column;
        text-align:center;
        padding:25px;
    }

    .owner-photo img{
        width:100%;
        height:auto;
    }

    .owner-highlights{
        justify-content:center;
        flex-wrap:wrap;
    }

    /* Contact Cards */
    .contact-cards{
        padding:60px 20px;
    }

    .contact-card{
        width:100%;
    }

    /* Contact Form */
    .contact-form-container{
        padding:25px;
    }

    /* Map */
    .map-section iframe{
        width:100%;
        height:300px;
    }

    /* Social */
    .social-links{
        flex-direction:column;
        align-items:center;
    }

    /* Footer */
    .footer-container{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .footer-section{
        width:100%;
    }

    /* Gallery */
    .gallery-page{
        padding:40px 20px;
    }

    /* Project */
    .project-container{
        padding:25px;
    }

    .project-container h1{
        font-size:30px;
    }

}
/* =====================================
   SMALL MOBILE
===================================== */

@media(max-width:480px){

    .overlay h2{
        font-size:24px;
    }

    .overlay p{
        font-size:14px;
    }

    nav a{
        font-size:14px;
    }
}


/* =====================================
   PROJECT SLIDER
===================================== */

.project-slider-section {
    width: 100%;
    padding: 60px 20px;
    background:linear-gradient(
        -45deg,
        #c7e7ff,
        #b8ddff,
        #d6efff,
        #c4e4ff
    );
}

.project-slider-section h2{
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 35px;
    text-align: center;
}


.slider {
    position: relative;
    max-width: 1100px;
    height: 700px;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.slides {
    display: none;
    width: 100%;
    height: 100%;
    animation: fadeZoom 1s ease;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* Shows full image without cropping */
    object-position: center;
    background: #fff;
}

@keyframes fadeZoom {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width:768px) {
    .slider {
        height: 280px;
    }
}

.dot{
    cursor:pointer;
    height:15px;
    width:15px;
    margin:0 5px;
    background:#bbb;
    border-radius:50%;
    display:inline-block;
    transition:1s;
}

.active,
.dot:hover{
    background:#070600;
}

.dot-container{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

@media(max-width:768px){

.slides img{
    height:300px;
}

}
