* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Funnel Display";
  font-style: normal;
  /* border: 1px solid red; */
}


body {
  background-color:rgb(231, 243, 250);
  background-color: #f8f8f8;
  padding-top: 62px;
}

/* side navigation bar */

/* navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 75px;
  z-index: 1000;
  background-color: #f8f8f8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

nav h5 {
margin: 0;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a,
.dropdown h5 {
  color: #040404;
  text-decoration: none;
  font-size: 16px;
  font-weight:100;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-links a:hover,
.dropdown h5:hover {
  color: #3594d5;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #040404;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.6);
  color: #3594d5;
}


/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #040404;
  user-select: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    width: 100%;
    display: none;
    padding: 20px 0;
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }
}

.box { 
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  margin: 50px;
  border-radius: 20px;
  padding: 5px;
  position: relative;     
  z-index: 1;            
}
.col-4{
  display: flex;
  justify-content: center; 
  align-items: center;     
  height: 100vh;
}

.list-group{
  position: fixed;
  margin-bottom: 80px;;
}

.box-container {
  display: flex;
  justify-content: space-around; 
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap; 
}

.box2 {
  flex: 1 1 22%; 
  backdrop-filter: blur(10px);
  background: #3594d5;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 7px 7px 5px rgba(0,0,0,0.2);
  min-width: 250px;
  max-width: 400px;
  transition-duration: 0.25s;
  text-align: center;
  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.box-content {
  flex-grow: 1;
}

.read-more-container {
  margin-top: 20px;
  text-align: center;
}

.box2 a {
  text-decoration: none;
}

.box2 a h5:hover {
  color: #b5d3f5;
}

.box2:hover {
  transform: translateY(-5px);
}

.box2 h5 {
  color: rgb(6, 59, 113);
}



/* footer */

.footer {
  background-color: #0f202b;
  padding: 60px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 20px;
  position: relative;
  color:#f0f0f0;
}

.footer-col h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: #007bff;
  margin-top: 5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #d0d0d0;
}

.footer-col ul li i {
  color: #007bff;
  margin-right: 8px;
}

.footer-col a{
  text-decoration: none;
}

.footer-col a li:hover{
  color:#3594d5;
}


.privacy{
  margin:auto;
  width:95%;
  padding:5% 2%;
}

.privacy div{
  background-color: #ffffff;
 box-shadow: 7px 7px 5px rgba(0,0,0,0.2);
 margin:5%;
 padding:3%;
}

.privacy div hr{
  height: 3px;
  background: linear-gradient(to right, blue,red); 
  border: none;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  margin: 30px 0;
}


.about .logo {
  max-width: 160px;
  margin-bottom: 15px;
}

.about p {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.learn-btn {
  display: inline-block;
  background-color: #007bff;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.learn-btn:hover {
  background-color: #0056b3;
}



/* footer close */



/* home page */

/* why choose us */


 .container3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 50px;
}

.content2 {
  flex: 1 1 60%;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-number {
  font-size: 2rem;
  font-weight: bold;
  color: #3594d5;
  margin-bottom: 10px;
}

.feature h3 {
  font-size: 1.2rem;
  color: #333;
}

.feature p {
  color: #666;
}

.video-section {
  flex: 1 1 35%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-section iframe  {
  width: 100%;
  max-width: 100%;
  height: 350px;
  border-radius: 10px; 
}

/* 📱 Tablet & Mobile Styles */
@media (max-width: 1024px) {
  .container3 {
    flex-direction: column;
    padding: 30px 20px;
  }

  .content2,
  .video-section {
    width: 100%;
    flex: 1 1 100%;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .video-section {
    margin-top: 30px;
  }

  .video-section iframe {
    width: 100%;
    max-width: 100%;
    /* height: 70%; */
    border-radius: 10px;
    min-height: 70%;
  }
}

/* why choose us close */

/*  home page banner */

@keyframes changeimage {
  0% {
      background-image: url('/image/img3.jpg');
  }

  25% {
      background-image: url('image/img4.jpg');
  }

  50% {
      background-image: url('image/img1.jpg');
  }

  100% {
      background-image: url('image/img2.jpg');
  }
}

#banner {
  width: 100%;
  height: 90vh;
  background-image:  url('image/img3.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 1%;
  animation-name: changeimage;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}  


#banner h3 {
  font-size: 80%;
  font-weight: 100;
  letter-spacing: 3px;
  text-shadow: 1px 1px 2px black;
  color: white;
  background: rgba(3, 58, 62, 0.4);
  
  
}

#banner h1 {
  font-weight: 80%;
  font-size: 150%;
  text-transform: uppercase;
  text-shadow: 2px 1px 2px black;
  margin: 25px 0 25px 0;
  color: white;
  background: rgba(3, 58, 62, 0.4);


}

#banner p {
  font-size: 100%;
  word-spacing: 2px;
  margin-bottom: 25px;
  text-shadow: 1px 1px 1px rgb(2, 15, 58);
  background: rgba(3, 58, 62, 0.4);
  color: white;

}

/* home page banner close */

/* company info */

.box-container2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 10px;
  background-color: #e9e9e5;
}

.box4 {
  text-align: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 220px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin:2% 2%;
}

.box4 i {
  color: #3594d5;
  margin-bottom: 15px;
}

.box4 h6{
  font-size:30px;
  font-weight:bold;
}
.num{
  font-size:30px;
  font-weight:bold;
}
.box4 p {
  font-size: 15px;
  color: #555;
  font-weight: bold;
}
/* .box4 span{
  color:#f0f0f0;
} */
@media (max-width: 768px) {
  .box4 {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .box4 {
    width: 45%;
  }
} 


/* company info close */


/* testimonial */
:root {
  --primary-color: #3594d5;
  --secondary-color: #e8e8e8;
  --text-dark: #262626;
  --text-light: #94a3b8;
  --companyhite: #ffffff;
}


.section__container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
}

.section__container h2 {
  position: relative;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.section__container h2::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 2px;
  width: 5rem;
  background-color: var(--primary-color);
}

.scroll-wrapper {
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
}

.scroll-wrapper::-webkit-scrollbar {
  height: 8px;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.scroll-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.scroll-buttons {
  position: absolute;
  top: 50%;
  width: 5%;
  /* transform: translateY(-50%); */
  z-index: 10;
  background: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  color: var(--primary-color);
}

.scroll-left {
  left: 0;
}

.scroll-right {
  right: 0;
}

.section__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  min-width: 100%;
}

.section__card {
  flex: 0 0 300px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 5rem 2rem 2rem;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  min-width: 300px;
}

.section__card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 75%;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  transition: 0.5s;
}

.section__card span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  font-size: 3rem;
  color: var(--white);
}

.section__card p {
  margin-bottom: 2rem;
  color: #666;
  transition: 0.3s;
}

.section__card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
  margin: 0;
}

.section__card h6 {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
  transition: 0.3s;
  margin: 0;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: -1rem;
}

.section__card:hover::before {
  width: 400%;
}

.section__card:hover :is(h5) {
  color: var(--white);
}

.section__card:hover :is(p, h6) {
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .scroll-buttons {
    display: none;
  }
}

/* testimonial close */

/* industries */
   
.container4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 90%;
  margin: 3% auto;
  padding: 10px;
}

.box3 {
  flex: 1 1 calc(33.33% - 20px);
  min-width: 250px;
  max-width: 320px;
  background: #ffffff;
  padding: 30px 20px;
  box-sizing: border-box;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  position: relative;
}

/* .box3:nth-child(1)::before { content: "🌱"; }
.box3:nth-child(2)::before { content: "🏭"; }
.box3:nth-child(3)::before { content: "✈️"; }
.box3:nth-child(4)::before { content: "📺"; }
.box3:nth-child(5)::before { content: "💰"; }
.box3:nth-child(6)::before { content: "🎓"; } */



/* Mobile View (stacked) */
@media (max-width: 767px) {
  .box3 {
    flex: 1 1 100%;
  }
}

/* Tablet View (2 per row) */
@media (min-width: 768px) and (max-width: 1024px) {
  .box3 {
    flex: 1 1 calc(50% - 20px);
  }
}

/* industries close */


.logo-slider {
  overflow: hidden;
  background: #f5f5f5;
}

.logo-slider-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.logo-slider-track img {
  margin: 0 40px;

  width: 100px;
  aspect-ratio: 3/2;
  object-fit: contain;
  mix-blend-mode: color-burn;
}

/* Keyframe for smooth scroll */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* about page */

/* mission and vision */

.container7 {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  padding: 2rem;
  max-width: 1200px;
  width: 100%;
  margin:auto;
}

.card {
  flex: 1 1 45%;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 2rem;
  box-shadow:
    0 8px 12px rgba(0, 0, 0, 0.08),
    0 4px 6px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 #ffffff33;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
  /* width:500px; */
}

.card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 14px 24px rgba(0, 0, 0, 0.15),
    0 6px 12px rgba(0, 0, 0, 0.10);
}

.container7 h3{
  text-shadow:3px 3px 2px rgba(0, 0, 0, 0.1);
  color: #3594d5;
}

.container7 p{
  color:#666;
}



@media (max-width: 768px) {
  .card {
    flex: 1 1 100%;
  }
}

/* mission ad vision close  */

/* who we are  */

.container5 {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.who-we-are-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.circular-image-wrapper {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, #3594d5 0%, #d1d7fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.circular-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.who-we-are-image {
  position: relative;
  flex: 1 1 45%;
  max-width: 500px;
}

.experience-badge {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3594d5;
  text-align: center;
  padding: 20px;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.experience-badge .years {
  font-size: 36px;
  font-weight: 700;
}

.experience-badge .text {
  font-size: 14px;
}

.who-we-are-text {
  flex: 1 1 45%;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3594d5;
  font-weight: bold;
  margin-bottom: 10px;
}



.cta-row {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.discover-btn {
  background: #3594d5;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s ease;
}

.discover-btn:hover {
  background: #b5d3f5;
  color:#3594d5;

}

.call-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.call-icon {
  background: #b5d3f5;
  border-radius: 50%;
  padding: 12px;
  font-size: 20px;
  color: #3594d5;
}

.call-number {
  font-weight: bold;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .who-we-are-content {
    flex-direction: column;
    text-align: center;
  }

  .info-boxes {
    flex-direction: column;
    align-items: center;
  }

  .cta-row {
    justify-content: center;
  }

  .experience-badge {
    width: 120px;
    height: 120px;
  }

  .experience-badge .years {
    font-size: 28px;
  }
}

/* what sets us apart */

.container6 {
  max-width: 1000px;
  margin:auto;
  padding: 60px 20px;
}

.cyber-section h2 {
  line-height: 1.3;
  margin-bottom: 20px;
}


.features2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.feature2 {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px dashed #3594d5;
  border-radius: 10px;
  background: #fffdfd;
  color: #040404;
}

.feature2 i {
  color: #3594d5;
  font-size: 18px;
}

.apart-heading {
  margin-bottom: 25px;
  color: #040404;
}

.apart-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 15px;
}

.apart-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #222;
  padding: 10px 15px;
  border-left: 4px solid #3594d5;
  background: rgba(190, 190, 193, 0.267);
  border-radius: 8px;
}

.apart-list i {
  color: #3594d5;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .cyber-section h1 {
    font-size: 32px;
  }

  .apart-list {
    grid-template-columns: 1fr;
  }

  .features2 {
    grid-template-columns: 1fr;
  }
}


/* about page close */

/* FAQ pGW */

.container2 {
  display: flex;
  height: 100vh;
}

.sidebar {
  width: 250px;
  background-color: #fff;
  border-right: 1px solid #ddd;
  padding: 20px 0;
}

aside.sidebar {
  margin-top: 14px;
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  padding: 15px 20px;
  cursor: pointer;
  border-left: 4px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

.sidebar ul li:hover,
.sidebar ul li.active {
  background-color: #f0f0f0;
  border-left: 4px solid #3594d5;
  font-weight: bold;
}

.content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
}

.subheading {
  color: #777;
  margin-bottom: 20px;
}

.faq {
  border-top: 1px solid #ddd;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  color: #555;
  font-size: 16px;
}

.faq-item.active .faq-answer {
  display: block;
}

.toggle-icon {
  font-size: 18px;
  color: #888;
  margin-left: 10px;
  user-select: none;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h2{
  font-weight: 500;
  font-size:160%;
}

.tab-content h3{
  font-weight: 500;
  font-size:110%;
}

@media (max-width: 768px) {
  .container2 {
    flex-direction: column;
    height: auto;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    overflow-x: auto;
  }

  .sidebar ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 10px;
  }

  .sidebar ul li {
    flex: 0 0 auto;
    padding: 10px 15px;
    white-space: nowrap;
    font-size: 14px;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .sidebar ul li:hover,
  .sidebar ul li.active {
    background-color: #f0f0f0;
    border-left: none;
    border-bottom: 3px solid #3594d5;
  }

  .content {
    padding: 20px 15px;
  }

  .content h2 {
    font-size:100%;
  }


  .faq-question h3 {
    font-size: 100%;
  }

  .faq-answer {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .faq-question h3 {
    font-size: 18px;
  }

  .faq-answer {
    font-size: 15px;
  }
}

.faq-question h3 {
  font-size: 100%;
}

  /* form */
  
  .contact-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
    padding: 40px 20px;
  }
  
  .form-container {
    background-color: #ffffff;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    min-width: 260px;
    max-width: 360px;
    width: 100%;
    transition: transform 0.3s;
  }
  
  form label {
    display: block;
    margin-top: 8px;
    color: #333;
    font-weight: 500;
  }
  
  form input,
  form textarea {
    width: 100%;
    height: 36px;
    padding: 10px 0;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    background-color: #f9f9f9;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    margin:10px 0;
  }
  
  form textarea {
    height: 80px;
    
  }
  
  form input:focus,
  form textarea:focus {
    border-color: #3594d5;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(53, 148, 213, 0.2);
    outline: none;
  }
  
  button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #3594d5, #2673ab);
    color: white;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    margin-top: 20px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
  }
  
  button:hover {
    background: linear-gradient(to right, #2673ab, #1f5c89);
    transform: translateY(-2px);
  }
  
  #responseMessage {
    margin-top: 20px;
    color: green;
    text-align: center;
    font-size: 14px;
  }
  
  .map {
    min-width: 260px;
    max-width: 360px;
    width: 100%;
  }
  
  .map iframe {
    width: 100%;
    height: 620px;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-form {
      flex-direction: column;
      align-items: center;
      padding: 30px 10px;
      gap: 25px;
    }
  
    .form-container,
    .map {
      max-width: 90%;
      padding: 20px;
    }
  
    .map iframe {
      height: 360px;
    }
  }
  
  @media (max-width: 480px) {
    .form-container,
    .map {
      max-width: 100%;
      padding: 16px;
    }
  
    form input,
    form textarea {
      padding: 8px 10px;
      font-size: 13px;
    }
  
    button {
      padding: 10px;
      font-size: 14px;
    }
  
    .map iframe {
      height: 280px;
    }
  }
  
 
  /* form close */


  /* image-slider */

  .box1 {
    padding: 20px;
    margin:5% ;
     justify-content: center; 
  
     flex: 1 1 30%; 
  }
  
  .box1 p{
    color:#666;
  }

   .container {
    margin: 0 0 0 16%;
    width: 250px;
    height: 200px;
    position: relative;
    perspective: 1000px;
    margin-bottom: 50px;
  }
  
  .carousel {
    height: 100%;
    width: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 1s;
    margin: 10%;
  }
  
  .item {
    display: block;
    position: absolute;
    width: 250px;
    height: 200px;
    line-height: 200px;
    font-size: 5em;
    text-align: center;
    color: #FFF;
    opacity: 0.95;
    border-radius: 10px;
  }
  
  .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* 3D Transform Positions */
  .a { transform: rotateY(0deg) translateZ(250px); }
  .b { transform: rotateY(60deg) translateZ(250px); }
  .c { transform: rotateY(120deg) translateZ(250px); }
  .d { transform: rotateY(180deg) translateZ(250px); }
  .e { transform: rotateY(240deg) translateZ(250px); }
  .f { transform: rotateY(300deg) translateZ(250px); }
  
  /* 📱 Mobile View */
  @media (max-width: 768px) {
    .container {
      width: 180px;
      height: 140px;
    }

    .item img {
      width: 70%;
      height: 70%;
      /* object-fit: cover; */
    }
  
    .item {
      width: 180px;
      height: 140px;
      line-height: 140px;
      font-size: 3em;
    }
    
    
  
    .a { transform: rotateY(0deg) translateZ(130px); }
    .b { transform: rotateY(60deg) translateZ(130px); }
    .c { transform: rotateY(120deg) translateZ(130px); }
    .d { transform: rotateY(180deg) translateZ(130px); }
    .e { transform: rotateY(240deg) translateZ(130px); }
    .f { transform: rotateY(300deg) translateZ(130px); }
  }

  @media (max-width: 375px) {

    .container {
      margin: 0 0 0 0;
    }

    .carousel {
      margin-left: 13%;
    }
  
    .item {
      width: 180px;
      height: 140px;
      line-height: 140px;
      font-size: 3em;
    }

  
  }

  /* image slider close */
  
  /* services page  */
  
  .services-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  .service-card {
    background: rgba(0, 0, 0, 0.6);
    background-color: #3594d5;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    color: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
  }
  
  .service-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #b5d3f5;
  }
  
  .service-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #f0f0f0;
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    background: #b5d3f5;
    color:#3594d5;
  }
  
  .service-card:hover p,
  .service-card:hover i {
    color:#0a3968;
  }

  /* read more button */

  .service-card a {
    --color: #f0f0f0;
    font-family: inherit;
    display: inline-block;
    width: 6em;
    height: 2.6em;
    line-height: 2.5em;
    overflow: hidden;
    cursor: pointer;
    margin: 20px;
    font-size: 17px;
    z-index: 1;
    color: var(--color);
    border: 2px solid var(--color);
    border-radius: 6px;
    position: relative;
    text-decoration: none;
  }
  
  .service-card a::before {
    position: absolute;
    content: "";
    background: var(--color);
    width: 150px;
    height: 200px;
    z-index: -1;
    border-radius: 50%;
  }
  
  .service-card a:hover {
    color:#040404;
  }
  
  .service-card a:before {
    top: 100%;
    left: 100%;
    transition: 0.3s all;
  }
  
  .service-card a:hover::before {
    top: -30px;
    left: -30px;
  }

  /* reead more button close */
  

  /* services page close  */

  /* All the services */

  .text_styling{
    padding:10px 50px;
    color:#666;
  }

  .accordion-list {
    list-style: none;
    padding: 20px;
    margin: 2%;
    width: 95%;
  }
  
  .outer-list {
    box-shadow: 0 2px 2px 2px #D4C9BE;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
  }

  .outer-list h2{
    font-weight: 500;
    font-size: 95%;
  }
  
  
  
  .accordion-list li {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    transition: background 0.3s;
  }
  
 .accordion-list label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px;
  }
  
  label h2 {
    font-size:110%;
    margin: 0;
    color: #333;
  }
  
  label .icon {
    font-size: 15px;
    color: #3594d5;
  }
  
  input[type="checkbox"] {
    display: none;
  }
  
  .content3 {
    padding: 0 20px 20px 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;

    color:#666;
  }
  
  /* When checkbox is checked, show content */
  input[type="checkbox"]:checked ~ .content3 {
    max-height: 1000px;
    opacity: 1;
  }
  
  /* Default plus */
  label .icon::before {
    content: "+";
  }
  
  /* When checked, show minus */
  input[type="checkbox"]:checked + label .icon::before {
    content: "-";
  }
  
  /* Apart List inside accordion */
  .apart-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
  }
  
  .apart-list li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 24px;
    padding: 10px;
    background: rgba(190, 190, 193, 0.2);
    border-left: 4px solid #3594d5;
    border-radius: 6px;
  }
  
  /* Text inside content */
  .content3 p {
    font-size: 14px;
    line-height: 26px;
    margin: 10px 0;
  }

  .service_heading{
    padding:40px 0 20px 0;
    text-align:center;
    font-weight: 200;
    font-size:22px;

  }
  
  .badges{
      height: 150px; 
      width: 150px; 
      margin: 0 1%;
  }

  .diagram{
    height: 30%;
     width: 40%;
      margin: 50px
  }
  
  /* Mobile responsive */

  @media (max-width: 768px) {
    .service_heading {
      font-size: 32px;
    }
    label h2 {
      font-size: 20px;
    }
    label .icon {
      font-size:24px;
  }
  .service_heading{

    font-size:20px;

  }
  .badge{
    margin-top: 15px;
  }
  .diagram{
    height:500px;
    width: 500px;
    margin:3%;
  }
  }

  @media (max-width: 418px) {
    .badges{
     height:110px;
     width:110px;
     margin: 0;
   }

   }

   @media (max-width: 430px) {
   .diagram{
    height:210px;
    width: 270px;
    margin:3%;
  }

   }

  


  /* All the services close */