
body, html {
  margin: 0;
  padding: 0;
  /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
 font-family: 'poppins', sans-serif;
  background-color: #05090f;
  color: #f6f9fc;
  min-height: 100vh;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header bar: logo left, hamburger right, fixed */
.header-bar {
  display: flex;
  justify-content: space-between; /* Logo on left, menu on right */
  align-items: center;             /* Vertically align items */
  height: 80px;
}
header {
  background-color: transparent;  /* Transparent header */
  position: absolute;              /* Allow overlap with hero */
  width: 100%;
  z-index: 1000;
  box-shadow: none;  
}
.logo img {
  height: auto;
  width: 140px;
  margin: 0px 0;
  margin-top: 60px;
  filter: drop-shadow(0 2px 8px #000e2d);
}

  .company-name {
  font-weight: 700;
  font-size: 1.5rem;       /* Adjust size as needed */
  color: #2693ff;          /* Your blue accent color */
  margin-left: 12px;       /* Space between logo image and text */
  user-select: none;       /* Optional: prevent text selection */
  letter-spacing: 1.1px;   /* Tighten/expand letter spacing for style */
  white-space: nowrap;     /* Prevent wrapping to a new line */
  cursor: default;
  text-shadow: 0 0 6px #1a4d99a1;   /* Optional subtle glowing effect */
  transition: color 0.3s ease;
}
loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #05090f;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    /* Spinner */
    #loader .spinner {
      border: 5px solid #f3f3f3;
      border-top: 5px solid #ff6a00;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  left : 50%;
  gap: 5px;
  width: 28px;
  height: 22px;
  user-select: none;
   
}
.hamburger span {
  display: block;
  height: 4px;
  background-color: #2693ff;
  border-radius: 4px;
  transition: all 0.3s ease;
}


/* Overlay Navigation (Mobile menu) */
.overlay-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1100;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: linear-gradient(
    to right, rgba(18,40,77,0.88) 48%, rgba(18,40,77,0.68) 100%
  ), url('images/2579.jpg') center center/cover no-repeat;
  transition: transform 0.4s ease;
  transform: translateX(-100%);
}
.overlay-menu.active {
  transform: translateX(0);
}
.overlay-menu .close-menu {
  font-size: 1.4rem;   /* smaller size */
  position: absolute;  /* pin to top-right */
  top: 20px; 
  right: 20px;
  color: #fff;
  cursor: pointer;
  z-index: 1500;       /* ensure it stays above */
  transition: color 0.3s ease, transform 0.2s ease;
}

.overlay-menu .close-menu:hover,
.overlay-menu .close-menu:focus {
  color: #2693ff;   /* Highlight blue on hover */
  outline: none;
}
.overlay-menu ul {
  list-style: none;
  padding: 2rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.overlay-menu ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.overlay-menu ul li a:hover,
.overlay-menu ul li a:focus {
  color: #8ad5ff;
  outline: none;
}
.overlay-menu .contact-info {
   margin-top: auto;
  text-align: center;
}
.overlay-menu .contact-info i {
  margin-right: 0.5rem;
  color: #56c7ff;
}

/* Hero slider section */
#hero {
  padding-top: 0;
  position: relative;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,9,15,0.85) 20%, transparent 100%);
  z-index: -1;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 800px;
  background: #0d1e35;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity .6s;
}

.about {
  
  position: relative;
  padding: 3rem 1rem 4rem;
  background: none; /* Remove previous background color/gradient */
  border-radius: 12px;
  margin-top: 3.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 8px 28px rgba(38, 147, 255, 0.12);
  overflow: hidden; /* Ensures background doesn't spill out */
}


.about-flex {
  display: flex;
  gap: 2.8rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Left side images */

.about-image {
   position: relative;            /* Establish containing block */
  display: flex;
  flex-direction: column;        /* Stack images vertically */
  gap: 0;                        /* Remove default gap */
  align-items: flex-start;  
}

.about-images img:nth-of-type(1) {
  width: 240px;
  height: 300px;
  border-radius: 10px;
  object-fit: cover;
  margin-left: 35px;
  margin-top: 45px; /* Only second image */
  box-shadow: 0 6px 20px rgba(38, 147, 255, 0.19);
  border: 3px solid #2693ff24;
  background: #17233a;
}

/* Second image: shift diagonally */
.about-images img:nth-of-type(2) {
  width: 240px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(38, 147, 255, 0.19);
  border: 3px solid #2693ff24;
  background: #17233a;
  margin-top: -36px; /* Only second image */
        /* Pull up to overlap some */
  margin-left: 280px;           /* Push right for diagonal effect */
  z-index: 1;
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .about-flex {
    flex-direction: column;
    gap: 2.2rem;
    align-items: stretch;
  }
  .about-images {
    width: 100%;
  }
  .about-images img {
    width: 80vw;
    max-width: 95vw;
    height: 120px;
  }
}

.image-with-caption {
  display: flex;
  flex-direction: row;      /* Align image and caption side by side */
  align-items: center;
  gap: 12px;                /* Space between caption and image */
}

.image-caption {
  /* Remove top margin since caption is now beside image */
  margin-top: 0;
  font-size: 1rem;
  color: #d3973c;            /* Brand blue */
  font-weight: 600;
  font-weight: bolder;
  margin-left: 40px;

  user-select: none;
  white-space: nowrap;       /* Prevent breaking the caption into multiple lines */
  max-width: 120px;          /* Optional max width for better layout */
}




#container-image-modal {
  display: none; /* hide by default */
  top: 0;
  left: 0;
  color: rgba(9, 9, 9, 0.7);
  background-color: rgba(9, 9, 9, 0.7); /* semi-transparent dark overlay */
}


.image-modal {
 
   display: none; /* Hide by default! */
  position: fixed;
  z-index: 1500;
  inset: 0;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px;
  overflow-y: auto;
}



.image-modal img.modal-content {
  display: block;
  margin: 0 auto;
  max-width: 85%;
  max-height: 70vh;   /* reduce height so specs fit clearly */
  border-radius: 12px;
  box-shadow: 0 0 24px #2693ffaa;
}

.close-modal {
  position: fixed;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  z-index: 1600;
  transition: color 0.3s ease;
}

.close-modal:hover,
.close-modal:focus {
  color: #2693ff;
  outline: none;
}

.image-specs {
  display: inline-block;
  color: #fff;
  text-align: left;
  margin: 20px auto 60px;
  font-size: 1.15rem;
  background: rgba(6, 22, 46, 0.85);
  padding: 20px 30px;
  border-radius: 16px;
  border: 2px solid #2693ff;
  box-shadow: 0 0 18px #2693ffaa;
  max-width: 380px;
  line-height: 1.5;
}

.image-specs h3 {
  display: none;
 color: #d3973c;
  font-size: 1.35rem;
  text-align: center;
  margin-bottom: 12px;
}

@media (min-width: 900px) {
  .image-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 30px;
  }
  .image-modal img.modal-content {
    max-width: 45%;
    max-height: 80vh;
  }
  .image-specs {
    margin: 0;
  
  }
}

.about-content {
flex: 1 1 300px;
  color: #c8d9f9;
  padding: 1rem 0;
  min-width: 260px;
  text-align: center;
}

.about-content h2 {
  font-size: 2.2rem;
  color: #2693ff;
  margin-bottom: 1rem;    /* Space between heading and paragraph */
  letter-spacing: 1.2px;
  text-align: center;  
}

.about-content p {
max-width: 600px;          /* Limit paragraph width */
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #acc7f3;
  text-align: justify;       /* Justify text */
}



/* Existing main caption style */

.hero-caption {
  position: absolute;
  left: 50%;
  bottom: 11%;
  transform: translateX(-50%);
  background: rgba(6,22,46,0.8);
  color: #fff;
  padding: 18px 50px;
  border-radius: 28px;
  font-size: 1.4rem;
  padding: 14px 30px;
  font-weight: 700;
  border: 2px solid #2693ff;
  box-shadow: 0 6px 12px rgba(6, 22, 46, 0.25);
  letter-spacing: 1.5px;
  text-shadow: 1px 2px 14px #0d1e35, 0 0 3px #3aa7ff;
  max-width: 80vw;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Anek Malayalam', sans-serif;
}

h4 {
  color: #d3973c; /* Replace with any desired color code */
}
.service-icon-circle {
  width: 85px;
  height: 85px;
  background-color: #2693ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(38, 147, 255, 0.3);
  overflow: hidden;              /* Hide overflow beyond circle */
  transition: transform 0.3s ease;
}

.service-icon-circle img {
  width: 100%;                   /* Fill the circle completely */
  height: 100%;
  object-fit: cover;             /* Cover full area without distortion */
  border-radius: 50%;            /* Maintain circular clipping */
}

.service-item:hover .service-icon-circle {
  transform: scale(1.15);
}
#services, #containers, #contact {
  padding: 3rem 1rem 5rem;
  text-align: center;
}
h2 {
  font-size: 2.2rem;
  margin-bottom: 2.2rem;
  color: #2693ff;
  letter-spacing: 1.2px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 3 columns */
  gap: 2rem;
  justify-items: center;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;             /* 1 column on mobile */
  }
}
.service-item {
  background: #0d1e26;
  border-radius: 15px;
  padding: 1.5rem;
  width: 100%;
  max-width: 180px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #e7ecff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(38,147,255,.08);
}
.service-item:hover,
.service-item:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px #38b3ff33;
  outline: none;
}
.service-icon {
  background: #2693ff;
  color: #fff;
  font-size: 2.5rem;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.service-title {
  font-weight: 600;
  font-size: 1.1rem;
}
.containers-grid, .product-containers {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns desktop */
  gap: 1.5rem;
  justify-items: center;
  width: 100%;
}

@media (max-width: 900px) {
  .containers-grid, .product-containers {
    grid-template-columns: repeat(2, 1fr); /* 2 columns tablet */
  }
}

@media (max-width: 600px) {
  .containers-grid,
  .product-containers {
    grid-template-columns: 1fr; /* 1 column mobile */
    width: 100%;
    gap: 1rem;
  }
}
  .container-item,
  .product-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0;
  }
.container-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(38, 147, 255, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.container-item img,
 .product-card img {
  width: 100% !important;
    height: auto !important;
    max-width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    padding: 0;
}


.product-card {
   width: 100%;
  max-width: 390px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background-color: #fff;
  text-align: center;
  transition: transform 0.3s;
    }

.product-card:hover {
      transform: translateY(-5px);
    }

  

.product-name {
      background-color: #415e8b; /* Orange color */
      color: #d3973c;
      font-weight: bold;
      font-size: 18px;
      padding: 15px 0;
      text-align: center;
    }


    /* Responsive: Remove spacing issues */
@media (max-width: 600px) {
  .container-item,
  .product-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
  }
  .product-card img {
    border-radius: 0;
  }
}
.container-item:hover img,
.container-item:focus-within img {
  transform: scale(1.04);
}

#contact {
  max-width: 600px;
  margin: 0 auto;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
label {
  font-weight: 600;
  color: #c6d4df;
}
input[type="text"],
input[type="email"],
textarea {
  background: #0d1e26;
  border: none;
  padding: 0.85rem;
  border-radius: 8px;
  color: #f6f9fc;
  font-size: 1rem;
  transition: background-color 0.3s;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  background: #163866;
  outline: none;
}


input[type="number"],
input[type="number"],
textarea {
  background: #0d1e26;
  border: none;
  padding: 0.85rem;
  border-radius: 8px;
  color: #f6f9fc;
  font-size: 1rem;
  transition: background-color 0.3s;
}
input[type="number"]:focus,
input[type="number"]:focus,
textarea:focus {
  background: #163866;
  outline: none;
}

.btn-primary {
  background-color: #2693ff;
  color: #fff !important;
  padding: 0.75rem 2.2rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  align-self: center;
  transition: background-color 0.25s;
  margin-top: 1rem;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #1760bc;
}
.form-status {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #31e1ff;
  min-height: 1.2em;
  text-align: center;
}



.services-section-dark {
 position: relative;
 background-color: #111; /* or your preferred dark color */
  background: none;  /* Remove any existing background */
  overflow: hidden;
  padding: 3.5rem 1rem 4rem;
  border-radius: 16px;
  margin-bottom: 3rem;
  box-shadow: 0 8px 28px rgba(38, 147, 255, 0.12);
}

.services-section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/2580.jpg') center center/cover no-repeat;
  opacity: 0.30;  /* Adjust opacity here */
  z-index: 1;
}
.services-section-dark > * {
  position: relative;
  z-index: 2;  /* Ensure content appears above background */
}

.services-section-dark h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 3rem;
}

.services-section-dark h3 {
  color: #d3973c; /* cyan accent on hover */
  font-weight: 700;

}

.services-grid-img {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.service-item-img {
  background: rgba(34, 44, 66, 0.76);
  border-radius: 24px;
  padding: 2.2rem 2.2rem 1.8rem 2.2rem;
  box-shadow: 0 6px 36px 0 rgba(38, 147, 255, 0.14);
  max-width: 340px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .2s, box-shadow .2s;
}

.service-item-img:hover {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 12px 42px 0 #2693ff44;
}

.service-icon-img {
  background: #fff;
  border-radius: 50%;
  width: 128px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.7rem auto;
  box-shadow: 0 8px 40px #2693ff22;
  border: 6px solid #e9eef7;
}

.service-icon-img img {
  width: 82px;
  height: 82px;
  object-fit:contain;
  filter: drop-shadow(0 2px 10px #8ad5ff22);
}

.services-section-dark .service-item-img h3 {
  color: #d3973c !important; /* visible golden shade */
  font-weight: 700;
  text-shadow: 0 0 6px rgba(0,0,0,0.4); /* optional: adds glow for readability */
}

.service-item-img h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #222f43;
  margin-bottom: 1rem;
  margin-top: 0;
  letter-spacing: 1px;
}

.service-item-img p {
  color: #dde7f6;
  font-size: 1.08rem;
  margin: 0;
  line-height: 1.52;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .services-grid-img {
    gap: 2.2rem;
  }
}

@media (max-width: 900px) {
  .services-grid-img {
    flex-direction: column;
    align-items: center;
  }
}
#formResponse {
  opacity: 1;
  transition: opacity 0.8s ease; /* Smooth fade-out animation */
}
/* Footer section */
.footer-dark-bg {
  position: relative;
  min-height: 200px;
  border-top: 4px solid #2693ff;
  color: #e8eefc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  object-fit: cover;
  /* Background image */
  background-image: url('images/2589.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* optional parallax effect */
}

/* Dark overlay */
.footer-dark-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 9, 15, 0.75); /* adjust 0.75 for more/less darkness */
  z-index: 1;
}

/* Keep footer content above overlay */
.footer-dark-bg > * {
  position: relative;
  z-index: 2;
  opacity: .9;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 48px 24px 30px 24px;
  gap: 44px;
}

.footer-col {
  flex: 1 1 320px;
  margin: 0 14px;
  display: flex;
  flex-direction: column;
}
.footer-logo-col {
  max-width: 390px;
}
.footer-logo {
  width: 150px;
  margin-top: 5px;
  max-width: 100%;
  margin-bottom: 24px;
   filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.9))
          drop-shadow(0 0 40px rgba(255, 255, 255, 0.8));
}

.footer-desc {
  color: #cdd7eb;
  font-size: 1.08rem;
  margin-bottom: 32px;
}
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 12px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  background: #222b3c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px #09101c3a;
}
.footer-social a:hover { background: #2693ff; color: #fff; }
.footer-heading {
  color: #8ad5ff;
  font-size: 1.17rem;
  font-weight: 700;
  margin-bottom: 23px;
  letter-spacing: 2px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 26px;
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  font-size: 1.07rem;
}
.footer-links li a {
  color: #8ad5ff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.16s;
}
.footer-links li a:hover { color: #fff; }


.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  color: #dde6f9;
  font-size: 1.10rem;
  margin-bottom: 9px;
}

.footer-contact-row i {
  color: #2693ff;
  font-size: 1.28rem;
  min-width: 30px;
  margin-top: 3px;
}

.footer-contact-row span {
  line-height: 1.62;
}
.footer-bottom {
  border-top: 1px solid #19325a;
  padding: 15px 0 7px;
  text-align: center;
  color: #a7bde9;
  font-size: 1rem;
}

.footer-bottom1 {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
   left : 24px;
  
  /* Optional: add spacing */
}


@media (max-width: 1100px) {
  .footer-main { flex-direction: column; gap: 28px; }
  .footer-col { max-width: 100%; margin: 0; }
  .footer-logo { margin-bottom: 12px; }

}
