
 body{
  font-family: 'Montserrat', sans-serif;
}

/* headings look like Lakme */
h1,h2,h3{
  letter-spacing:2px;
  text-transform:uppercase;
}



    html {
      scroll-behavior: smooth;
    }

    section {
      scroll-margin-top: 100px;
    }


    /* RESET */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      /* font-family: Poppins; */
    }

    html,
    body {
      width: 100%;
      overflow-x: hidden;
      background: black;
      color: white;
    }

    /* HEADER */

    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100px;
      padding: 0 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: transparent;
      /* ALWAYS NONE */
      z-index: 9999;
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      padding: 20px 60px;
      background: transparent;
      z-index: 1000;
      transition: 0.3s;
    }

    /* About reach cheyyumbo line varan */

    header.about-active {
      border-bottom:1px solid silver;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
      /* optional */
    }


    /* GLOW + SPARK LINE */

header.about-active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:1px;
  filter:brightness(1.3);
  background:linear-gradient(
    90deg,
    transparent,
    silver,
    white,
    silver,
    transparent
  );

  background-size:200% auto;
  animation:shine 3s linear infinite;

  box-shadow:
    0 0 8px silver,
    0 0 16px rgba(192,192,192,0.7);
}

/* SHINE ANIMATION */

@keyframes shine{
  0%{
    background-position:-200% center;
  }
  100%{
    background-position:200% center;
  }
}
    /* Logo */

.logo-box{
  display:flex;
  align-items:center;
  gap:12px;
}

/* FIRST IMAGE (ICON) */
.logo-icon{
  height:90px;
  width:auto;
}

/* SECOND IMAGE (NAME LOGO) */
/* .logo-img{
  height:78px;
  width:auto;
} */


/* HIDE DESKTOP NAV LINKS */
/* HAMBURGER */
.menu-toggle{
  font-size:38px;
  color:silver;
  cursor:pointer;
  z-index:10001;
}

/* DARK OVERLAY */
.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(6px);
  opacity:0;
  pointer-events:none;
  transition:0.4s;
  z-index:9998;
}

.menu-overlay.active{
  opacity:1;
  pointer-events:auto;
}

/* SIDE MENU PANEL */
.side-menu{
  position:fixed;
  top:0;
  right:-420px;
  width:420px;
  height:100vh;
  background:#050505;

  display:flex;
  flex-direction:column;

  padding:60px 60px;
  gap:20px;

  transition:0.5s cubic-bezier(.77,0,.18,1);
  z-index:9999;
}

.side-menu.active{
  right:0;
}
/* HOME TOP CENTER */
.side-menu a:first-child{
  text-align:center;
  font-size:22px;
  letter-spacing:3px;
  margin-bottom:40px;
}

/* WRAP OTHER LINKS CENTER */
.side-menu .menu-links{
  margin-top:auto;
  margin-bottom:auto;
  width:100%;
}


/* LINKS */
.side-menu{
  position:fixed;
  top:0;
  right:-420px;
  width:420px;
  height:100vh;
  background:#050505;

  /* KEY PART 👇 */
  display:flex;
  flex-direction:column;
  justify-content:center;   /* vertical center */
  align-items:flex-start;   /* left align text */

  padding:40px 60px;
  gap:28px;

  transition:0.5s cubic-bezier(.77,0,.18,1);
  z-index:9999;
}


.side-menu a{
  color:#aaa;
  text-decoration:none;
  font-size:26px;
  letter-spacing:2px;
  width:100%;
  padding:14px 0;
  border-bottom:1px solid #222;
  transition:0.3s;
}

.side-menu a:hover{
  color:white;
  padding-left:8px;
}
.side-menu a{
  opacity:0;
  transform:translateX(20px);
  animation:fadeIn 0.6s forwards;
}

.side-menu.active a{
  opacity:1;
  transform:translateX(0);
}

@keyframes fadeIn{
  to{
    opacity:1;
    transform:translateX(0);
  }
}
/* PUSH SOCIAL TO BOTTOM */
.side-menu{
  display:flex;
  flex-direction:column;
}

.side-social{
  margin-top:auto; /* pushes to bottom */
  display:flex;
  gap:18px;
  padding-top:30px;
}

/* ICON STYLE */
.side-social a{
  width:40px;
  height:40px;
  border:1px solid #333;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:silver;
  text-decoration:none;
  transition:0.3s;
}

.side-social a:hover{
  background:silver;
  color:black;
  box-shadow:0 0 10px silver;
}
.side-social a{
  background:#111;
  backdrop-filter:blur(6px);
}

/* CLOSE BUTTON */
.close-btn{
  position:absolute;
  top:30px;
  right:40px;
  font-size:26px;
  color:white;
  cursor:pointer;
}


/* MOBILE */
@media(max-width:600px){
  .side-menu{
    width:100%;
  }
}

nav{
  position:fixed;
  top:80px;
  right:-100%;
  width:260px;
  height:100vh;
  background:#000;
  display:flex;
  flex-direction:column;
  padding:40px 25px;
  gap:20px;
  transition:0.4s;
  border-left:1px solid #222;
}

/* SHOW WHEN ACTIVE */
nav.active{
  right:0;
}

/* HAMBURGER ALWAYS SHOW */
.menu-toggle{
  display:block !important;
  font-size:38px;
  color:silver;
  cursor:pointer;
}

nav{
  transition:0.5s cubic-bezier(.77,0,.18,1);
}





/* MOBILE STYLE */

@media(max-width:900px){

  /* .menu-toggle{
    display:block;
  } */

  nav{
    position:fixed;
    top:80px;
    right:-100%;
    width:250px;
    height:100vh;
    background:#000;
    display:flex;
    flex-direction:column;
    padding:40px 25px;
    gap:20px;
    transition:0.4s;
    border-left:1px solid #222;
  }

  nav a{
    margin:0;
    font-size:18px;
  }

  nav.active{
    right:0;
  }
}
 
 
 .side-menu{
  display:flex;
  flex-direction:column;
}

/* CENTER OTHER LINKS */
.menu-links{
  margin:auto 0;
  width:100%;
}

/* HOME BOTTOM CENTER */
.home-link{
  text-align:center;
  font-size:22px;
  letter-spacing:3px;
  border:none;
  margin-bottom:20px;
}

/* SOCIAL VERY BOTTOM */
.side-social{
  margin-top:10px;
  justify-content:center;
}
/* SIDEMENU LAYOUT */
.side-menu{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:80px 50px 40px;
}

/* TOP LINKS AREA */
.menu-links{
  width:100%;
  text-align:right;
}

.menu-links a{
  display:block;
  text-align:center;
  letter-spacing:4px;
  border-bottom:1px solid #222;
}

/* HOME SECTION */
.home-link{
  text-align:center;
  font-size:14px;
  letter-spacing:4px;
  color:#aaa;
  border-top:1px solid #222;
  border-bottom:1px solid #222;
  padding:14px 0;
  margin:30px 0 10px;
}

.home-link:hover{
  color:white;
}

/* SOCIAL ICONS */
.side-social{
  display:flex;
  justify-content:center;
  gap:18px;
}

.side-social a{
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid #333;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#aaa;
  transition:0.3s;
}

.side-social a:hover{
  color:white;
  border-color:white;
}

 
 
 
 
 
 
 
 /* ===== SOCIAL FIXED LEFT ===== */

.social-fixed{
  position:fixed;
  top:50%;
  left:15px;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:15px;
  z-index:9999;
}

/* ICON STYLE */

.social-fixed a{
  width:45px;
  height:45px;
  display:flex;
  align-items:center;
  justify-content:center;

  background:#111;
  border:1px solid #333;
  color:silver;
  font-size:18px;

  border-radius:50%;
  text-decoration:none;

  transition:0.4s;
}

/* HOVER EFFECT */

.social-fixed a:hover{
  background:silver;
  color:black;
  transform:scale(1.15);

  box-shadow:
    0 0 10px silver,
    0 0 20px rgba(192,192,192,0.7);
}

/* MOBILE HIDE (optional) */

@media(max-width:768px){
  .social-fixed{
    left:5px;
  }

  .social-fixed a{
    width:38px;
    height:38px;
    font-size:16px;
  }
}




.whatsapp-float{
  position:fixed;
  bottom:40px;
  right:50px;
  width:50px;
  height:50px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  text-decoration:none;
  box-shadow:0 4px 12px rgba(0,0,0,0.3);
  z-index:999;
  transition:0.3s;
}

.whatsapp-float:hover{
  transform:scale(1.1);
  background:#20b358;
}

 
 
 
 /* ===== FOOTER MAIN ===== */
    /* ===== FOOTER ===== */

    .footer {
      background: #0a0a0a;
      padding: 60px 8% 30px;
      border-top: 1px solid #222;
    }

    /* FOOTER CONTENT */

    .footer-container {
      display: flex;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }

    .footer-col {
      flex: 1;
      min-width: 250px;
    }

    /* HEADINGS */
.footer-logo{
  width:200px;
  margin-bottom:15px;
}

    .footer h3,
    .footer h4 {
      color: silver;
      margin-bottom: 15px;
      font-weight: 500;
    }

    /* TEXT */

    .footer p {
      color: #aaa;
      line-height: 1.6;
    }

    /* LINKS */

    .footer a {
      display: block;
      color: #aaa;
      text-decoration: none;
      margin-bottom: 8px;
      transition: 0.3s;
    }

    .footer a:hover {
      color: silver;
      padding-left: 6px;
    }

    /* ===== FOOTER BOTTOM ===== */

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      padding-top: 22px;
      font-size: 14px;
      color: #777;
      position: relative;
      overflow: hidden;
    }

    /* SILVER SPARK / SHINE BORDER */

    .footer-bottom::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg,
          transparent,
          silver,
          white,
          silver,
          transparent);
      background-size: 200% auto;
      animation: footerShine 4s linear infinite;
      box-shadow: 0 0 10px rgba(192, 192, 192, 0.8);
      /* glow */
    }

    /* SHINE ANIMATION */

    @keyframes footerShine {
      0% {
        background-position: -200% center;
      }

      100% {
        background-position: 200% center;
      }
    }

    /* DESIGN CREDIT */

    .footer-bottom .credit {
      color: silver;
      font-weight: 500;
      transition: 0.3s;
    }

    .footer-bottom .credit:hover {
      text-shadow: 0 0 8px silver;
    }
.footer-col p i{
  margin-right:10px;
  color:silver; /* gold tone – premium look */
}

    /* ===== RESPONSIVE ===== */

    @media(max-width:768px) {
      .footer-container {
        flex-direction: column;
        text-align: center;
      }

      .footer a:hover {
        padding-left: 0;
      }
    }


    /* Tablet */
@media(max-width:992px){
  .footer-logo{
    width:200px;
  }
}

/* Mobile */
@media(max-width:600px){
  .footer-logo{
    width:160px;
  }
}

/* Small Mobile */
@media(max-width:400px){
  .footer-logo{
    width:110px;
  }
}



/* DROPDOWN */

.dropdown {
  width: 100%;
}

.dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding-left: 15px;
}

.dropdown-menu a {
  font-size: 14px;
  padding: 8px 0;
  display: block;
  opacity: 0.8;
}

.dropdown.active .dropdown-menu {
  max-height: 200px;
}



.credit {
  display: inline-block;
  vertical-align: middle;
}

.rru-logo {
  height: 40px;   /* adjust size if needed */
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}