* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #000;
    color: #fff;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
}

.top-right a {
    background: #fff;
    color: #000;
    padding: 6px;
    border-radius: 50%;
    margin-left: 6px;
    transition: 0.3s;
}

.top-right a:hover {
    background: red;
    color: #fff;
}

/* ===== HEADER ===== */
header {
    background: #eee;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 50px;
}

/* ===== NAV ===== */
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    position: relative;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover {
    color: red;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 22px;
    z-index: 2000;
    left: 0;
    background: #fff;
    min-width: 160px;
    padding: 14px 0px;
    display: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu li {
    padding: 6px 16px;
}

/* Button */
.enquiry-btn a {
    background: red;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.enquiry-btn a:hover {
    background: #000;
}

/* Mobile */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-btn {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {

    nav {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: #fff;
        transition: 0.3s;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 20px 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
    }

    .menu-toggle {
        display: block;
    }

    .enquiry-btn {
        display: none;
    }

    .mobile-btn {
        display: block;
        margin-top: 10px;
    }

    .enquiry-mobile {
        background: red;
        color: #fff !important;
        padding: 10px 20px;
        border-radius: 5px;
    }

    .top-bar {
        flex-direction: column;
        text-align: center;
    }

    .top-right {
        margin-top: 8px;
    }
}




.hero{
    position:relative;
    background:#85a4ba;
    overflow:hidden;
    padding:40px 8%;
       z-index: -1;
}

.slide{
    display:none;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    animation:fade 1s ease;
}

.slide.active{
    display:flex;
}

@keyframes fade{
    from{opacity:0;}
    to{opacity:1;}
}

.content{
    flex:1;
}

.content h1{
    font-size:55px;
    line-height:1.1;
    margin-bottom:40px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .slide{
        flex-direction:column;
        text-align:center;
    }

    .content h1{
        font-size:35px;
    }

    .image img{
        max-width:100%;
        margin-top:20px;
    }

    .floating-icons{
        display:none;
    }
}



/* history */
/* SECTION */
.fiber-section {
  background: #f4f4f4;
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
  z-index: -1;
}

/* subtle dotted world feel */
.fiber-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#dcdcdc 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.4;
}

/* CONTAINER */
.fiber-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* LEFT AREA */
.fiber-stats {
  position: relative;
  height: 380px;
}

/* CIRCLES */
.fiber-circle {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

/* NUMBER */
.fiber-circle h2 {
  margin: 0;
  color: #c21d4a;
  font-size: 40px;
  font-weight: 600;
  transition: 0.35s;
}

/* LABEL */
.fiber-circle span {
  color: #333;
  font-size: 18px;
  transition: 0.35s;
}

/* POSITIONS */
.circle1 { top: 0; left: 130px; }
.circle2 { bottom: 0; left: 0; }
.circle3 { bottom: 0; left: 260px; }

/* ===== HOVER EFFECTS ===== */

.fiber-circle:hover {
  transform: translateY(-10px) scale(1.08);
  box-shadow: 0 20px 45px rgba(194, 29, 74, 0.25);
}

.fiber-circle:hover h2 {
  color: #000;
}

.fiber-circle:hover span {
  letter-spacing: 1px;
}

/* RIGHT CONTENT */
.small-title {
  color: #c21d4a;
  font-size: 14px;
  margin-bottom: 10px;
}

.fiber-content h1 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  transition: 0.3s;
}

/* animated underline */
.fiber-content h1::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  left: 0;
  bottom: -6px;
  background: #c21d4a;
  transition: 0.4s;
}

.fiber-content h1:hover::after {
  width: 100%;
}

.desc {
  color: #666;
  line-height: 1.8;
  font-size: 17px;
  max-width: 520px;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .fiber-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fiber-stats {
    margin: auto;
    height: 350px;
    margin-bottom: 40px;
  }

  .circle1 {
    left: 50%;
    transform: translateX(-50%);
  }

  .circle2 {
    left: 10%;
  }

  .circle3 {
    left: 60%;
  }

  .fiber-content h1 {
    font-size: 34px;
  }
}

@media(max-width: 500px) {
  .fiber-circle {
    width: 140px;
    height: 140px;
  }

  .fiber-circle h2 {
    font-size: 26px;
  }

  .fiber-content h1 {
    font-size: 26px;
  }
}
/* prvated policy
 */

 /* RESET */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f6f8;
  color: #222;
}

/* SECTION FULL WIDTH */
.privacy-section {
  width: 100%;
  padding: 60px 0;
  background: #f4f6f8;
}

/* CONTAINER FULL WIDTH */
.privacy-container {
  width: 100%;
  max-width: 1400px;   /* full desktop feel */
  margin: 0 auto;
  background: #ffffff;
  padding: 60px 80px;
}

/* MAIN TITLE */
.privacy-container h1 {
  font-size: 44px;
  margin-bottom: 10px;
}

/* DATE */
.effective-date {
  color: #777;
  margin-bottom: 25px;
}

/* POLICY BLOCK */
.policy-block {
  margin-top: 30px;
}

/* SECTION HEADINGS */
.policy-block h2 {
  color: #111;
  margin-bottom: 10px;
  border-left: 4px solid #d61b4e;
  padding-left: 12px;
  font-size: 22px;
}

/* TEXT */
.policy-block p,
.policy-block li {
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

.policy-block ul {
  padding-left: 20px;
}

/* CONTACT BOX */
.contact {
  background: #fafafa;
  padding: 25px;
  border-radius: 6px;
  margin-top: 20px;
}

/* TABLET */
@media (max-width: 992px) {
  .privacy-container {
    padding: 40px 30px;
  }

  .privacy-container h1 {
    font-size: 34px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .privacy-section {
    padding: 30px 0;
  }

  .privacy-container {
    padding: 25px 18px;
  }

  .privacy-container h1 {
    font-size: 26px;
  }

  .policy-block h2 {
    font-size: 18px;
  }

  .policy-block p,
  .policy-block li {
    font-size: 15px;
  }
}



/* footer */

    .footer {
  background: black;
  color: #fff;
  padding-top: 50px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-col h3 {
  margin-bottom: 15px;
  color: #00d4ff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #00d4ff;
  padding-left: 6px;
}

.logo {
  width: 100px;
  margin-bottom: 15px;
}

.socials a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.socials a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  font-size: 14px;
}

/* Floating Buttons */



/* Responsive */

@media (max-width: 600px) {
  .footer {
    text-align: center;
  }

  .socials {
    margin-top: 10px;
  }
}
