* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Top bar */
.topbar {
  background: #FC7217;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 5px 20px;
}

.topbar a:hover {
  color: black;              /* 🔥 hover turns icon black */
  transform: scale(1.2);     /* smooth enlarge effect */
}


.topbar a {
  margin-left: 10px;
  color: white;
  font-size: 20px;
  text-decoration: none;
}

/* Header section */
/* Header section */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background: #fff;
  position: relative;
}

#navbar ul li a:hover {
  background-color: #FC7217;
}

.dropdown-content li a:hover {
  background-color: #FC7217;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;         /* appear just below the parent */
  left: 0;           /* start from the left edge of the parent link */
  background-color: #556b2f;
  min-width: 160px;
  z-index: 1;
  border-radius: 10px;   /* 🔥 curved edges */
  overflow: hidden;  
}

/* Ensure dropdown centers under the parent link */
.dropdown {
  position: relative;
}

.dropdown-content {
  left: 50%;
  transform: translateX(-50%);  /* centers the dropdown under "About Us" */
}

.dropdown-content li a:hover {
  background-color: #6b8e23;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}


.logo img {
  width: 200px;
  height: auto;
  display: block;
}

/* Center the title absolutely */
.title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.title h1 {
  color: #FC7217;
  font-size: 40px;
  white-space: nowrap;
  font-weight: bold;
  line-height: 1.2;
}


/* Navbar */
nav {
  background: #355931;
  position: relative;
   border-bottom: 2px solid white;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  color: white;
  font-size: 15px;
  transition: background 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  background: rgba(255, 255, 255, 0.2);
}

/* Hamburger button */
.menu-toggle {
  display: none;
  background: #2e4621;
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px 20px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
}

/* Hero section (just placeholder background) */
.hero {
  height:500px;
  background: url('hero1.png') no-repeat center center/cover;
}

/* Responsive */
@media(max-width: 900px) {
  .header {
    flex-direction: column;
    margin-right: 0;
    margin-bottom: 10px;
    text-align: center;
  }
  .header img {
    margin-bottom: 10px;
  }
}

@media(max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  nav ul li a {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .menu-toggle {
    display: block;
  }
  nav.active ul {
    display: flex;
  }
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  background-color:#FC7217;
  color: #000;
  font-size: 24px;
  font-weight: bold;
  padding: 10px 20px;
  margin-bottom: 10px;
}
.about-wrapper{
    padding: 0 60px;
}
.about-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.about-content {
  font-size: 18px;
  max-width: 60%;
}

.about-content p {
  margin: 10px 0;
}

.logo-container {
  max-width: 200px;
}

.logo-container img {
  width: 100%;
  height: auto;
}

.certificates {
  margin-top: 40px;
}

.certificates p {
  font-size: 18px;
  text-align: center;
  margin: 10px 0;
}



.section-header {
  background-color: #FC7217;
  color: #000;
  font-size: 24px;
  font-weight: bold;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.about-section {
  margin: 30px;
}



/* make all lines start from same position */
.about-content p {
  display: flex;
  align-items: baseline;
  margin: 10px 0;
  font-size: 1.05rem;
  color: #333;
}

.product-wrapper {
  padding: 0 60px;
}

.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 20px;
  margin: 30px;
}

.top-row img {
  width: 45%;        /* Two images side-by-side */
  max-width: 700px;
  height: 300px;
}

.bottom-row img {
  width: 30%;        /* Three images side-by-side */
  max-width: 400px;
  height: 330px;
}

.top-row img {
  flex: 0 0 calc(50% - 10px);
}

/* Bottom row: 3 images */
.bottom-row img {
  flex: 0 0 calc(33.33% - 13.33px);
}



.gallery-section {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 20px;
}

.gallery-back{
    background-color: antiquewhite;
}

.gallery-title {
  background-color: #FC7217;
  color: white;
  font-size: 24px;
  font-weight: bold;
  padding: 15px 20px;
}

.gallery-back {
  background-color: #fff;
  padding: 30px;
  padding-top: 10px; /* 🔥 pushes grid a bit inside from the heading line */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-item {
  background-color: #ccc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05); /* gentle zoom */
}

.gallery-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* soft shadow */
  transform: translateY(-5px); /* small upward lift */
}


.gallery-caption {
  background-color: #FC7217;
  color: black;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  width: 100%;
}




.footer {
  border-top: 10px solid #FC7217 ;
  background-color: #3a5232; /* Dark green background */
  color: white;
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 30px 40px;
  align-items: start;
  justify-content: space-between;
}

.footer-column h3 {
  color: #FC7217;
  margin-bottom: 10px;
}

.footer-column p,
.footer-column ul {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 5px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-logo {
  text-align: center;
}

.footer-logo-img {
  width: 120px;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #FC7217;
  color: white;
  font-size: 16px;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background-color: #FC7217;
}

.footer-bottom {
  background-color: #FC7217;
  color: black;
  display: flex;
  justify-content: center;  /* Center entire row */
  gap: 600px; /* Space between Copyright & Powered by */
  padding: 10px 20px;
  font-weight: bold;
  font-size: 14px;
  flex-wrap: wrap; /* Makes it responsive on small screens */
  text-align: center;
}

/* White box for logo + icons */
.logo-box {
  background-color: white;
  border-radius: 8px; /* optional for smooth corners */
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Contact Us Section */
/* Grey Header Bar */
.contact-header {
  background-color: #d9d9d9; /* grey color */
  text-align: center;
  padding: 60px 0;
}

.contact-header h2 {
  color: #FC7217; /* dark orange title */
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

/* White Section Below Header */
.contact-details {
  background-color: #fff;
  padding: 60px 100px;
}

.contact-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
}

.contact-box {
  flex: 1;
  min-width: 250px;
}

.contact-box h3 {
  background-color: #FC7217;
  color: black;
  text-align: center;
  padding: 15px 0;
  margin-bottom: 15px;
}

.contact-box p {
  line-height: 1.8;
  color: #333;
}



/* Google Map */
.map-container {
  width: 100%;
  background-color: rgb(247, 185, 134) 0%,;
  padding: 20px 0 50px;
}

.map-container iframe {
  width: 80%;
  height: 400px;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

.map-section {
  background-color: #faebd7; /* skin / light beige color */
  padding: 40px 0;
} 

/* Responsive */
@media (max-width: 768px) {
  .map-container iframe {
    width: 95%;
    height: 300px;
  }
}


.infra-header {
  background-color: #d9d9d9; /* grey color */
  text-align: center;
  padding: 60px 0;
}

.infra-header h2 {
  color: #FC7217; /* dark orange title */
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

/* Infrastructure section - stacked images */
.infrastructure-section {
  background-color: #ffffff;
  padding: 60px 0;
}

.infra-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
}

/* Image styling */
/* Infrastructure section */
.infrastructure-section {
  background-color: #fff;
  padding: 40px 0;
}

/* Stack images vertically */
.infra-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

/* Make images wide like your screenshot */
.infra-gallery img {
  width: 90%;            /* covers most of screen */
  max-width: 1400px;     /* large screens limit */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Smooth hover zoom */
.infra-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Responsive for smaller devices */
@media (max-width: 768px) {
  .infra-gallery img {
    width: 95%;
    max-width: none;
  }
}



/* Responsive for smaller screens */
@media (max-width: 768px) {
  .infra-gallery img {
    width: 100%;
  }
}


.product-header {
  background-color: #d9d9d9; /* grey color */
  text-align: center;
  padding: 60px 0;
  border-bottom:40px solid #faebd7 ;
}

.product-header h2 {
  color: #FC7217; /* dark orange title */
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}


.two-images {
  display: flex;
  justify-content: center;   /* centers both images horizontally */
  align-items: center;
  gap: 30px;                 /* space between the images */
  flex-wrap: wrap;           /* makes them stack on smaller screens */
  margin: 30px 0;
  padding: 0 70px;
}

.two-images img {
  width: 48%;                /* each takes up about half the width */
  height: 400px;             /* set fixed height for same size */
  object-fit: cover;         /* crops image neatly */
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.two-images img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

/* Responsive design */
@media (max-width: 768px) {
  .two-images img {
    width: 100%;
    height: auto;
  }
}

.four-images {
  display: flex;
  justify-content: center;   /* center the whole row */
  align-items: flex-start;
  gap: 25px;                 /* equal space between images */
  flex-wrap: wrap;
  margin: 40px auto;
  padding: 0 80px;           /* space from both sides */
  box-sizing: border-box;
}

.four-images img {
  width: 22%;                /* 4 images in one line with space between */
  height: 350px;             /* fixed height for standing images */
  object-fit: cover;         /* keeps proportions while cropping neatly */
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.four-images img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive design */
@media (max-width: 1024px) {
  .four-images img {
    width: 45%;              /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .four-images img {
    width: 100%;             /* 1 per row on mobile */
  }
}


.three-images {
  display: flex;
  justify-content: center;     /* centers the whole row */
  align-items: flex-start;
  gap: 30px;                   /* equal space between images */
  flex-wrap: wrap;
  margin: 40px auto;
  padding: 0 80px;             /* space from both sides */
  box-sizing: border-box;
}

.three-images img {
  width: 30%;                  /* 3 images fit in one row */
  height: 350px;               /* standing image style */
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.three-images img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive design */
@media (max-width: 1024px) {
  .three-images img {
    width: 45%;                /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .three-images img {
    width: 100%;               /* 1 per row on mobile */
  }
}


.download-header {
  background-color: #d9d9d9; /* grey color */
  text-align: center;
  padding: 60px 0;
}

.download-header h2 {
  color: #FC7217; /* dark orange title */
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}


body {
  font-family: "Noto Sans Gujarati", Arial, sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
}

.container {
  margin: 40px auto;
  max-width: 1200px;
}

header {
  background-color: #FC7217;
  color: white;
  padding: 20px;
}

header h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.button-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.btn {
  background-color: #FC7217;
  color: black;
  text-decoration: none;
  font-weight: 700;
  padding: 15px 25px;
  border-radius: 2px;
  transition: 0.3s;
}

.btn:hover {
  background-color: #FC7217;
  color: white;
}

footer p {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.meeting-section {
  margin-top: 50px;
  margin-bottom: 20px;
  margin-left: 160px;
  margin-right: 160px;
}

.meeting-bar {
  background-color: #FC7217;
  padding: 20px;
}

.meeting-bar h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: black;
}


.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  grid-auto-rows: 1fr; /* Keeps rows equal height */
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 50px;
}

/* Image styling */
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1; /* Makes all images square */
  object-fit: cover;   /* Crops to fill */
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.profile-header {
  background-color: #d9d9d9; /* grey color */
  text-align: center;
  padding: 60px 0;
  border-bottom: 40px solid #faebd7;
}

.profile-header h2 {
  color: #FC7217; /* dark orange title */
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

/* Banner Section */
.banner {
  background-color: #FC7217; /* Orange color */
  color: #000; /* Black text */
  text-align: center;
  padding: 20px 10px;
  max-width: 80%;
  margin: 20px auto;
  
}

.banner h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.banner h3 {
  margin: 5px 0 0;
  font-size: 1.2rem;
  font-weight: normal;
}


table {
  width: 90%;
  border-collapse: collapse;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-width: 1215px;
  margin-bottom: 30px;
}

th, td {
  padding: 12px 18px;
  text-align: left;
  border: 1px solid #e0e0e0;
}

thead th {
  background-color: #3c5436;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}


tbody tr:hover {
  background-color: #FC7217;
}

tbody tr:hover td:last-child {
  color: white; /* ensures all text turns white on hover */
}

td:first-child {
  width: 60px;
  text-align: center;
  font-weight: bold;
}

td:nth-child(2) {
  width: 250px;
  font-weight: 500;
}

td:last-child {
  color: #333;
}

ul {
  margin: 0;
  padding-left: 20px;
}

.certi-header {
  background-color: #d9d9d9; /* grey color */
  text-align: center;
  padding: 60px 0;
}

.certi-header h2 {
  color: #FC7217; /* dark orange title */
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

/* ===== Header Section Design ===== */
.header-section {
  background-color: #fff3e6; /* light beige background */
  text-align: center;
  padding: 40px 20px;
}

.header-section h2,
.header-section h3 {
  color: #2d2013; /* dark brown text */
  font-weight: 700;
  margin: 8px 0;
  font-family: "Noto Sans Gujarati", "Segoe UI", Arial, sans-serif;
}

.header-section h2 {
  font-size: 1.6rem;
}

.header-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

.mng-header {
  background-color: #d9d9d9; /* grey color */
  text-align: center;
  padding: 60px 0;
  border-bottom: 40px solid #faebd7;
}

.mng-header h2 {
  color: #FC7217; /* dark orange title */
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

/* Banner Section */
.members {
  background-color: #FC7217; /* Orange color */
  color: #000; /* Black text */
  text-align: center;
  padding: 20px 10px;
  max-width: 80%;
  margin: 20px auto;
  
}

.members h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.members h3 {
  margin: 5px 0 0;
  font-size: 1.2rem;
  font-weight: normal;
}

/* ===== Member Table Design ===== */
.member-table {
  width: 90%;
  border-collapse: collapse;
  margin: 40px auto;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
}

.member-table th,
.member-table td {
  padding: 12px 18px;
  border: 1px solid #e0e0e0;
  text-align: left;
}

.member-table thead th {
  background-color: #3c5436;
  color: white;
  font-weight: bold;
  text-transform: capitalize;
}

.member-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* orange hover for all rows */
.member-table tbody tr:hover {
  background-color: #FC7217;
  color: white;
  transition: all 0.3s ease;
}

.member-table tbody tr:hover td {
  color: white;
}

.skin-line {
  border: none;
  height: 40px; /* thickness */
  margin-bottom: 10px;
  background-color: #f5e4d0; /* skin color tone */
}

/* ===== Table Layout Design ===== */
.styled-table {
  width: 90%;
  margin: 40px auto;
  border-collapse: collapse;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  
}

.styled-table th,
.styled-table td {
  border: 1px solid #ddd;
  padding: 14px 20px;
  text-align: left;
}

.styled-table thead {
  background-color: #3c5633; /* dark green header */
  color: #fff;
}

.styled-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.styled-table tbody tr:hover {
  background-color: #FC7217; /* orange hover */
  color: #fff;
  transition: 0.3s ease;
}

.skinn-line {
  border: none;
  height: 40px; /* thickness */
  background-color: #f5e4d0; /* skin color tone */
}



