
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Arial', sans-serif; }
    body { background:#dfeeff; color:#000; }

    /* HEADER */
    header {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  background: url('header-img.jpg') center/cover no-repeat;
}
    header img { width: 100%; height: 100%; object-fit: cover; }
    header .overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.3); }
    header .content { position: absolute; bottom:40px; left:40px; color:#fff; }
    header .content h1 { font-size:60px; font-weight:800; }
    header .content p { margin-top:10px; font-size:18px; }


    /* Base styles (desktop stays same) */
header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 10;
}

header .content {
  position: absolute;
  bottom: 80px;
  left: 50px;
  z-index: 20;
  color: #fff;
}

header .content h1 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 10px;
}

header .content p {
  font-size: 20px;
}


/* =============================== */
/*        MOBILE RESPONSIVE        */
/* =============================== */

@media (max-width: 768px) {
  header {
    height: 70vh;
  }

  header .content {
    bottom: 50px;
    left: 25px;
  }

  header .content h1 {
    font-size: 36px;  /* smaller mobile title */
  }

  header .content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  header {
    height: 60vh;
  }

  header .content {
    bottom: 35px;
    left: 20px;
  }

  header .content h1 {
    font-size: 28px;  /* perfect size for small screens */
    line-height: 1.1;
  }

  header .content p {
    font-size: 14px;
  }
}


    /* NAVIGATION BASE */
.top-nav {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  padding: 0 40px;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
}

/* ---------- DESKTOP MENU ---------- */
.top-nav ul {
  display: flex;
  gap: 35px;
  list-style: none;
}

.top-nav ul li a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

/* ---------- HAMBURGER (HIDDEN ON DESKTOP) ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 40;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: 0.3s;
}

/* ---------- MOBILE STYLE ---------- */
@media (max-width: 768px) {
  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Hide desktop menu */
  .top-nav ul {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 20px 30px;
    background: rgba(0,0,0,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    display: none;
  }

  /* Show when active */
  .top-nav ul.active {
    display: flex;
  }

  .top-nav ul li a {
    font-size: 18px;
  }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}


    /* SECTION GENERAL */
    section { padding:70px 5%; }
    h2 { text-align:center; margin-bottom:20px; font-size:32px; font-weight:700; }

    /* PRODUCTS */
    .product-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:25px; }
    .product-item { background:#fff; padding:20px; border-radius:12px; }
    .product-item img { width:100%; border-radius:10px; }
    .product-item h3 { margin-top:15px; font-size:20px; }

    /* BLACK SECTIONS */
    .dark { background:#000; color:#fff; padding:80px 5%; }
    .dark-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:30px; }

    /* CTA */
    .cta-box { background:#000; color:#fff; padding:80px 20px; border-radius:15px; text-align:center; }
    .cta-box h1 { font-size:38px; line-height:1.3; }
    .cta-box button { margin-top:20px; padding:12px 25px; border:none; border-radius:25px; cursor:pointer; }

    /* Testimonials */
.testimonials {
  background: #f1f5ff;
  padding: 70px 20px;
  text-align: center;
}

.testimonial-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 45px;
  color: #0c2e8a;
}

/* Grid */
.testimonial-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* Cards */
.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: left;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

/* User section */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #0c2e8a;
}

.testimonial-user span {
  font-size: 0.9rem;
  color: #555;
}

/* Responsive - center align on mobile */
@media (max-width: 768px) {
  .testimonial-card {
    text-align: center;
  }

  .testimonial-user {
    justify-content: center;
  }
}


    /* FAQ */
    .faq-item { margin-top:10px; background:#fff; padding:15px; border-radius:8px; cursor:pointer; }

   

    .footer {
  background: linear-gradient(180deg, #000000, #636464);
  color: #fff;
  padding: 60px 20px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: auto;
}

/* Columns */
.footer-column {
  flex: 1 1 300px;
}

.footer-column h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: bold;
}

.footer-link {
  color: #fff;
  display: block;
  margin: 6px 0;
  text-decoration: underline;
}

.social-icons i {
  font-size: 22px;
  margin-right: 15px;
  cursor: pointer;
  transition: opacity .3s;
}

.social-icons i:hover {
  opacity: 0.7;
}

/* Helpline */
.helpline-title {
  font-size: 1rem;
  margin-top: 8px;
}

.helpline-number {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 4px 0 10px;
}

.company-name {
  font-weight: bold;
  margin-top: 10px;
}

/* Message box */
textarea {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  border: none;
  padding: 12px;
  font-size: 1rem;
  outline: none;
  margin-top: 10px;
  color: #000;
}

.send-btn {
  margin-top: 15px;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

.send-btn:hover {
  opacity: 0.8;
}

/* Divider */
.footer-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  max-width: 1300px;
  margin: 35px auto;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  color: #fff;
}

.footer-links a {
  margin: 0 12px;
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom a {
  color: #fff;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: left;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
  }
}






/* -------- ABOUT SECTION ---------- *

.about-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 40px;
  gap: 20px;
  align-items: center;
}

.about-text {
  flex: 1 1 400px;
  z-index: 2;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-video {
  flex: 1 1 500px;
}*/

/* -------- VIDEO FITTING ---------- */

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* -------- MOBILE ---------- */

@media (max-width: 768px) {
  .about-text h2 {
    font-size: 2rem;
  }

  .grid-box {
    height: 240px;
  }
}


/* FAQ Section */
.faq-section {
  padding: 70px 20px;
  /*background: #f7f9ff;*/
}

.faq-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #0c2e8a;
}

/* FAQ Container */
.faq-container {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FAQ Item */
.faq-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

/* Question Button */
.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0c2e8a;
}

.faq-question:hover {
  background: #edf3ff;
}

/* Arrow */
.arrow {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Answer Box */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  color: #444;
  line-height: 1.6;
  padding: 0 20px;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 15px 20px 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 1.8rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}





/* ---------------- RESPONSIVE DESIGN ---------------- */

@media (max-width: 900px) {
  .about-section,
  .grid-box {
    grid-template-columns: 1fr;
  }

  .video-container iframe,
  .grid-video iframe {
    height: 260px;
  }
}

@media (max-width: 600px) {
  .about-text h2,
  .grid-text h2 {
    font-size: 24px;
  }

  .video-container iframe,
  .grid-video iframe {
    height: 220px;
  }
}


.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
  /* Adjust the '0.5' value to control the darkness (0.0 is fully transparent, 1.0 is fully opaque) */
}


/* Mobile Responsive Adjustments */
@media (max-width: 768px) {

  .dark-overlay {
    background-color: rgba(0, 0, 0, 0.35); 
    /* Slightly lighter on mobile for readability */
  }
 
}


.top-nav {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    padding: 0 40px;
    z-index: 30;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black; /* default for mobile */
}

/* Desktop only (min-width 1024px) */
@media (min-width: 1024px) {
    .top-nav {
        background: transparent;   /* transparent on desktop */
    }
}




/* WRAPPER */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 15px;
}

/* TOP TEXT */
.top-info {
  margin-bottom: 28px;
  max-width: 760px;
}
.top-info h4 {
  margin: 0 0 6px;
  font-weight: 700;
}
.top-info p {
  margin: 0;
  opacity: 0.78;
  line-height: 1.45;
}

/* ABOUT US HERO */
.about-box {
  position: relative;
  height: 450px;
  overflow: hidden;
  border-radius: var(--card-radius);
  margin-bottom: 40px;
}

/* Make box height responsive on smaller screens */
@media (max-width: 768px) {
  .about-box {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .about-box {
    height: 240px;
  }
}

.video-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* PERFECT responsive video cover */
.video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100vw;       /* match viewport width */
  height: 56.25vw;    /* 16:9 aspect ratio */

  min-width: 100%;
  min-height: 100%;

  border: 0;
  pointer-events: none;
}





.about-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
}
.about-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
.about-text h2 {
  font-size: 36px;
  margin: 0 0 10px;
  letter-spacing: 1px;
}
.about-text p {
  margin: 0;
  max-width: 800px;
  line-height: 1.6;
  opacity: 0.95;
  font-size: 20px;
}

/* GRID SECTION */
.grid-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
  grid-auto-rows: 300px;
}
.grid-box {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #000;
}
.video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160%;
  height: 160%;
  min-width: 160%;
  min-height: 160%;
  border: 0;
  pointer-events: none;
}
.dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.grid-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 24px;
  width: 72%;
}
.grid-text h2 {
  margin: 0 0 10px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 800;
}
.grid-text p {
  margin: 0;
  opacity: 0.95;
  line-height: 1.4;
  font-size: 18px;
}

/* PROJECTS SPAN */
.projects {
  grid-row: span 2;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid-section {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .projects {
    grid-row: span 1;
  }
  .about-box {
    height: 300px;
  }
  .video-container iframe,
  .grid-box .video-wrapper iframe {
    width: 200%;
    height: 200%;
    min-width: 200%;
    min-height: 200%;
  }
}

/* HOVER EFFECT */
.grid-box:hover .video-wrapper iframe,
.about-box:hover .video-container iframe {
  transform: translate(-50%, -50%) scale(1.01);
}



/*contact section*/
.contact-section {
  padding: 80px 20px;
  background: #e6f2ff;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 20px;
  color: #333;
}

.info-box {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.info-box h4 {
  margin: 0 0 5px;
  font-size: 18px;
  color: #003366;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-form h3 {
  margin-bottom: 15px;
  font-size: 24px;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 5px rgba(0, 119, 255, 0.3);
}

.send-btn {
  width: 100%;
  padding: 14px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.send-btn:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

.map-section {
  padding: 0;
  background: #e6f2ff;
}

.map-container {
  width: 100%;
  height: 380px;
  border-radius: 15px;
  overflow: hidden;
  max-width: 1200px;
  margin: 40px auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .map-container {
    height: 250px;
  }
}


/*about us*/
.about-details-section {
  padding: 80px 20px;
  background: #e6f2ff;
}

.about-details-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.about-left {
  flex: 1;
  min-width: 300px;
}

.about-left h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #003366;
}

.about-left p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.about-list li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #003366;
  font-weight: 500;
}

.about-right {
  flex: 1;
  min-width: 300px;
}

.about-right img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .about-details-container {
    flex-direction: column;
  }

  .about-left h2 {
    font-size: 28px;
  }
}



/* Floating Icons Container */
.floating-icons-container {
    position: fixed;
    right: 22px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Icon style */
.floating-icon {
    width: 55px;
    height: 55px;
    background-color: #25D366; /* WhatsApp default color */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}

/* Phone custom color */
.phone-icon {
    background-color: #0072ff;
}

/* Hover effect */
.floating-icon:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

/* Mobile */
@media (max-width: 600px) {
    .floating-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    .floating-icons-container {
        right: 16px;
        bottom: 20px;
    }
}





    