*{
  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-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,#00f2fe,#4facfe);
  color:#000;
  text-decoration:none;
  border-radius:30px;
  font-weight:bold;
  transition:0.3s;
}

.btn:hover{
  transform:scale(1.1);
}

/* video */












/* section */
body{
background: linear-gradient(135deg,#0f172a,#020617);
}
/* Titles */
.main-title {
  text-align: center;
  font-size: 22px;
  margin: 30px 10px;
  color: #0a3d62;
}

.presence-title {
  text-align: center;
  font-size: 32px;
  margin: 30px 0;
  color: #00796b;
}

/* Map */
.map-wrapper {
  text-align: center;
}

.map-wrapper img {
  max-width: 400px;
  width: 100%;
}

/* Layout */
.zones {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* Cards */
.zone-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid #00bfa5;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.zone-card:hover {
  transform: translateY(-5px);
}

/* Headings */
.zone-card h3 {
  color: #044e46;
  margin-bottom: 15px;
}

/* NORTH CARD FULL HEIGHT FIX */
.north {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* GRID FULL HEIGHT */
.city-grid {
  flex: 1; /* takes full remaining height */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.city-grid p{
    color: #020617;
}
.city-grid p:hover{
    color: #00bfa5;
    
    
}

/* COLUMN STRETCH */
.col {
  display: grid;
  row-gap: 10px;
}

/* CITY STYLE IMPROVED */
.city {
  font-size: 15px;
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

/* BULLET */
.city::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00bfa5;
}

/* Right Side */
.right-zones {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #e0f7fa;
  color:#020617;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  transition: 0.3s;
}

.tag:hover {
  background: #00bfa5;
  color: rgb(0, 6, 15);
}





/* section */








/* content 2 */




/* TITLE */
.network-title {
  text-align: center;
  font-size: 40px;
  color: #e30a0a;
  margin: 40px 0;
}

/* GRID */
.network-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 20px;
  background:#020617;
}

/* CARD */
.network-box {
  background: #fff;
  border-radius: 18px;
  padding: 25px 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: 0.3s;
}

/* HOVER */
.network-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ICON */
.network-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #fff;
  font-size: 22px;
}

/* COLORS */
.blue {
  border-color: #1e3a8a;
}
.blue .network-icon {
  background: #1e3a8a;
}

.purple {
  border-color: #9333ea;
}
.purple .network-icon {
  background: #9333ea;
}

.orange {
  border-color: #ea580c;
}
.orange .network-icon {
  background: #ea580c;
}

.green {
  border-color: #166534;
}
.green .network-icon {
  background: #166534;
}

/* TEXT */
.network-box h3 {
  margin: 10px 0;
  font-size: 18px;
}

.network-box p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}





/* content 2 */








/* contact card */


/* FULL WIDTH SECTION */
.contact-cards {
  margin-top: 20px;
  width: 100%;
  min-height: 550px;
  padding: 20px 20px;
  display: flex;
  justify-content: center;
   background:#020617;
}

/* WRAPPER */
.cards-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

/* CARD */
.card {
  width: 300px;
  height: 380px;
  perspective: 1000px;
}

/* INNER FLIP */
.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: 0.8s;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

/* FRONT & BACK */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 25px;
  backface-visibility: hidden;

  /* GLASS EFFECT */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  text-align: center;
  color: white;
}

/* FRONT */
.card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* PROFILE IMAGE */
.profile {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid rgba(255,255,255,0.5);
}

/* NAME */
.card-front h3 {
  margin: 10px 0;
  font-size: 22px;
  letter-spacing: 1px;
}

/* TEXT */
.card-front p {
  font-size: 14px;
  opacity: 0.8;
}

/* BACK */
.card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* SOCIAL LINKS */
.socialss {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.socialss a {
  text-decoration: none;
  background:#00f2fe;
  padding: 10px;
  border-radius: 25px;
  color:black;
  transition: 0.3s;
}

.socialss a:hover {
  transform: scale(1.1);
}



/*contact card  */








/* 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 */
