
html, body {
  margin: 0;
  padding: 0;
}

.menu-toggle {
  display: none;
}

body {
margin:0;
font-family: "Michroma", sans-serif;
background:#0B1F3A url('background.png') center/cover no-repeat fixed;
color:white;
}

section {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 5px; /* Adjust as needed */
  padding-bottom: 10px;
}

header { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px 40px; 
    border-radius: 30px; 
    position: sticky; 
    top: 10px; /* Added slight offset so blur is visible on all sides */
     z-index: 1000;
    
    /* Background & Blur */
    background-color: rgba(40, 40, 40, 0.6); /* Dark grey with 70% opacity */
    backdrop-filter: blur(10px); /* Blurs the content behind the header */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    
    /* Lighter edge (Glassmorphism effect) */
    border: 1px solid rgba(255, 255, 255, 0.1); 
box-shadow:0 0 20px rgba(255, 255, 255, 1)
}
header {
  margin-top: 20px; /* Pushes the hero section down */
}

nav a {
display: inline-block;
margin:0 15px;
color:white;
text-decoration:none;
}

nav a {
box-shadow:0 0 15px rgba(255, 255, 255, 1);
position: center;
  border: 2px solid #333;
  border-radius: 50px;
  padding: 8px 20px;
  text-decoration: none;
}

nav a:hover {
  /* This runs the animation we defined above */
  animation: pulse-glow 1.5s infinite ease-in-out;
  border-color: #fff;
}



/* LOGO ANIMATION */

.logo {
height:80px;
border-radius: 50%;
animation: glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse {
0% {filter: drop-shadow(0 0 5px #3FB7FF);}
50% {filter: drop-shadow(0 0 25px #6FE6FF);}
100% {filter: drop-shadow(0 0 5px #3FB7FF);}
}

.logo-wrapper {
  display: flex;
  align-items: center;   /* Keeps them perfectly level */
  justify-content: flex-start; /* Forces them to the left */
  gap: 15px;             /* This is the exact space between them */
  padding-left: 20px;    /* Moves the whole group away from the edge */
}



/* HERO */

.hero {
text-align:center;
padding:120px 20px;

 border-radius: 110px;
   max-width: 1150px;
     max-height: 950px;  /* Adjust this number to your preferred width */
  margin: 0 auto; 
  
    /* Background & Blur */
    background-color: rgba(40, 40, 40, 0.6); /* Dark grey with 70% opacity */
    backdrop-filter: blur(10px); /* Blurs the content behind the header */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    
    /* Lighter edge (Glassmorphism effect) */
    border: 1px solid rgba(255, 255, 255, 0.1); 
box-shadow:0 0 20px rgba(255, 255, 255, 1)
}


.hero h1 {
font-size:48px;
}

.hero {
  margin-top: 50px;    /* Pushes itself away from the header */
 
}



/* BUTTONS */

.glow-btn {
background:#3FB7FF;
border:none;
padding:15px 30px;
color:white;
border-radius:8px;
box-shadow:0 0 15px #3FB7FF;
cursor:pointer;
}

.glow-btn:hover {
  transform: scale(1.03); /* Subtle grow effect on hover */
}

.quote-btn{
background:#3FB7FF;
box-shadow:0 0 30px rgba(63,183,255,0.3);
position: center;
  border: 2px solid #333;
  border-radius: 70px;
  padding: 21px 40px;
  text-decoration: none;
  font-family: "Michroma", sans-serif;
  cursor:pointer;


}

.quote-btn:hover {
  transform: scale(1.08); /* Subtle grow effect on hover */
}

/* SERVICES */

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

.grid {
display:flex;
gap:30px;
justify-content:center;
border-radius:30px;
flex-wrap:wrap;

}

.about-grid {
display:flex;
gap:30px;
justify-content:center;
border-radius:30px;
flex-wrap:wrap;
}
.card {
padding:30px;
background:#08172d;
border-radius:30px;
   /* Background & Blur */
    background-color: rgba(40, 40, 40, 0.6); /* Dark grey with 70% opacity */
    backdrop-filter: blur(10px); /* Blurs the content behind the header */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    
    /* Lighter edge (Glassmorphism effect) */
    border: 1px solid rgba(255, 255, 255, 0.1); 
box-shadow:0 0 20px rgba(255, 255, 255, 1)
}

.contact-card {
padding:30px;
background: #444c57;
border-radius:50px;
   /* Background & Blur */
    background-color: rgba(40, 40, 40, 0.6); /* Dark grey with 70% opacity */
    backdrop-filter: blur(10px); /* Blurs the content behind the header */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    
    /* Lighter edge (Glassmorphism effect) */
    border: 1px solid rgba(255, 255, 255, 0.1); 
box-shadow:0 0 20px rgba(255, 255, 255, 1)
}


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


.electric-card {
  border: 1px solid #fff;
  animation: lightning-strike 4s linear infinite;
  position: relative;
}

@keyframes lightning-strike {

  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 1);
    transform: translate(0, 0);
  }

  20%, 24%, 55% {
    box-shadow: 0 0 60px rgba(255, 255, 255, 1), 0 0 100px rgba(0, 162, 255, 0.6);
    transform: translate(1px, -1px);
    background: #444c57; /* Briefly lightens the background */
  }
}

/* CTA */

.cta {
text-align:center;
padding:80px;
 border-radius: 50px;
 background-image: none; 
    background-color: rgba(40, 40, 40, 0.6);
}



/* PAGES */

.page {
padding:80px 40px;
max-width:900px;
margin:auto;
}

/* FORM */

.contact-form {
display:flex;
flex-direction:column;
gap:15px;
max-width:400px;


}

input, textarea {
padding:12px;
border-radius:6px;
border:none;
}

/* FOOTER */

footer {
text-align:center;
padding:1px;
border-radius:30px;
background:#061226;
}

/* ================= LOADER ================= */

#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s;
    
    /* Cleaned up background - No blue-grey fallback */
    background: rgba(30, 30, 30, 0.95); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}


.loader-content {
text-align: center;
}

/* Logo Glow Animation */



.loader-logo 


{
width: 280px;
border-radius: 50%;
display: block;
 margin: 0 auto;
animation: electricPulse 2s infinite ease-in-out;
}

@keyframes electricPulse {
0% {
filter: drop-shadow(0 0 5px #3FB7FF);
}

50% {
filter: drop-shadow(0 0 35px #6FE6FF);
}

100% {
filter: drop-shadow(0 0 5px #3FB7FF);
}
}

/* Electric Line Animation */

.electric-line {
margin-top: 30px;
width: 600px;
height: 3px;
background: linear-gradient(90deg, transparent, #3FB7FF, transparent);
animation: electricMove 1.2s infinite;
}

@keyframes electricMove {
0% { transform: translateX(-50px); }
50% { transform: translateX(50px); }
100% { transform: translateX(-50px); }
}

/* Fade Out Effect */

.loader-hidden {
opacity: 0;
visibility: hidden;
}

@keyframes lightningFlash {
0% { background:#061226; }
10% { background:#0B1F3A; }
20% { background:#061226; }
}

#loader {
animation: lightningFlash 3s infinite;
}

.loading-text {
margin-top: 15px;
color: #6FE6FF;
letter-spacing: 2px;
 font-family: "Michroma", sans-serif;
 font-size: 30px
}

.circle-img {
  width: 150px;    /* Must be equal to height to maintain a circle shape */
  height: 150px;   /* Must be equal to width */
  border-radius: 50%; /* Rounds the corners into a circle */
}

.michroma-regular {
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-style: normal;
  }


.whatsapp-button {
  background-color: #2d9649; /* WhatsApp Green */
 display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transform: scale(0.6);
  padding: 8px 20px;
  border-radius: 40px;
  text-decoration: none;
  align-items: center;
  font-family: "Michroma", sans-serif;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.whatsapp-button img {
  margin-right: 10px;
}

.whatsapp-button:hover {
  transform: scale(1.01); /* Subtle grow effect on hover */
}

 .phone-button {
  background-color: #602d96; /* PURPLE */
 display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transform: scale(0.6);
  padding: 8px 20px;
  border-radius: 40px;
  text-decoration: none;
  align-items: center;
  font-family: "Michroma", sans-serif;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.phone-button img {
  margin-right: 10px;
}

.phone-button:hover {
  transform: scale(1.01); /* Subtle grow effect on hover */
}


.facebook-button {
  background-color: #292d7d; /* BLUE */
 display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transform: scale(0.6);
  padding: 8px 20px;
  border-radius: 40px;
  text-decoration: none;
  align-items: center;
  font-family: "Michroma", sans-serif;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.facebook-button img {
  margin-right: 10px;
}

.facebook-button:hover {
  transform: scale(1.01); /* Subtle grow effect on hover */
}

.floating-contact {
  position: fixed;
  bottom: 20px; /* Distance from bottom */
  right: 20px;  /* Distance from right */
  display: grid;
  flex-direction: column; /* Stack buttons vertically */
  gap: 1px;    /* Space between buttons */
  z-index: 9999; /* Keeps buttons on top of other elements */
}

nav a:hover {
  /* This runs the animation we defined above */
  animation: pulse-glow 1.5s infinite ease-in-out;
  border-color: #fff;
}


.flex-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  gap: 20px;
  align-items: stretch;
}

.photo-cycle {
  flex: 1; /* Takes up half the space */
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.1); 
box-shadow:0 0 20px rgba(255, 255, 255, 1)
}

.slide {
  position: absolute;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: cycle 12s infinite;
}

/* Stagger images: 12s total / 3 images = 4s each */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4s; }
.slide:nth-child(3) { animation-delay: 8s; }

@keyframes cycle {
  0% { opacity: 0; }
  10% { opacity: 1; }
  33% { opacity: 1; }
  43% { opacity: 0; }
  100% { opacity: 0; }
}

.contact-card {
  flex: 1;
  background: #0f172a; /* Matches your dark blue theme */
  padding: 30px;
  border-radius: 12px;
  color: white;
}

.google-img {
 width: 180px;      /* Adjust this number to make it smaller (try 150px or 180px) */
  height: auto;      /* Keeps the proportions perfect so it doesn't look squashed */
  display: block;    /* Helps with centering */
  margin: 0 auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.google-img:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}


.google-sans-<uniquifier> {
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "GRAD" 0;
}

.michroma-regular {
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@import url('https://fonts.googleapis.com');

/* 2. ASSIGN FONTS */
h1, h2 {
  font-family: "Michroma", sans-serif;
}

h3, h4, h5, h6, p {
  /* Note: "Google Sans" usually requires a local file. 
     If it doesn't load, use "Open Sans" or "Roboto". */
  font-family: "Google Sans", sans-serif;
}

/* 3. ASSIGN SIZES */
h1 { font-size: 50px; }
h2 { font-size: 25px; }
h3 { font-size: 20px; }
h5 { font-size: 14px; }
p  { font-size: 22px; }


 .services-page {
    /* Layers a 70% black tint over the image */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('services1.jpg') center/cover no-repeat fixed;
    
    background-color: #1a1a1a; 
}
.card p,
.card ul,
.card li {
  text-align: center;
}

.icon {
  margin-right: 10px;
  color: #3FB7FF;
  text-shadow: 0 0 10px rgba(63, 183, 255, 0.7);
  font-size: 34px;
  vertical-align: middle;
}
.index-page {
    /* Layers a 70% black tint over the image */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('Services2.jpg') center/cover no-repeat fixed;
    
    background-color: #1a1a1a; 
}

.about-page {
    /* Layers a 70% black tint over the image */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('outside lights.jpeg') center/cover no-repeat fixed;
    
    background-color: #1a1a1a; 
}

.contact-page {
     /* Layers a 70% black tint over the image */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('Services2.jpg') center/cover no-repeat fixed;
    
    background-color: #1a1a1a; 
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  /* HEADER */
  header {
    flex-direction: column;
    padding: 10px 15px;
    text-align: center;
  }

  .logo-wrapper {
    justify-content: center;
    padding-left: 0;
  }

  /* NAVIGATION */
  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
  }

  nav a {
    margin: 5px;
    padding: 6px 12px;
    font-size: 13px;
  }

  /* HERO */
  .hero {
    padding: 60px 15px;
    border-radius: 40px;
  }

  .hero h1 { font-size: 26px; }
  .hero h2 { font-size: 18px; }
  .hero h3 { font-size: 16px; }

  /* GRID FIX */
  .grid {
    flex-direction: column;
    align-items: center;
  }

  /* SERVICES STACK */
  .services {
    flex-direction: column;
    padding: 40px 20px;
  }

  /* CARDS */
  .card {
    width: 100%;
    max-width: 100%;
  }

  /* PAGE PADDING */
  .page {
    padding: 40px 20px;
  }

  /* TEXT SCALING */
  h1 { font-size: 28px; }
  h2 { font-size: 20px; }
  h3 { font-size: 16px; }
  p  { font-size: 16px; }

  /* BUTTON */
  .quote-btn {
    padding: 14px 20px;
  }

  /* FLOATING BUTTONS */
  .floating-contact {
    right: 10px;
    bottom: 10px;
  }

  .floating-contact a {
    transform: scale(0.5);
  }

/* ================= MOBILE MENU ================= */

@media (max-width: 768px) {

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;

    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);

    /* ✅ ADD THIS */
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;

    /* Optional glow to match your style */
    box-shadow: -5px 0 25px rgba(255, 255, 255, 0.2);

    transition: right 0.3s ease;
    z-index: 1000;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

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

  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1001;
    font-size: 25px;
    cursor: pointer;
    color: white;
  }


  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  nav a {
    display: block;
    margin: 15px 0;
    font-size: 30px;
  }

  /* When menu is open */
  nav.active {
    right: 0;
  }


/* ================= MOBILE LAYOUT FIX ================= */
@media (max-width: 768px) {

  /* GLOBAL FIX */
  body {
    overflow-x: hidden;
  }

  section, .services, .page {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* HEADER STACK */
  @media (max-width: 768px) {
  
   header {
    position: relative;
    text-align: center;
  }

  .logo-wrapper {
    justify-content: center;
    width: 100%;
  }
  

  /* NAV FIX */
  nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

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

  /* HERO FIX */
  .hero {
    padding: 50px 15px;
    max-width: 100%;
    border-radius: 30px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero h2 {
    font-size: 18px;
  }

  .hero h3 {
    font-size: 16px;
  }

  /* GRID → STACK */
  .grid,
  .about-grid,
  .services {
    flex-direction: column !important;
    align-items: center;
    width: 100%;
  }

  /* CARDS FULL WIDTH */
  .card,
  .contact-card {
    width: 100%;
    max-width: 100%;
  }

  /* FLEX CONTAINER FIX */
  .flex-container {
    flex-direction: column;
  }

  /* IMAGE FIX */
  img {
    max-width: 100%;
    height: auto;
  }

  /* TEXT SCALE */
  h1 { font-size: 28px; }
  h2 { font-size: 18px; }
  h3 { font-size: 16px; }
  p  { font-size: 16px; }

  /* BUTTON FIX */
  .quote-btn {
    padding: 12px 20px;
  }

  /* FLOATING BUTTONS */
  @media (max-width: 768px) {

  .floating-contact {
    bottom: 15px;
    right: 10px;
    gap: 8px;
  }

  .floating-contact a {
    transform: none; /* REMOVE scaling */
    padding: 6px 10px;
    font-size: 12px;
  }

  .floating-contact img {
    width: 35px;
    height: auto;
  }
  @media (max-width: 768px) {

  /* STOP horizontal overflow */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  /* REMOVE fixed backgrounds on mobile (BIG FIX) */
  body,
  .about-page,
  .services-page,
  .index-page,
  .contact-page {
    background-attachment: scroll !important;
  }
  @media (max-width: 768px) {

  .card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 20px; /* slightly smaller */
  }
  @media (max-width: 768px) {

  .hero,
  .services,
  .page {
    margin-top: 20px !important;
  }
  
* {
  max-width: 100%;
}
@media (max-width: 768px) {

  .services,
  .grid,
  .about-grid {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 10px 0;
    padding: 20px;
    box-sizing: border-box;
  }
  * {
  box-sizing: border-box;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }
  .logo-wrapper {
    position: relative;
    width: 100%;
    justify-content: center;
  }
 
 .brand-name {
    font-size: clamp(14px, 4vw, 18px);
    white-space: nowrap;
  }

/* ================= HAMBURGER BAR ================= */
.menu-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;

  padding: 10px 20px;

  background: rgba(40, 40, 40, 0.6);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Hamburger button */
.menu-toggle {
  width: 45px;
  height: 45px;

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

  font-size: 24px;
  color: white;
  cursor: pointer;

  border-radius: 50%; /* makes it a circle */

  background: rgba(40, 40, 40, 0.6);
  backdrop-filter: blur(10px);

  border:4px solid rgba(255, 255, 255, 0.1);

  box-shadow: 0 0 45px rgba(255, 255, 255, 0.4);

  transition: all 0.2s ease;
}
 .menu-bar {
  position: relative;
  z-index: 3000; /* higher than header */
}

.main-header {
  position: relative;
  z-index: 1000;
}
.menu-bar {
  margin-bottom: 50px; /* creates space */
}
.menu-bar {
  background: transparent;
}
}
