 *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}
body{
    background:#0a2a43;
    color:#333;
    overflow-x: hidden;
}
a{
  text-decoration:none
}
 /* ================= NAVBAR ================= */
.navbar{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    background:rgba(10,42,67,0.95);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:22px;
    font-weight:bold;
    margin-left: 5px;
}
.logo img{
    height:60px;
}
.logo span{
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}


.nav-links a{
    color:#fff;
    font-size:18px;
    font-weight: bold;
}
.nav-links a:hover{
    color:#00c2ff;
}


.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:25px;
}

.nav-links li{
  position:relative;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  padding:8px 10px;
  display:flex;
  align-items:center;
  gap:6px;
}

/* Dropdown menu */
.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  background:#0a2a43;
  min-width:150px;
  border-radius:8px;
  padding:10px 0;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.3s;
  box-shadow:0 10px 25px rgba(0,0,0,.4);
  z-index:999;
  list-style: none;
  margin: 0;
}

.dropdown-menu li a{
  padding:10px 18px;
  display:block;
  font-size:14px;
}

.dropdown-menu li a:hover{
  background:#00c2ff;
  color:#000;
}

/* Hover open */
.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.social{
margin-left:-10px;
}

.social a{
padding:6px 6px;
}
.nav-links .social a {
    border: 2px solid transparent;
    border-radius: 50%;
    padding: 8px;
    transition: all 0.3s ease;
}
.nav-links .social a:hover {
    border-color: #00c2ff;
    transform: rotate(10deg) scale(1.1);
}
.nav-links li.dropdown a i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-links li.dropdown:hover a i {
    transform: rotate(180deg);
    color: #00c2ff;
}
.nav-links li a {
    position: relative;
    transition: all 0.3s ease;
    color: #fff;
    padding: 8px 10px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #00c2ff;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform: translateX(-50%);
}

.nav-links li a:hover::after {
    width: 80%;
}

.nav-links li a:hover {
    transform: translateY(-2px);
}

.nav-links li.dropdown:hover a i {
    transform: rotate(180deg);
    color: #00c2ff;
}
/* Hide nav links and show hamburger on mobile */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px; 
    right: -100%; 
    width: 250px;
    height: 100%;
    background: #0a2a43;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 1001;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    width: 100%;
    padding: 10px;
  }

  .nav-links.open {
    right: 0;
  }

  /* Hamburger */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1002;
  }

  .hamburger div {
    width: 100%;
    height: 3px;
    background: #fff;
    transition: 0.3s;
  }

  /* Change hamburger into X when open */
  .hamburger.open div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.open div:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Dropdowns in mobile */
  .nav-links li.dropdown .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    width: 100%;
    padding-left: 15px;
    background: rgba(0,0,0,0.05);
    border-radius: 5px;
  }

  .nav-links li.dropdown.open .dropdown-menu {
    display: block;
  }
}
/* ================= NAVBAR MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  /* Mobile nav links */
 .nav-links {
    position: fixed;
    top: 95px;
    right: -100%; /* hidden by default */
    width: 160px;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    background: #0a2a43;
    transition: right 0.3s ease;
    z-index: 1001;
  }


  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    width: 100%;
    padding: 12px 15px;
  }

  /* Show menu when open */
  .nav-links.open {
    right: 0;
  }

  /* Hamburger */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1002;
  }

  .hamburger div {
    width: 100%;
    height: 3px;
    background: #fff;
    transition: 0.3s;
  }

  /* Hamburger animation to X */
  .hamburger.open div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.open div:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

   /* Mobile dropdowns */
.nav-links li.dropdown .dropdown-menu {

    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;

    display: none;   /* IMPORTANT: default hidden */

    width: 100%;
    padding-left: 15px;
    background: rgba(0,0,0,0.05);
    border-radius: 5px;
}


/* open when clicked */
.nav-links li.dropdown.open .dropdown-menu {

    display: block;

}
}
/* ===== MOBILE SIDEBAR SOCIAL ICONS ===== */
@media (max-width: 768px) {
    
    .nav-links li.desktop-social {
        display: none !important;
    }
    
    .nav-links .mobile-social-icons-container {
        display: block !important;
        width: 100% !important;
        list-style: none !important;
        margin-top: 10px !important;  
        padding: 0 !important;
    }
    
    .mobile-social-icons {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;  
        padding: 10px 0 !important;  
        
        width: 100% !important;
    }
    
    .social-icon-mobile {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important; 
        height: 40px !important;  
        background: rgba(255, 255, 255, 0.15) !important;
        border-radius: 50% !important;
        color: #fff !important;
        font-size: 18px !important;  
        transition: all 0.3s ease !important;
        text-decoration: none !important;
    }
    
    .social-icon-mobile:hover {
        background: #00c2ff !important;
        transform: scale(1.1) !important;
    }
}


@media (min-width: 769px) {
    
    .nav-links .mobile-social-icons-container {
        display: none !important;
    }
    
    
    .nav-links li.desktop-social {
        display: inline-flex !important;
    }
}
/* ===== SHOW LOGO IN MOBILE SIDEBAR ===== */
@media (max-width: 768px) {
    .nav-links .mobile-logo {
        display: block !important;
        text-align: center;
         padding: 10px 0; 
         margin-top: 0 0 15px 0;    
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        list-style: none;
    }
    
    .nav-links .mobile-logo img {
        height: 40px;           
        width: auto;
        filter: brightness(0) invert(1);
        display: block;
        margin: 0 auto;
    }
    
    
    .nav-links {
        padding-top: 30px !important;  
    }
}

/* Desktop  mobile-logo hide */
@media (min-width: 769px) {
    .nav-links .mobile-logo {
        display: none !important;
    }
}
/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 0px;
}

.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  z-index:1;
  transition:opacity 1.5s ease-in-out;
}


/* overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}



/* hero content exact center */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);  
  z-index: 3;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

/* optional spacing */
.hero h1{
  font-size:42px;
  margin-bottom:10px;
}

.hero p{
  font-size:18px;
}

body h1{

text-align:center;
margin-bottom:50px;
font-size:38px;
font-weight:600;
color:rgba(224, 226, 227, 0.95);
letter-spacing:1px;

}
body h2{
text-align:center;
margin-top:50px;
margin-bottom:50px;
font-size:38px;
font-weight:600;
color:rgba(21, 23, 24, 0.95);
letter-spacing:1px;

}
body{
font-family:Arial, sans-serif;
background:#f0f4f8;
overflow-x: hidden;
}

.section{

display:flex;
align-items:center;
justify-content:center;
gap:60px;
margin:100px auto;
max-width:1000px;
flex-wrap:wrap;

}
/* EVEN SECTION REVERSE */

.section:nth-child(even){

flex-direction:row-reverse;

}


/* TEXT SIDE */

.text{

flex:1;
min-width:300px;
font-weight: bold;

}

.text h1{

margin-bottom:20px;

}


/* CARD */

.service-card{

width:450px;
height:350px;
position:relative;
overflow:hidden;
border-radius:15px;
cursor:pointer;

}

.service-card img{

width:100%;
height:100%;
object-fit:cover;

}


/* BLUE GLASS SHUTTER */

.panel{

position:absolute;
width:100%;
height:50%;
background:rgba(0,120,255,0.4);
backdrop-filter:blur(8px);
transition:.5s;

}

/* hidden first */

.panel.top{

top:0;
transform:translateY(-100%);

}

.panel.bottom{

bottom:0;
transform:translateY(100%);

}


/* hover par close */

.service-card:hover .top{

transform:translateY(0);

}

.service-card:hover .bottom{

transform:translateY(0);

}


/* TEXT ON IMAGE */

.content{

position:absolute;
bottom:20px;
left:20px;
color:white;
z-index:2;

}


/* BUTTON */

.readmore{

padding:10px 25px;
background:#007bff;
color:white;
border:none;
cursor:pointer;
border-radius:5px;

}


/* EXTRA CARDS */

.extra{

display:none;
width:100%;
text-align:center;
margin-top:30px;

}

.extra .card{

display:inline-block;
width:290px;
height:280px;
margin:10px;
position:relative;
overflow:hidden;
border-radius:10px;

}

.extra img{

width:100%;
height:100%;
object-fit:cover;

}

.extra .panel{

position:absolute;
width:100%;
height:50%;
background:rgba(0,120,255,0.4);
backdrop-filter:blur(6px);
transition:.5s;

}

.extra .top{

top:0;
transform:translateY(-100%);

}

.extra .bottom{

bottom:0;
transform:translateY(100%);

}

.extra .card:hover .top{

transform:translateY(0);

}

.extra .card:hover .bottom{

transform:translateY(0);

}


/* MOBILE */

/* MOBILE RESPONSIVE */

@media(max-width:768px){

body{

padding:20px;

}


/* section column */

.section{

flex-direction:column !important;
gap:20px;
margin:60px auto;

}


/* service card full width */

.service-card{

width:100%;
height:220px;

}


/* text center */

.text{

text-align:center;

}

.text h1{

font-size:24px;

}


/* read more button */

.readmore{

margin-top:10px;

}


/* extra cards mobile */

.extra{

display:none;
text-align:center;

}


/* stack extra cards */

.extra .card{

width:100%;
height:200px;
margin:10px 0;

}

/* content text adjust */

.content{

bottom:15px;
left:15px;

}

.content h3{

font-size:18px;

}

}

/* repair */
.heading{

text-align:center;
font-size:36px;
margin:60px 0 40px;

}


.repair-container{

display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;

}

/* CARD */

.repair-card{

width:300px;
height:400px;
position:relative;
border-radius:15px;
overflow:hidden;
cursor:pointer;

}


.repair-card img{

width:100%;
height:100%;
object-fit:cover;

}


/* BLUE GLASS SHUTTER */

.panel{

position:absolute;
width:100%;
height:50%;
background:rgba(0,120,255,0.4);
backdrop-filter:blur(8px);
transition:.5s;

}


/* hidden first */

.panel.top{

top:0;
transform:translateY(-100%);

}

.panel.bottom{

bottom:0;
transform:translateY(100%);

}


/* hover par close */

.repair-card:hover .top{

transform:translateY(0);

}

.repair-card:hover .bottom{

transform:translateY(0);

}

.repair-text{

position:absolute;
bottom:15px;
left:20px;
color:white;
font-size:20px;
font-weight:600;
z-index:2;

}
/* painting */
.heading{

text-align:center;
font-size:36px;
margin:60px 0 40px;

}


.painting-container{

display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-bottom:80px; 
}


/* CARD */

.painting-card{

width:300px;
height:400px;
position:relative;
border-radius:15px;
overflow:hidden;
cursor:pointer;

}


.painting-card img{

width:100%;
height:100%;
object-fit:cover;

}


/* SAME BLUE GLASS */

.panel{

position:absolute;
width:100%;
height:50%;
background:rgba(0,120,255,0.4);
backdrop-filter:blur(8px);
transition:.5s;

}


.panel.top{

top:0;
transform:translateY(-100%);

}

.panel.bottom{

bottom:0;
transform:translateY(100%);

}

.painting-card:hover .top{

transform:translateY(0);

}

.painting-card:hover .bottom{

transform:translateY(0);

}


/* TEXT */

.painting-text{
position:absolute;
bottom:15px;
left:20px;
color:white;
font-size:20px;
font-weight:600;
z-index:2;

}

/* ================= FOOTER ================= */
.footer{
    background:rgba(10,42,67,0.95);
    color:#ccc;
    padding:5px 60px 10px;
}
.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 0.8fr 1fr 1.2fr;
    gap:20px;
    font-size:large;
}
.footer-grid > div a{
    display:block;        
    margin-bottom:8px;
    line-height:1.5;
}

.footer-grid > div h3{
    margin-bottom:12px;
    line-height:3;
}
.footer-logo img{
    height:80px !important;
    margin-bottom:5px;
}

.footer-logo{
    margin-top: 30px;
    margin-bottom:15px;
       
}
.footer h3{
    color:#fff;
    margin-bottom:15px;
     
}
.footer a{
    color:#ccc;
    margin-bottom:8px;
}
.footer a{

    display:inline-block;
    transition:0.4s ease;

}
.footer-title:hover{

    letter-spacing:1px;
    transform:translateX(10px) scale(1.05);

}

/* Slide + Glow Effect */

.footer a:hover{

    color:#00c2ff;                 
    transform:translateX(8px);    

    text-shadow:0 0 8px #00c2ff;  

}

.footer-bottom{
    margin-top:40px;
    border-top:1px solid #060244;
    padding-top:15px;
    font-size:14px;
    overflow-x:auto;  
    overflow-x: hidden;        
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    white-space:nowrap;      
    flex-wrap:nowrap;
}

.footer-left,
.footer-right{
    white-space:nowrap;
    flex-shrink:0;            
}

.footer-link{
    color:#ccc;
    text-decoration:none;
    margin-left:6px;
}

.footer-link:hover{
    color:#00c853;
}
/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 20px;
    text-decoration: none;

    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    place-items: center;
    line-height: 1;   
}
.social-icon i{
    display: block;
    line-height: 2;
    
}
.social-icon.facebook {
    background: #1877f2;  
}

.social-icon.email {

    background: #d44638; 

}

.social-icon.instagram {
    background: radial-gradient(circle at 30% 30%, #fd5949, #d6249f, #fd5949, #d6249f, #285AEB);
}

/* Hover Effects */
.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .social-icons {
        gap: 12px;
        margin-top: 20px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}


/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .hero-content{
        padding:20px;
    }
    .hero h1{
        font-size:32px;
    }
}
.footer-contact-item{

    transition:0.4s;
    line-height: 1.7;    
}

.footer-contact-item:hover{

    transform:translateX(10px);
    color:#00c2ff;

}

.footer-contact-item:hover i{

    box-shadow:0 0 10px #00c2ff;
    transform:scale(1.2);

}


@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}
/* ================= MOBILE VIEW ONLY ================= */

@media(max-width:768px){

/* Footer padding reduce */
.footer{
    padding:30px 20px 20px;
    text-align:center;
}


/* Grid → 1 column */
.footer-grid{
    grid-template-columns:1fr;
    gap:25px;
    font-size:16px;
}


/* Logo center */
.footer-logo{
    margin-top:10px;
}

.footer-logo img{
    height:70px;
}


/* Links center */
.footer-grid > div a{
    display:block;
}


/* Social icons center */
.social-icons{
    justify-content:center;
}


/* Footer Bottom Fix */
.footer-content{

    flex-direction:column;
    align-items:center;
    text-align:center;

}


/* remove nowrap problem */
.footer-left,
.footer-right{

    white-space:normal;

}


.footer-right{

    margin-top:5px;

}


/* copyright links spacing */
.footer-link{

    margin:5px;

}

}



/* extra small mobile */

@media(max-width:480px){

.footer{

    padding:25px 15px;

}


.footer h3{

    font-size:18px;

}


.social-icon{

    width:36px;
    height:36px;
    font-size:16px;

}
/* Hide Footer Bottom links and Quick Links on Mobile */

@media(max-width:768px){

/* Hide Terms & Conditions and Privacy Policy */
.footer-right{
    display:none;
}

/* Hide Quick Links section */
.footer-grid > div:nth-child(2){
    display:none;
}

}
}
/* WhatsApp Sticky */
.whatsapp-sticky{
  position:fixed;
  left:20px;
  bottom:20px;
  width:55px;
  height:55px;
  background:#25d366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  z-index:9999;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
  transition:0.3s;
}

.whatsapp-sticky:hover{
  transform:scale(1.1);
  background:#1ebe5d;
}
/* Hide text by default */
.painting-text,
.repair-text {
    opacity: 0;
    transform: translateY(20px); 
    transition: all 0.3s ease;
    pointer-events: none; 
}

/* Show text only on hover */
.painting-card:hover .painting-text,
.repair-card:hover .repair-text {
    opacity: 1;
    transform: translate(-0%, -50%)translateY(0);
}
/* Hero reveal fix */
.hero-content.reveal{

opacity:0;

transform:translate(-50%, calc(-50% + 60px));

transition:all .8s ease;

}

.hero-content.reveal.show{

opacity:1;

transform:translate(-50%, -50%);

}

.reveal{

opacity:0;

transform:translateY(60px);

transition:all .8s ease;

}

.reveal.show{

opacity:1;

transform:translateY(0);

}


/* ================= GLOBAL STYLES ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f0f4f8;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 42, 67, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    margin-left: 5px;
}

.logo img {
    height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #fff;
    font-size: 15px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #00c2ff;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 80%;
}

.nav-links a:hover {
    color: #00c2ff;
    transform: translateY(-2px);
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0a2a43;
    min-width: 150px;
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .4);
    z-index: 999;
    list-style: none;
    margin: 0;
}

.dropdown-menu li a {
    padding: 10px 18px;
    display: block;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #00c2ff;
    color: #000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links li.dropdown:hover a i {
    transform: rotate(180deg);
    color: #00c2ff;
}

/* Social icons */
.social a {
    border: 2px solid transparent;
    border-radius: 50%;
    padding: 8px !important;
    transition: all 0.3s ease;
}

.social a:hover {
    border-color: #00c2ff;
    transform: rotate(10deg) scale(1.1);
}

/* ================= MOBILE NAVBAR ================= */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 95px;
        left: -100%;
        width: 250px;
        height: 100%;
        background: #0a2a43;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 20px;
        transition: left 0.3s ease;
        z-index: 1001;
    }
    
    .nav-links.open {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links li a {
        width: 100%;
        padding: 12px 15px;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 28px;
        height: 22px;
        cursor: pointer;
        z-index: 1002;
    }
    
    .hamburger div {
        width: 100%;
        height: 3px;
        background: #fff;
        transition: 0.3s;
    }
    
    .hamburger.open div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.open div:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.open div:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .nav-links li.dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        width: 100%;
        padding-left: 15px;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 5px;
    }
    
    .nav-links li.dropdown.open .dropdown-menu {
        display: block;
    }
}



/* ================= SECTION TITLES ================= */
.section-main-title {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
    font-size: 38px;
    font-weight: 600;
    color: #0a2a43;
    letter-spacing: 1px;
}

h2 {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 38px;
    font-weight: 600;
    color: #0a2a43;
    letter-spacing: 1px;
}

/* ================= SERVICE SECTIONS ================= */
.section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin: 50px auto;
    max-width: 1000px;
    flex-wrap: wrap;
}

.section:nth-child(even) {
    flex-direction: row-reverse;
}

.text {
    flex: 1;
    min-width: 300px;
    font-weight: bold;
}

.text h2 {
    margin-bottom: 20px;
    font-size: 28px;
    text-align: left;
}

.text ul {
    list-style-type: disc;
    padding-left: 20px;
}

.text li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ================= SERVICE CARDS ================= */
.service-card {
    width: 450px;
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel {
    position: absolute;
    width: 100%;
    height: 50%;
    background: rgba(0, 120, 255, 0.4);
    backdrop-filter: blur(8px);
    transition: .5s;
}

.panel.top {
    top: 0;
    transform: translateY(-100%);
}

.panel.bottom {
    bottom: 0;
    transform: translateY(100%);
}

.service-card:hover .top,
.service-card:hover .bottom {
    transform: translateY(0);
}

.content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 2;
}

.readmore {
    padding: 10px 25px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.readmore:hover {
    background: #0056b3;
}

/* ================= EXTRA CARDS SECTION ================= */
.extra {
    display: none;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.extra-heading {
    font-size: 24px;
    color: #0a2a43;
    margin: 40px 0 20px;
}

.extra .card {
    display: inline-block;
    width: 290px;
    height: 280px;
    margin: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.extra img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= PAINTING/REPAIR CARDS ================= */
.painting-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.painting-card,
.repair-card {
    width: 300px;
    height: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.painting-card img,
.repair-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.painting-text,
.repair-text {
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.painting-card:hover .painting-text,
.repair-card:hover .repair-text {
    opacity: 1;
    transform: translateY(0);
}

.project-name {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.project-detail {
    display: block;
    font-size: 14px;
    margin-top: 3px;
}

.project-detail i {
    margin-right: 5px;
    color: #00c2ff;
}

/* ================= REVEAL ANIMATIONS ================= */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all .8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.hero-content.reveal {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 60px));
    transition: all .8s ease;
}

.hero-content.reveal.show {
    opacity: 1;
    transform: translate(-50%, -50%);
}


/* ================= FOOTER ================= */
.footer{
    background:rgba(10,42,67,0.95);
    color:#ccc;
    padding:5px 60px 10px;
}
.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 0.8fr 1fr 1.2fr;
    gap:20px;
    font-size:large;
}
.footer-grid > div a{
    display:block;        
    margin-bottom:8px;
    line-height:1.5;
}

.footer-grid > div h3{
    margin-bottom:12px;
    line-height:3;
}
.footer-logo img{
    height:130px;
    margin-bottom:5px;
}

.footer-logo{
    margin-top: 30px;
    margin-bottom:15px;
}
 
.footer h3{
    color:#fff;
    margin-bottom:15px;
     
}
.footer a{
    color:#ccc;
    margin-bottom:8px;
}
.footer a{

    display:inline-block;
    transition:0.4s ease;

}
.footer-title:hover{

    letter-spacing:1px;
    transform:translateX(10px) scale(1.05);

}

/* Slide + Glow Effect */

.footer a:hover{

    color:#00c2ff;                 
    transform:translateX(8px);    

    text-shadow:0 0 8px #00c2ff;  

}

.footer-bottom{
    margin-top:40px;
    border-top:1px solid #060244;
    padding-top:15px;
    font-size:14px;
    overflow-x:auto;  
    overflow-x: hidden; 
    padding-left: 30px;       
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    white-space:nowrap;      
    flex-wrap:nowrap;
}

.footer-left,
.footer-right{
    white-space:nowrap;
    flex-shrink:0;            
}

.footer-link{
    color:#ccc;
    text-decoration:none;
    margin-left:6px;
}

.footer-link:hover{
    color:#00c853;
}
/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 20px;
    text-decoration: none;

    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    place-items: center;
    line-height: 1;   
}
.social-icon i{
    display: block;
    line-height: 2;
    
}
.social-icon.facebook {
    background: #1877f2;  
}

.social-icon.email {

    background: #d44638; 

}

.social-icon.instagram {
    background: radial-gradient(circle at 30% 30%, #fd5949, #d6249f, #fd5949, #d6249f, #285AEB);
}

/* Hover Effects */
.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .social-icons {
        gap: 12px;
        margin-top: 20px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}
/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .hero-content{
        padding:20px;
    }
    .hero h1{
        font-size:32px;
    }
}
.footer-contact-item{

    transition:0.4s;
    line-height: 2.1;   
    padding:1px 0; 
}

.footer-contact-item:hover{

    transform:translateX(10px);
    color:#00c2ff;

}

.footer-contact-item:hover i{

    box-shadow:0 0 10px #00c2ff;
    transform:scale(1.2);

}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}
/* ================= MOBILE VIEW ONLY ================= */

@media(max-width:768px){

/* Footer padding reduce */
.footer{
    padding:30px 20px 20px;
    text-align:center;
}

/* Grid → 1 column */
.footer-grid{
    grid-template-columns:1fr;
    gap:25px;
    font-size:16px;
}

/* Logo center */
.footer-logo{
    margin-top:10px;
}

.footer-logo img{
    height:70px;
}

/* Links center */
.footer-grid > div a{
    display:block;
}

/* Social icons center */
.social-icons{
    justify-content:center;
}

/* Footer Bottom Fix */
.footer-content{

    flex-direction:column;
    align-items:center;
    text-align:center;

}

/* remove nowrap problem */
.footer-left,
.footer-right{

    white-space:normal;

}

.footer-right{

    margin-top:5px;

}

/* copyright links spacing */
.footer-link{

    margin:5px;

}

}

/* extra small mobile */

@media(max-width:480px){

.footer{

    padding:25px 15px;

}


.footer h3{

    font-size:18px;

}


.social-icon{

    width:36px;
    height:36px;
    font-size:16px;

}
/* Hide Footer Bottom links and Quick Links on Mobile */

@media(max-width:768px){

/* Hide Terms & Conditions and Privacy Policy */
.footer-right{
    display:none;
}

/* Hide Quick Links section */
.footer-grid > div:nth-child(2){
    display:none;
}

}
}
/* ================= WHATSAPP STICKY ================= */
.whatsapp-sticky {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* ================= LOADING SPINNER ================= */
.loading-spinner-container {
    text-align: center;
    padding: 40px;
    width: 100%;
}

.loading-spinner {
    font-size: 40px;
    color: #00c2ff;
    margin-bottom: 15px;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero {
        margin-top: 80px;
        height: 50vh;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .section {
        flex-direction: column !important;
        gap: 20px;
        margin: 60px auto;
        padding: 0 20px;
    }
    
    .service-card {
        width: 100%;
        height: 220px;
    }
    
    .text {
        text-align: center;
    }
    
    .text h2 {
        text-align: center;
        font-size: 24px;
    }
    
    .text ul {
        text-align: left;
    }
    
    .extra .card {
        width: 100%;
        height: 200px;
        margin: 10px 0;
    }
    
    .painting-card,
    .repair-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer {
        padding: 30px 20px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-right {
        margin-top: 10px;
    }
    
    .painting-text,
    .repair-text {
        font-size: 16px;
    }
}

/* ================= COMPLETE MOBILE RESPONSIVE - WHITE SPACE FIXED ================= */
@media (max-width: 768px) {
    
    /* ===== GLOBAL FIXES ===== */
    html, body {
        width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    body {
        background: #f0f4f8; 
        position: relative;
        min-height: 100vh;
    }
    
    /* ===== NAVBAR ===== */
    .navbar {
        padding: 12px 20px;
        width: 100%;
        left: 0;
        right: 0;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        cursor: pointer;
        z-index: 1002;
        margin-right: 5px; 
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background: #fff;
        transition: all 0.3s ease;
        border-radius: 3px;
    }

    /* Sidebar - white space fix */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #0a2a43;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 20px 30px;
        gap: 15px;
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        display: flex;
        margin: 0;
        list-style: none;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .nav-links li a {
        width: 100%;
        padding: 14px 18px;
        color: #fff;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    /* Dropdown */
    .nav-links li.dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        padding-left: 20px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        box-shadow: none;
        margin-top: 5px;
    }

    .nav-links li.dropdown.open .dropdown-menu {
        display: block;
    }
    

    /* Hamburger Animation */
    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* ===== HERO SECTION ===== */
    .hero {
        height: 60vh;
        min-height: 400px;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .hero-content {
        padding: 0 20px;
        width: 100%;
    }

    .hero h1 {
        font-size: 32px;
        padding: 0 10px;
    }

    .hero p {
        font-size: 16px;
        padding: 0 20px;
    }

    /* ===== SECTIONS - WHITE SPACE FIX ===== */
    .about-intro,
    .services-section,
    .company-profile-section,
    .about-section,
    .team-profile-section,
    .team-section,
    .workers-section,
    .clients-section,
    .numbers-speak {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 50px 20px;
        overflow-x: hidden;
    }

    /* Remove any right margin/padding */
    .profile-wrapper,
    .about-container,
    .team-wrapper,
    .workers-cards,
    .numbers-grid,
    .clients-grid {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    /* ===== SERVICE CARDS ===== */
    .section {
        flex-direction: column !important;
        gap: 20px;
        margin: 30px auto;
        padding: 0 20px;
        width: 100%;
    }

    .service-card {
        width: 100%;
        height: 220px;
        margin: 0;
    }

    .text {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .text h2 {
        text-align: center;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .text ul {
        text-align: left;
        padding-left: 25px;
        max-width: 100%;
    }

    /* ===== SERVICES SHUTTER ===== */
    .services {
        padding: 40px 20px;
        width: 100%;
    }

    .services h2 {
        font-size: 22px;
        text-align: center;
        padding: 0 10px;
    }

    .services-images {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding: 0;
    }

    .shutter {
        width: 100%;
        height: 220px;
        margin: 0;
    }

    .shutter img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ===== PROJECTS ===== */
    .projects {
        padding: 50px 20px;
        width: 100%;
    }

    .project-row,
    .project-row.reverse {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        margin: 0 0 30px 0;
        padding: 0;
    }

    .project-text {
        text-align: center;
        padding: 0 10px;
        width: 100%;
    }

    .project-img {
        width: 100%;
        margin: 0;
    }

    .project-img img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    /* ===== CLIENTS ===== */
    .clients-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 0;
    }

    .client-card {
        padding: 20px 10px;
        margin: 0;
    }

    .client-card img {
        max-width: 100px;
        max-height: 50px;
        object-fit: contain;
    }

    /* ===== NUMBERS ===== */
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .number-box {
        padding: 30px 20px;
        margin: 0;
        width: 100%;
    }

    /* ===== PAINTING/REPAIR CARDS ===== */
    .painting-container {
        gap: 20px;
        padding: 0 20px;
        width: 100%;
        margin: 0 0 40px 0;
    }

    .painting-card,
    .repair-card {
        width: 100%;
        max-width: 300px;
        height: 350px;
        margin: 0 auto;
    }

    /* ===== EXTRA CARDS ===== */
    .extra {
        width: 100%;
        padding: 0 20px;
    }

    .extra .card {
        width: 100%;
        height: 200px;
        margin: 10px 0;
    }

/* ================= MOBILE VIEW ONLY ================= */
@media(max-width:768px){
    /* Footer padding reduce */
    .footer{
        padding:10px 20px 20px;
        text-align:center;
    }

    /* Grid → 1 column */
    .footer-grid{
        grid-template-columns:1fr;
        gap:25px;
        font-size:16px;
    }

    /* Logo center */
    .footer-logo{
        margin-top:10px;
        text-align:center;
    }

    .footer-logo img{
        height:70px;
    }

    /* Our Services section (2nd column) - HIDE */
    .footer-grid > div:nth-child(2) {
        display: none !important;
    }

    /* Contact section (3rd column) - LEFT ALIGN */
    .footer-grid > div:nth-child(3) {
        text-align: left !important;
        padding-left: 15px;
        display: block !important;
    }

    .footer-grid > div:nth-child(3) h3 {
        text-align: left !important;
        margin-left: 0;
    }

    .footer-grid > div:nth-child(3) .footer-contact-item {
        justify-content: flex-start !important;
        text-align: left !important;
        display: flex !important;
        align-items: center;
        margin-left: 0;
        padding-left: 5px;
    }

    .footer-grid > div:nth-child(3) .footer-contact-item i {
        margin-right: 15px;
        min-width: 20px;
        text-align: center;
    }

    .footer-grid > div:nth-child(3) .footer-contact-item span {
        text-align: left !important;
        flex: 1;
        margin-left: 0;
        padding-left: 0;
    }

    /* Fix for email and location links */
    .footer-grid > div:nth-child(3) a.footer-contact-item {
        text-decoration: none;
        width: 100%;
    }

    /* Quick Links section (4th column) - LEFT ALIGN */
    .footer-grid > div:nth-child(4) {
        display: block !important;
        text-align: left !important;
        padding-left: 15px;
    }

    .footer-grid > div:nth-child(4) h3 {
        text-align: left !important;
    }

    .footer-grid > div:nth-child(4) a {
        text-align: left !important;
        display: block;
        padding-left: 5px;
    }

    /* Social icons center */
    .social-icons{
        justify-content:center;
    }

    /* Footer Bottom Fix */
    .footer-content{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    /* remove nowrap problem */
    .footer-left,
    .footer-right{
        white-space:normal;
    }

    .footer-right{
        margin-top:5px;
    }

    /* copyright links spacing */
    .footer-link{
        margin:5px;
    }
}

/* extra small mobile */
@media(max-width:480px){
    .footer{
        padding:25px 15px;
    }

    .footer h3{
        font-size:18px;
    }

    .social-icon{
        width:36px;
        height:36px;
        font-size:16px;
    }

    /* Hide Terms & Conditions and Privacy Policy */
    .footer-right{
        display:none;
    }
}
    /* ===== WHATSAPP STICKY ===== */
    .whatsapp-sticky {
        width: 50px;
        height: 50px;
        font-size: 24px;
        left: 15px;
        bottom: 15px;
        z-index: 9999;
    }

    /* ===== REMOVE ANY EXTRA MARGINS/PADDINGS ===== */
    * {
        max-width: 100vw;
    }

    .container, 
    .wrapper,
    section {
        overflow-x: hidden;
    }

    /* Fix for any potential right spacing */
    .row, 
    [class*="col-"] {
        margin-right: 0;
        padding-right: 0;
    }

    
    img {
        max-width: 100%;
        height: auto;
    }
   
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 480px) {
    
    .nav-links {
        width: 220px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .about-content h3 {
        font-size: 22px;
    }

    .about-content p {
        font-size: 14px;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .client-card img {
        max-width: 120px;
    }

    .number-box h3 {
        font-size: 36px;
    }

    .footer-right {
        display: none;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/* ===== SCROLLBAR ===== */
.nav-links::-webkit-scrollbar {
    width: 4px;
}

.nav-links::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.nav-links::-webkit-scrollbar-thumb {
    background: #00c2ff;
    border-radius: 4px;
}