*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', sans-serif;
}

body, html{
  margin:0;
  padding:0;
  width:100%;
  overflow-x:hidden;
}

/* BACKGROUND */
body{
  background: linear-gradient(135deg,#0f172a,#020617);
}

/* NAVBAR */
.navbar{
  position:fixed;
  width:100%;
  top:0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  background:rgba(15,23,42,0.7);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.1);
  z-index:1000;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-size:28px;
  font-weight:600;
  cursor: pointer;
}

/* LOGO IMAGE (ONLY ONE BLOCK) */
.logo img{
  height:45px;
  width:auto;
  display:block;

  /* GLOW */
  filter: drop-shadow(0 0 6px rgba(0,255,200,0.5));
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor:pointer;
}

/* HOVER EFFECT ONLY ON IMAGE */
.logo img:hover{
  transform: scale(1.15);
  filter: drop-shadow(0 0 15px rgba(0,255,200,1));
}

/* LINKS */
.nav-links{
  display:flex;
  list-style:none;
  gap:25px;
}

.nav-links li{
  position:relative;
}

/* LINK STYLE */
.nav-links a{
  text-decoration:none;
  color:#cbd5f5;
  padding:8px;
  display:block;
  position:relative;
  transition:0.3s;
}

/* UNDERLINE ANIMATION */
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:2px;
  background:linear-gradient(to right,#00f2fe,#4facfe);
  transition:0.3s;
}

.nav-links a:hover::after{
  width:100%;
}

.nav-links a:hover{
  color:#fff;
}

/* DROPDOWN */
.dropdown{
  position:absolute;
  top:50px;
  left:0;
  background:rgba(30,41,59,0.95);
  backdrop-filter:blur(10px);
  border-radius:12px;
  padding:10px 0;
  min-width:220px;
  opacity:0;
  visibility:hidden;
  transform:translateY(15px);
  transition:0.3s ease;
  box-shadow:0 10px 40px rgba(0,0,0,0.5);
}

/* SHOW */
.nav-links li:hover .dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* DROPDOWN LINKS */
.dropdown a{
  padding:12px 20px;
  display:flex;
  gap:10px;
}

.dropdown a:hover{
  background:rgba(255,255,255,0.08);
  cursor:pointer;
}

/* navbar end */







*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', sans-serif;
}

body, html{
  margin:0;
  padding:0;
  width:100%;
  overflow-x:hidden;
}

/* BACKGROUND */
body{
  background: linear-gradient(135deg,#0f172a,#020617);
}

/* NAVBAR */
.navbar{
  position:fixed;
  width:100%;
  top:0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  background:rgba(15,23,42,0.7);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.1);
  z-index:1000;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-size:28px;
  font-weight:600;
  cursor: pointer;
}

/* LOGO IMAGE (ONLY ONE BLOCK) */
.logo img{
  height:45px;
  width:auto;
  display:block;

  /* GLOW */
  filter: drop-shadow(0 0 6px rgba(0,255,200,0.5));
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor:pointer;
}

/* HOVER EFFECT ONLY ON IMAGE */
.logo img:hover{
  transform: scale(1.15);
  filter: drop-shadow(0 0 15px rgba(0,255,200,1));
}

/* LINKS */
.nav-links{
  display:flex;
  list-style:none;
  gap:25px;
}

.nav-links li{
  position:relative;
}

/* LINK STYLE */
.nav-links a{
  text-decoration:none;
  color:#cbd5f5;
  padding:8px;
  display:block;
  position:relative;
  transition:0.3s;
}

/* UNDERLINE ANIMATION */
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:2px;
  background:linear-gradient(to right,#00f2fe,#4facfe);
  transition:0.3s;
}

.nav-links a:hover::after{
  width:100%;
}

.nav-links a:hover{
  color:#fff;
}

/* DROPDOWN */
.dropdown{
  position:absolute;
  top:50px;
  left:0;
  background:rgba(30,41,59,0.95);
  backdrop-filter:blur(10px);
  border-radius:12px;
  padding:10px 0;
  min-width:220px;
  opacity:0;
  visibility:hidden;
  transform:translateY(15px);
  transition:0.3s ease;
  box-shadow:0 10px 40px rgba(0,0,0,0.5);
}

/* SHOW */
.nav-links li:hover .dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* DROPDOWN LINKS */
.dropdown a{
  padding:12px 20px;
  display:flex;
  gap:10px;
}

.dropdown a:hover{
  background:rgba(255,255,255,0.08);
  cursor:pointer;
}

/* navbar end */









/* sidebar */
/* SIDEBAR */
/* OVERLAY BLUR */
.overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  backdrop-filter:blur(5px);
  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:1500;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}


/* SIDEBAR */
.sidebar{
  position:fixed;
  top:0;
  left:-100%;
  width:260px;
  height:100%;
  background:#0f172a;
  padding:60px 20px;
  transition:0.4s ease;
  z-index:2000;
  overflow-y:auto;
}

.sidebar.active{
  left:0;
}

/* CLOSE */
.close-btn{
  position:absolute;
  top:15px;
  right:20px;
  font-size:22px;
  color:#fff;
  cursor:pointer;
}

/* LINKS */
.sidebar a{
  display:block;
  color:#cbd5f5;
  padding:12px;
  text-decoration:none;
}

/* DROPDOWN */
.side-title{
  color:#fff;
  padding:12px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
}

.side-content{
  max-height:0;
  overflow:hidden;
  transition:0.3s ease;
  padding-left:10px;
}

.side-dropdown.active .side-content{
  max-height:200px;
}
/* ARROW ROTATE */
.side-title i{
  transition:0.3s;
}

.side-dropdown.active .side-title i{
  transform:rotate(180deg);
}

/* ACTIVE LINK */
.sidebar a.active{
  background:rgba(79,172,254,0.2);
  color:#fff;
  border-left:3px solid #4facfe;
}
.sidebar{
  transition:0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.overlay{
  transition:0.3s ease-in-out;
}


/* sidebar */












/* video */
/* VIDEO CONTAINER */

/* VIDEO CONTAINER */
.video-container{
  position:relative;
  width:100vw;   /* FULL WIDTH FIX */
  height:100vh;
  overflow:hidden;
}

/* VIDEO */
.video-container video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;  /* VERY IMPORTANT */
}

/* DARK OVERLAY */
.video-container::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
}

/* CONTENT */
.video-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:#fff;
  text-align:center;
}

.video-content h1{
  font-size:50px;
  margin-bottom:10px;
}

.video-content p{
  font-size:18px;
  margin-bottom:20px; 
}

/* BUTTON */
.btn{
  padding:12px 25px;
  background:linear-gradient(45deg,#474848,#f7f8f9);
  color:#000;
  text-decoration:none;
  border-radius:30px;
  font-weight:bold;
  transition:0.3s;
}

.btn:hover{
  transform:scale(1.1);
}

/* video */









/* content 1 */
.who-card {
    width: 100%;
    padding: 40px 60px;
    box-sizing: border-box;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      margin: 30px 0;
}

.who-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 28px;
}

.who-card p {
    font-size: 16px;
    line-height: 1.7;
    color: white;
    margin-bottom: 15px;
}


/* Ascend animation keyframes */
@keyframes ascend {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Initially hide elements */
.who-card h3,
.who-card p {
    opacity: 0;
}

/* When in view, add this class */
.who-card.animate h3,
.who-card.animate p {
    animation: ascend 1s ease-out forwards;
}

.who-card.animate h3 {
    animation-delay: 0s;
}

.who-card.animate p {
    animation-delay: 0.3s; /* small delay for paragraph */
}
/* content 1 */

/* Add this to your CSS */

/* Define keyframes for ascend animation */
@keyframes ascend {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to the paragraph */
.who-card p {
    font-size: 16px;
    line-height: 1.7;
    color: white;
    margin-bottom: 15px;

    /* Animation properties */
    animation: ascend 1s ease-out forwards;
    animation-delay: 0.3s; /* optional delay */
}

/* Optional: animate heading as well */
.who-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 28px;

    animation: ascend 1s ease-out forwards;
    animation-delay: 0s;
}


.typing {
    opacity: 0;
    border-right: 2px solid navy;
    white-space: normal;
}

.typing.show {
    opacity: 1;
}

.typing.cursor::after {
    content: "|";
    animation: blink 0.7s infinite;
    margin-left: 3px;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

/* animation */

/* content 1 */












/* image gallery */

/* Grid Layout */
.gallery-container {
    background: #0f172a;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 15px; /* Space between images */
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 250px; /* Fixed height for uniformity */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills space without stretching */
    display: block;
}

/* Caption Overlay */
.caption {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    color: white;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Makes text readable */
    padding: 0 10px;
}


/* image gallery */















/* icons */

/* Container to keep everything aligned on the right */
.floating-contact-wrap {
  position: fixed;
  bottom: 140px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px; /* Spacing between buttons */
  z-index: 1000;
}

/* Base style for all floating buttons */
.btn-float {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-float:hover {
  transform: scale(1.05);
  color: #fff; /* Keeps text white on hover */
}
#myBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  /* ... your other styles ... */
}

/* Specific Colors */
.btn-phone {
  background-color: navy;
}

.btn-whatsapp {
  background-color: #25D366; /* Official WhatsApp green */
}

.btn-scroll {
  background-color: #333; /* Dark grey for scroll */
  width: 50px;  /* Making scroll button circular */
  height: 50px;
  padding: 0;
  align-self: flex-end; /* Align to the right of the stack */
}




/* icons end */









/* footer */
/* FOOTER */
.footer{
  background: linear-gradient(135deg,#020617,#0f172a);
  color:#fff;
  padding:60px 20px 20px;
}

/* GRID */
.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

/* BOX */
.footer-box{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  padding:20px;
  border-radius:15px;
  transition:0.3s;
}

.footer-box:hover{
  transform:translateY(-5px);
}

/* HEADINGS */
.footer-box h3{
  margin-bottom:15px;
  color:#00f2fe;
}

/* TEXT */
.footer-box p{
  font-size:14px;
  margin:10px 0;
  line-height:1.5;
}

/* MAP */
.footer-box iframe{
  width:100%;
  height:200px;
  border-radius:10px;
  border:none;
}

/* LINKS */
.footer-box a{
  color:#cbd5f5;
  text-decoration:none;
}

.footer-box a:hover{
  color:#00f2fe;
}

/* FOOTER LAYOUT */
.footer{
  background:#020617;
  color:#fff;
  padding:50px 20px 20px;
}

.footer-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:30px;
}

/* BOX */
.footer-box{
  flex:1 1 300px;
}

/* MAP */
.footer-box iframe{
  width:100%;
  border-radius:10px;
}

/* TEXT */
.footer-box p{
  margin:10px 0;
  line-height:1.6;
}

.footer-box a{
  color:#fff;
  text-decoration:none;
}

.footer-box a:hover{
  color:#00f2fe;
}

/* BUTTON STACK */
.footer-buttons{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-btn{
  display:block;
  width:100%;
  padding:12px;
  text-align:center;
  border-radius:8px;

  background:linear-gradient(135deg,#00f2fe,#4facfe);
  color:#000;
  font-weight:600;

  transition:0.3s;
}

/* HOVER */
.footer-btn:hover{
  transform:translateX(5px);
  background:linear-gradient(135deg,#4facfe,#00f2fe);
}

/* BOTTOM */
.footer-bottom{
  margin-top:30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:15px;
}

/* SOCIAL */
.socials a{
  margin-left:10px;
  font-size:18px;
  color:#fff;
  transition:0.3s;
}

.socials a:hover{
  color:#00f2fe;
  transform:scale(1.2);
}
/* BUTTON */
button{
  width:100%;
  padding:12px;
  border:none;
  border-radius:25px;
  background:linear-gradient(45deg,#00f2fe,#4facfe);
  color:#000;
  font-weight:bold;
  cursor:pointer;
  transition:0.3s;
}

button:hover{
  transform:scale(1.05);
}

/* BOTTOM */
.footer-bottom{
  margin-top:40px;
  padding-top:15px;
  border-top:1px solid rgba(255,255,255,0.1);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
}

/* SOCIAL */
.socials a{
  margin-right:10px;
  font-size:18px;
  color:#fff;
  transition:0.3s;
}

.socials a:hover{
  color:#00f2fe;
}

/* footer end */
