/* RESET */

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

/* HEADER */

header{
background:#0d3b66;
color:white;
padding:15px 0;
}

.nav{
width:90%;
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:500;
}

/* HERO */
.hero {
  height: 100vh; /* or 100vh if you want full screen */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 40px 20px;
  /* Background image settings */
  background-size: cover;  /* make it cover the whole section */
  background-attachment: scroll; /* or 'fixed' for parallax effect */
}











.hero{
position:relative;
height:80vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
overflow:hidden;
}

/* BACKGROUND IMAGE */
.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background-image:url("images/home1.jpeg");
background-size:cover;
background-position:center;

animation:heroZoom 20s ease-in-out infinite alternate;
z-index:-2;
}

/* DARK OVERLAY */
.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
z-index:-1;
}

/* HERO ANIMATION */
@keyframes heroZoom{
0%{
transform:scale(1);
}

100%{
transform:scale(1.1);
}
}




.method-hero{
height:60vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:white;
background:
linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
url("images/wind6.jpeg");
animation:heroZoom 20s ease-in-out infinite alternate;
z-index:-2;

}




.hero-content{
max-width:1400px;
padding:20px;
}
.hero h1{
font-size:48px;
margin-bottom:20px;
animation:fadeIn 1.5s;
}

.hero p{
font-size:20px;
margin-bottom:25px;
animation:fadeIn 2s;
}

/* BUTTON */

.btn{
background:#1a73e8;
color:white;
padding:14px 30px;
border-radius:6px;
text-decoration:none;
transition:0.3s;
}

.btn:hover{
background:#0d5bd7;
}
























/* SERVICES */

.services{
padding:80px 20px;
text-align:center;
}

.services-grid{
display:flex;
gap:30px;
justify-content:center;
margin-top:40px;
}

.service-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
width:250px;
}


/* CALL BUTTON */

.call-btn{
position:fixed;
bottom:20px;
right:20px;
background:#0077ff;
color:white;
padding:16px;
border-radius:50%;
font-size:22px;
text-decoration:none;
}

/* ANIMATION */

@keyframes fadeIn{
0%{
opacity:0;
transform:translateY(30px);
}
100%{
opacity:1;
transform:translateY(0);
}
}


























/* HERO SECTION */
.method-hero {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("images/win1.jpeg");
  background-size: cover;
  background-position: center;
  animation:heroZoom 20s ease-in-out infinite alternate;
z-index:-2;
}

.method-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
  animation: fadeIn 1.5s ease;
}

.method-hero p {
  font-size: 20px;
  animation: fadeIn 2.5s ease;
}


/* STEPS SECTION */
.steps {
  padding: 80px 20px;
  max-width: 2600px;
  margin: auto;
  text-align: center;
}

.steps h2 {
  margin-bottom: 50px;
  font-size: 32px;
  color: #0d3b66;
}


/* GRID */
.step-grid {
  display:inline-flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}


/* CARD */
.step-card {
  background: white;
  width: 350px;
  border-radius: 12px;
  overflow: hidden; /* important */
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}


.media-box{
width:100%;
height:220px;
overflow:hidden;
border-radius:10px;
}



.step-card img,
.step-card video {
width: 100%;
height: 220px;       /* SAME HEIGHT for both */
object-fit: cover;   /* keeps crop neat */
display: block;
border-radius: 10px;
}

/* TEXT CONTENT */
.step-card h3 {
  margin: 15px;
  font-size: 20px;
  color: #0d3b66;
}

.step-card p {
  margin: 0 15px 20px;
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}


/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* MOBILE */
@media (max-width: 768px) {
  .method-hero h1 {
    font-size: 32px;
  }

  .method-hero p {
    font-size: 16px;
  }

  .step-card {
    width: 90%;
  }
}



















/* CONTACT HERO page */
.contact-hero{
height:60vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:white;
background:
linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
url("images/wind3.jpeg");
background-size:cover;
background-position:center;
animation:heroZoom 20s ease-in-out infinite alternate;
z-index:-2;
}


.contact-hero h1{
font-size:40px;
margin-bottom:10px;
}

.contact-hero p{
font-size:18px;
opacity:0.9;
}

/* CONTACT FORM LAYOUT */
.contact-section{
padding:60px 20px;
background:#f5f5f5;
}

.contact-container{
max-width:1100px;
margin:auto;
display:flex;
flex-wrap:wrap;
gap:40px;
justify-content:center;
align-items:flex-start;
}

.contact-form,
.contact-info{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
width:100%;
max-width:450px;
}

.contact-form h2,
.contact-info h2{
margin-bottom:18px;
color:#0d3b66;
font-size:24px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
margin:8px 0;
border:1px solid #ccc;
border-radius:6px;
font-size:16px;
}

.contact-form textarea{
min-height:140px;
resize:none;
}

.btn-submit{
background:#1a73e8;
color:white;
padding:12px 22px;
border:none;
border-radius:6px;
font-size:18px;
cursor:pointer;
transition:0.3s;
}

.btn-submit:hover{
background:#0d5bd7;
}

/* CONTACT INFO */
.contact-info p{
font-size:16px;
margin-bottom:10px;
}

.contact-info a{
color:#0077ff;
text-decoration:none;
}

.contact-info a:hover{
text-decoration:underline;
}

/* GOOGLE MAP */
.map-section{
margin-top:40px;
text-align:center;
}

.map-section h2{
margin-bottom:18px;
color:#0d3b66;
font-size:26px;
}

/* MOBILE */
@media (max-width:768px){
.contact-container{
flex-direction:column;
align-items:center;
}
}

















/* HERO FOR SER
background:linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url("images/win7.jpeg");
background-size:cover;
background-position:center;
text-align:center;
color:white;
padding:80px 20px;
}

VICES pages */


/*services*/
.services-hero{
height:50vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:white;
background:
linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
url("images/wind6.jpeg");
background-size:cover;
background-position:center;
animation:heroZoom 20s ease-in-out infinite alternate;
z-index:-2;
}

.services-hero h1{
font-size:48px;
margin-bottom:15px;
animation:fadeIn 1.5s;
}

.services-hero p{
font-size:20px;
animation:fadeIn 2.5s;
}

/* SERVICES GRID */
.services-section{
padding:80px 20px;
max-width:1200px;
margin:auto;
text-align:center;
}

.services-section h2{
margin-bottom:50px;
font-size:32px;
color:#0d3b66;
}

.services-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
}

.service-card{
background:white;
padding:25px;
width:300px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:transform 0.3s, box-shadow 0.3s;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.service-card img{
width:100%;
height:200px;
object-fit:cover;
border-radius:10px 10px 0 0;
margin-bottom:15px;
}

.service-card h3{
margin-bottom:10px;
font-size:22px;
color:#0d3b66;
}

.service-card p{
font-size:16px;
color:#333;
line-height:1.5;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){
.services-grid{
flex-direction:column;
align-items:center;
}
}

/* =====================
   WHAT MAKES US DIFFERENT - BACKGROUND IMAGE
===================== */
.difference {
    padding:80px 20px;
    max-width:1200px;
    margin:auto;
    text-align:center;

    /* Background image */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('images/brush1.jpeg') no-repeat center center;
    background-size:cover;
    color:white;  /* Make text white for contrast */
    border-radius:12px;
}

/* Cards on top of background */
.diff-cards {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
    margin-top:40px;
}

.diff-card {
    background: rgba(255, 255, 255, 0.9); /* semi-transparent for readability */
    padding:25px;
    width:300px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    transition:transform 0.3s, box-shadow 0.3s;
    color:#0d3b66; /* Dark text inside cards */
}

.diff-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

.diff-card h3{
    margin-bottom:10px;
    font-size:20px;
}

.diff-card p{
    font-size:15px;
    line-height:1.6;
}

/* Responsive */
@media(max-width:768px){
    .diff-cards {
        flex-direction:column;
        align-items:center;
    }
}
/* =====================
   ABOUT US
===================== */
.about {
    padding:80px 20px;
    max-width:1200px;
    margin:auto;
    background:#f9f9f9;
}

.about-content {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.about-text {
    flex:1;
    min-width:280px;
}

.about-text h2 {
    font-size:36px;
    color:#0d3b66;
    margin-bottom:25px;
    opacity:0;
    transform:translateY(30px);
    animation:fadeInUp 1s forwards;
}

.about-text p {
    font-size:16px;
    color:#333;
    line-height:1.8;
    margin-bottom:25px;
    opacity:0;
    transform:translateY(30px);
    animation:fadeInUp 1s 0.3s forwards; /* delay 0.3s */
}

.about-text .btn {
    background:#0077ff;
    color:white;
    padding:12px 30px;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
    opacity:0;
    transform:translateY(30px);
    animation:fadeInUp 1s 0.6s forwards; /* delay 0.6s */
}

.about-text .btn:hover {
    background:#005ed6;
    transform:translateY(-3px);
}

.about-img {
    flex:1;
    min-width:280px;
    text-align:center;
}

.about-img img {
    width:100%;
    max-width:450px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    opacity:0;
    transform:translateY(30px);
    animation:fadeInUp 1s 0.9s forwards; /* delay 0.9s */
}

/* Fade-in animation */
@keyframes fadeInUp {
    to {
        opacity:1;
        transform:translateY(0);
    }
}

/* Responsive */
@media(max-width:768px){
    .about-content {
        flex-direction:column;
    }
    .about-text h2 {
        font-size:28px;
    }
    .about-text p {
        font-size:15px;
    }
    .about-img img {
        max-width:100%;
    }
}


/* =====================
   GLOBAL STYLES
===================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#f4f6f8;
    color:#141315;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:inherit;
}

/* =====================
   HEADER
===================== */
header{
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:1000;
}

.nav{
    max-width:1200px;
    margin:auto;
    padding:18px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.nav h2{
    font-size:22px;
    color:#0d3b66;
}

.nav nav a{
    margin:0 15px;
    font-weight:500;
    color:#333;
    transition:0.3s;
}

.nav nav a:hover{
    color:#0077ff;
}

.call-number a{
    font-weight:600;
    color:#0077ff;
}
 































/* WORK HERO SECTION */
.Work{
height:50vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:white;
background:
linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
url("images/wind6.jpeg");
background-size:cover;
background-position:center;
animation:heroZoom 20s ease-in-out infinite alternate;
z-index:-2;
}

.Work h1{
font-size:48px;
margin-bottom:15px;
animation:fadeIn 1.5s;
}

.Work p{
font-size:20px;
animation:fadeIn 2s;
}


/* GALLERY SECTION */

.gallery{
padding:80px 20px;
background:#f5f5f5;
overflow:hidden;
}

/* TRACK */

.gallery-track{
width:100%;
overflow:hidden;
}

/* SLIDE CONTAINER */

.gallery-slide{
display:flex;
gap:20px;
width:max-content;
animation:slideGallery 160s linear infinite;}

/* IMAGES */

.gallery-slide img{
width:350px;
height:250px;
object-fit:cover;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
transition:0.3s;
}

/* HOVER EFFECT */

.gallery-slide img:hover{
transform:scale(1.05);
}

/* SLIDING ANIMATION */
@keyframes slideGallery{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-100%);
}
}

/* CTA SECTION */
.cta{
background:#1a73e8;
color:white;
text-align:center;
padding:70px 20px;
}

.cta h2{
font-size:32px;
margin-bottom:15px;
}

.cta p{
font-size:18px;
margin-bottom:25px;
}

.cta .btn{
background:white;
color:#1a73e8;
padding:14px 30px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

.cta .btn:hover{
background:#e6f0ff;
transform:translateY(-3px);
}


/* VIDEO SECTION */
.video-section {
    text-align: center;
    padding: 50px 20px;
}

.video-box {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.video-box iframe {
    width: 100%;
    max-width: 700px;
    height: 400px;
    border-radius: 15px;
}

/* MOBILE */
@media(max-width:768px){
    .video-box iframe {
        height: 250px;
    }
}





















/* FOOTER STYLING */
.footer-social a{
font-size: 24px;
margin-right: 15px;
color: #f7f8f9;
text-decoration: none;
}

.footer-social a:hover{
color: #0056b3;
}   
.footer-social h3{
    font-size: 18px;
    margin-right: 15px;
    color:#00aaff;
}


footer{
    background:#0e0e0e;
    color:white;
    padding:60px 20px 20px 20px;
    font-family:'Poppins', sans-serif;
}

/* FOOTER MAIN CONTAINER */
.footer-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:40px;
    max-width:1200px;
    margin:auto;
}

/* SECTIONS: CONTACT, LINKS, ABOUT */
.footer-contact,
.footer-links,
.footer-about{
    flex:1;
    min-width:250px;
}

/* SECTION HEADINGS */
.footer-contact h3,
.footer-links h3,
.footer-about h3{
    font-size:18px;
    margin-bottom:15px;
    color:#00aaff;
}

/* PARAGRAPHS */
.footer-contact p,
.footer-links p,
.footer-about p{
    font-size:14px;
    line-height:1.6;
}

/* QUICK LINKS LIST */
.footer-links ul{
    list-style:none;
    padding:0;
}

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

.footer-links ul li a,
.footer-contact a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.footer-links ul li a:hover,
.footer-contact a:hover{
    color:#00aaff;
}

/* FOOTER BOTTOM TEXT */
.footer-bottom{
    text-align:center;
    margin-top:20px;
    font-size:13px;
    color:#999;
}



/* MOBILE RESPONSIVE */
@media(max-width:768px){
    .footer-container{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }
}





.whatsapp-container{
position:fixed;
bottom:20px;
right:20px;
display:flex;
align-items:center;
z-index:1000;
}

/* WhatsApp Button */
.whatsapp-float{
width:60px;
height:60px;
background:#25D366;
color:white;
border-radius:50%;
text-align:center;
font-size:30px;
line-height:60px;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
margin-left:10px;
animation:pulse 2s infinite;
}

/* Message bubble */
.whatsapp-notification{
background:white;
color:#333;
padding:10px 15px;
border-radius:20px;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
font-size:14px;
animation:slideIn 1s ease forwards;
}

/* Slide animation */
@keyframes slideIn{
0%{
opacity:0;
transform:translateX(40px);
}
100%{
opacity:1;
transform:translateX(0);
}
}

/* Pulse animation */
@keyframes pulse{
0%{box-shadow:0 0 0 0 rgba(37,211,102,0.7);}
70%{box-shadow:0 0 0 20px rgba(37,211,102,0);}
100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}







/* Chatbox container */
#chatbox {
    width: 350px;
    max-height: 500px;
    border: 2px solid #007BFF;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

/* Messages container */
#messages {
    flex: 1;
    overflow-y: auto;
    padding: 5px;
    margin-bottom: 10px;
}

/* Each message */
#messages p {
    margin: 5px 0;
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 80%;
    word-wrap: break-word;
}

/* User messages */
#messages p:nth-child(odd) {
    background-color: #007BFF;
    color: white;
    align-self: flex-end;
}

/* Bot messages */
#messages p:nth-child(even) {
    background-color: #e5e5ea;
    color: black;
    align-self: flex-start;
}

/* Input field */
#user_input {
    width: calc(100% - 70px);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #ccc;
    outline: none;
}

/* Send button */
#chatbox button {
    width: 50px;
    margin-left: 10px;
    border: none;
    background-color: #007BFF;
    color: white;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.2s;
}

#chatbox button:hover {
    background-color: #0056b3;
}





/* HAMBURGER MENU */

.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
}

.menu-toggle span{
width:25px;
height:3px;
background:#0d3b66;
margin:4px 0;
display:block;
}


/* MOBILE NAV */

@media(max-width:768px){

.nav{
flex-wrap:wrap;
}

nav{
width:100%;
display:none;
flex-direction:column;
align-items:center;
background:white;
margin-top:10px;
}

nav a{
padding:12px 0;
font-size:18px;
}

nav.active{
display:flex;
}

.menu-toggle{
display:flex;
}

.call-number{
width:100%;
text-align:center;
margin-top:10px;
}

}














.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
}

.menu-toggle span{
width:25px;
height:3px;
background:#0d3b66;
margin:4px 0;
display:block;
}

@media(max-width:768px){

.nav{
flex-wrap:wrap;
}

nav{
display:none;
flex-direction:column;
width:100%;
background:white;
text-align:center;
margin-top:10px;
}

nav a{
display:block;
padding:12px 0;
font-size:18px;
}

nav.active{
display:flex;
}

.menu-toggle{
display:flex;
}

.call-number{
width:100%;
text-align:center;
margin-top:10px;
}

}





   .rating-badge{
background:#fff;
padding:25px 20px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
margin:20px auto;
}

.rating-content{
display:flex;
flex-direction:column;
align-items:center;
gap:8px;
}

.rating-content .stars{
color:#f5b301;
font-size:22px;
letter-spacing:2px;
}

.rating-content p{
font-size:16px;
color:#333;
}

.rating-content a{
margin-top:5px;
color:#0077ff;
font-weight:600;
text-decoration:none;
}

.rating-content a:hover{
text-decoration:underline;
}







.call-float{
position:fixed;
bottom:90px;
right:20px;
background:#0077ff;
color:white;
padding:15px 18px;
border-radius:50px;
font-size:16px;
font-weight:600;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
z-index:1000;
text-decoration:none;
display:flex;
align-items:center;
gap:8px;
}

.call-float:hover{
background:#005ed6;
}

/* hide on desktop */

@media(min-width:768px){
.call-float{
display:none;
}
}