

html {
  scroll-behavior: smooth;
}






/* *{
  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 */


 













/* about us  */
body{
  margin:0;
}

/* IMAGE CONTAINER */
.image-container{
  position:relative;
  width:100%;
  height:70vh;
  overflow:hidden;
}

/* IMAGE FIX */
.image-container img{
  width:100%;
  height:100%;
  object-fit:cover;  /* BEST FIT */
  display:block;
}

/* SMOOTH OVERLAY */
.image-container::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.2)
  );
}

/* CONTENT CENTER FIX */
.image-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%); /* PERFECT CENTER */
  z-index:2;
  color:#fff;
  text-align:center;
}

/* TEXT STYLE */
.image-content h1{
  font-size:40px;
  margin:0;
}

.image-content p{
  font-size:16px;
  margin:10px 0 20px;
}

/* BUTTON */
.image-content .btn{
  padding:10px 25px;
  background:#00f2fe;
  color:#000;
  border-radius:25px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.image-content .btn:hover{
  transform:scale(1.1);
}
/* about us end */

/* about us css */


#typeText::after {
  content: "|";
  animation: blink 0.7s infinite;
  margin-left: 5px;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}
/* about us css */





/* 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;
}

.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; }
}


/* content 1 */




/* content 2 */
.section {
        padding: 50px 20px;
        background:#020617;
    }

    .section h1 {
        color:#00d4ff;
        font-size: 48px;
        margin-bottom: 15px;
    }

    .section p.subtitle {
        max-width: 900px;
        margin: auto;
        font-size: 18px;
        color: white;
        line-height: 1.6;
    }

    .values-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 50px;
        gap: 40px;
    }

    .value-card {
        width: 200px;
    }

    .icon-circle {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 6px solid #00d4ff ;
        overflow: hidden;
    }

    .icon-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .value-title {
        color: #00d4ff;
        font-size: 22px;
        margin-top: 15px;
        font-weight: bold;
    }

    .value-text {
        font-size: 15px;
        color:white;
        margin-top: 10px;
        line-height: 1.5;
    }



/* content 2 */


/*  */


/* content 3 */
/* HERO */
.hero {
  padding: 60px 20px;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT SIDE */
.left {
  flex: 1;
}

.subtitle {
  color: #00d4ff;
  margin-bottom: 10px;
}

.left h1 {
  font-size: 60px;
  color: #ffffff;
  text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
}

.desc {
  margin-top: 10px;
  color: #ccc;
}

/* RIGHT SIDE */
.right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.card {
  width: 100%;
  max-width: 500px;
  padding: 30px;
  border: 1px solid #00eaff;
  border-radius: 20px;
  background: rgba(0, 234, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.4);
}

/* ITEMS */
.item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  
}

.item i {
  font-size: 22px;
  color: #00eaff;
  text-shadow: 0 0 10px #00eaff;
}

.item p {
  font-size: 18px;
  color: white;
}




/* content 3 */













/* 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 */
