/* Banner Section */
.page-banner {
  position: relative;
  background: url('../assets/images/about/banner.jpg') center/cover no-repeat;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 65%);
}

.page-banner h1 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease-in-out;
  color: #fff;
}

/* Custom Breadcrumb */
.custom-breadcrumb {
  position: relative;
  display: flex;
  justify-content: center;
  background: transparent;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  animation: fadeInUp 1s ease-in-out;
}

.custom-breadcrumb .breadcrumb-item {
  color: #fff;
  font-size: 14px;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #fff;
  padding: 0 8px;
}

.custom-breadcrumb .breadcrumb-item a {
  color: #F16124;
  text-decoration: none;
}

.custom-breadcrumb .breadcrumb-item a:hover {
  color: #000;
}

.custom-breadcrumb .breadcrumb-item i {
  margin-right: 5px;
}

/* Animations */
@keyframes fadeInDown {
  from {opacity: 0; transform: translateY(-50px);}
  to {opacity: 1; transform: translateY(0);}
}
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(50px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 768px) {
  .page-banner {
    height: 200px;
  }
  .page-banner h1 {
    font-size: 26px;
  }
}


.about-section {
  background: #f9f9f9;
  overflow: hidden;
}

.about-img img{
 border-radius: 10px;
}

.about-title {
  font-size: 36px;
  font-weight: 800;
  color: #184D9C;
}

.about-section p {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
}

.text-orange { color: #F16124; }
.text-blue { color: #184D9C; }

.vision-card {
  background: white;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .about-title { font-size: 28px; }
}

/* Director */

.director-message {
  background: linear-gradient(135deg, #f8f9fa 0%, #eaf2ff 100%);
  padding: 60px 20px;
}

.director-message .container {
  max-width: 1200px;
  margin: 0 auto;
}

.message-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.text-section {
  flex: 1 1 50%;
}

.text-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #184d9c;
}

.text-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}

.image-section {
  flex: 1 1 40%;
  position: relative;
}

.image-section img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.image-section img:hover {
  transform: scale(1.03);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(241,97,36,0.9);
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  border-bottom-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .message-content {
    flex-direction: column;
    text-align: center;
  }
  .text-section, .image-section {
    flex: 1 1 100%;
  }
  .image-caption {
    position: relative;
    border-radius: 8px;
    margin-top: 10px;
    display: inline-block;
  }
}

/* Director */

/* infrastructure */

.hero-content {
  position: relative; z-index: 2;
}
.hero h1 { font-size: 48px; margin-bottom: 15px; }
.hero p { font-size: 20px; }

/* About Section */
.about {
  padding: 60px 20px; max-width: 1100px; margin: auto;
  text-align: center;
}
.about h2 { font-size: 36px; margin-bottom: 20px; color: #333; }
.about p { color: #555; line-height: 1.6; font-size: 18px; }

    /* Production Section */
.production {
  background: #f8f8f8; 
  padding: 20px 20px;
}
.production h2 {
  text-align: center; 
  font-size: 32px; 
  margin-bottom: 40px;
}

/* Flex Layout */
.prod-flex {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap; /* Mobile friendly */
}

/* Table Smaller */
.prod-table-container {
  flex: 1;
  max-width: 400px;
}
.prod-table {
  width: 100%;
  border-collapse: collapse;
}
.prod-table th, .prod-table td {
  border: 1px solid #ddd;
  padding: 10px 12px;
  text-align: center;
  font-size: 14px;
}
.prod-table th {
  background: #ff7b00; 
  color: white;
}

/* Image Side */
.prod-image {
  flex: 1;
  max-width: 450px;
}
.prod-image img {
  width: 100%;
  height: 341px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media(max-width: 768px){
  .prod-flex {
    flex-direction: column;
    text-align: center;
  }
  .prod-image, .prod-table-container {
    max-width: 100%;
  }
}

/* Machine Section */
.machines {
  max-width: 1100px; margin: 60px auto; padding: 0 20px;
}
.machine-row {
  display: flex; align-items: center; gap: 30px; margin-bottom: 0px;
}
.machine-row img {
  width: ; border-radius: 10px;
}
.machine-text { width: 50%; }
.machine-text h3 { font-size: 26px; margin-bottom: 15px; color:#333; }
.machine-text p { color: #555; line-height: 1.6; }

.machine-row.reverse { flex-direction: row-reverse; }

@media(max-width:768px){
  .machine-row { display: contents;}
  .machine-row img, .machine-text { width: 100%;  margin-bottom: 10px;}
  .machine-text h3 { margin-bottom:10px; }
}


/* infrastructure */ 

/* bank */

.bank-section {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}
.bank-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.bank-flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

/* Bank Card */
.bank-card {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 20px;
  flex: 1;
  max-width: 400px;
}
.bank-logo {
  width: 300px;
  margin-bottom: 20px;
}
.bank-table {
  width: 100%;
  border-collapse: collapse;
}
.bank-table th {
  text-align: left;
  padding: 10px;
  background: #f2f2f2;
  width: 40%;
}
.bank-table td {
  padding: 10px;
  text-align: left;
}

/* QR Code Card */
.qr-card {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 20px;
  flex: 1;
  max-width: 400px;
  text-align: center;
}
.qr-card img {
  width: 100%;
  max-width: 280px;
  margin-bottom: 15px;
}
.qr-card p {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

.upi-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.upi-icons img {
  height: 30px;
}

/* Responsive */
@media(max-width: 768px) {
  .bank-flex {
    flex-direction: column;
    align-items: center;
  }
}

/* bank */

/* scheule */

/* Main Section */
.training-schedule {
  max-width: 1000px;
  margin: 40px auto;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: hidden;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fdf2e9;
  padding: 20px;
  flex-wrap: wrap;
  text-align: center;
}
.header .logo img {
  max-height: 50px;
}
.header .title h1 {
  color: #ff6b00;
  margin: 0;
  font-size: 28px;
}
.header .title h3 {
  margin: 5px 0 0;
  font-weight: normal;
}
.header .platforms {
  font-size: 14px;
  color: #444;
}

/* Table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}
.schedule-table thead th {
  background: #ff6b00;
  color: #fff;
  padding: 12px;
  font-size: 15px;
}
.schedule-table tbody td {
  padding: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}
.schedule-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}



/* Responsive */
@media(max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .schedule-table thead {
    display: none;
  }
  .schedule-table, .schedule-table tbody, .schedule-table tr, .schedule-table td {
    display: block;
    width: 100%;
  }
  .schedule-table tr {
    margin-bottom: 15px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 6px;
    overflow: hidden;
  }
  .schedule-table td {
    border: none;
    text-align: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
  }
  .schedule-table td:last-child {
    border-bottom: none;
  }
}

/* scheule */


/* training */

/* Main Training Section */
.training-section {
  padding: 60px 6%;
}

.training-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.training-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.training-block.reverse {
  flex-direction: row-reverse;
}

.training-content {
  flex: 1;
}

.training-content h2 {
  font-size: 28px;
  color: #ff7b00;
  margin-bottom: 15px;
}

.training-content p {
  color: #444;
  line-height: 1.6;
  font-size: 16px;
}

.training-content ul {
  margin-top: 10px;
  padding-left: 20px;
  color: #333;
}

.training-image img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .training-block,
  .training-block.reverse {
    flex-direction: column;
    text-align: center;
  }
}

/* training */

/* Downloads */
/* Section */
.download {
  padding: 50px 5%;
  text-align: center;
}

.download-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
}

/* Grid Layout */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Card */
.download-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.download-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.download-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.download-content {
  padding: 20px;
}

.download-content h3 {
  font-size: 18px;
  color: #222;
  margin: 0 0 10px;
}

.lang {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

/* Button */
.download-btn {
  background: #ff5e14;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.download-btn:hover {
  background: #e24c05;
  transform: scale(1.05);
}

.download-btn i {
  font-size: 16px;
}


/* Downloads */

/* Gallery */

.gallery {
  padding: 50px 5%;
  text-align: center;
}

.gallery-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Item */
.gallery-item {
  position: relative;
}

.gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.gallery-zoom {
  font-size: 28px;
  color: #fff;
}

.gallery-image:hover img {
  transform: scale(1.1);
}

.gallery-image:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #444;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* Gallery */

/* video */

.video {
  padding: 50px 5%;
  text-align: center;
}

.video-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
}

/* Buttons */
.video-buttons {
  margin-bottom: 30px;
}

.video-btn {
  background: #ff6b35;
  border: none;
  color: white;
  padding: 10px 25px;
  margin: 5px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.video-btn:hover,
.video-btn.active {
  background: #e85d2b;
}

/* Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.video-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.video-item iframe {
  width: 100%;
  height: 200px;
}
/* video */

/* GSM Gallery */

.gsm-gallery {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.gsm-gallery-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ff6b00;
}

.gsm-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.gsm-gallery-item img {
  width: 100%;
  height: 200px;        /* Fixed height for uniform size */
  object-fit: cover;    /* Crop image to fit */
  display: block;
  border-radius: 12px;
}

.gsm-gallery-caption {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
  text-align: center;
}

@media (max-width: 768px) {
  .gsm-gallery-title {
    font-size: 28px;
  }
}

/* GSM Gallery */

/* contact */

.contact {
  background: #fff;
  padding: 60px 10%;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-box {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  flex: 1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.contact-box i {
  font-size: 28px;
  color: #F16124;
  margin-bottom: 10px;
}

.contact-box h4 {
  font-size: 18px;
  color: #184D9C;
  margin-bottom: 5px;
}

.contact-box p {
  font-size: 14px;
  color: #000;
}

.contact-box:hover i,
.contact-box:hover h4 {
  color: #F16124;
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.contact-form h2 {
  margin-bottom: 20px;
  color: #184D9C;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #184D9C;
}

.contact-form textarea {
  min-height: 120px;
  margin-bottom: 15px;
}

.contact-btn {
  background: #F16124;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #184D9C;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-info {
    flex-wrap: wrap;
  }
  .contact-main {
    grid-template-columns: 1fr;
  }
}

/* contact */

/* business */

/* Header Styling */
.business-header {
  background: linear-gradient(135deg, #F16124, #184D9C);
}

/* Card Styling */
.business-card {
  max-width: 600px;
  background: white;
  border-radius: 20px;
}

/* Custom Buttons */
.btn-orange {
  background-color: #F16124;
  color: white;
  border-radius: 50px;
  padding: 10px 30px;
  transition: 0.3s;
}

.btn-orange:hover {
  background-color: #d94b14;
  color: white;
}

.btn-blue {
  background-color: #184D9C;
  color: white;
  border-radius: 50px;
  padding: 10px 30px;
  transition: 0.3s;
}

.btn-blue:hover {
  background-color: #0f3574;
  color: white;
}


/* business */

/* neearest */
/* Section */
.franchise-section {
  background-color: #f8f9fa;
}

/* Title */
.franchise-title {
  color: #184D9C;
}

/* Filters */
.franchise-filters .franchise-select {
  max-width: 250px;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.franchise-filters .franchise-btn {
  background-color: #F16124;
  color: white;
  padding: 10px 30px;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.franchise-filters .franchise-btn:hover {
  background-color: #d94b14;
}

/* Table */
.franchise-table-wrapper {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.franchise-table thead {
  background-color: #F16124;
  color: white;
  text-align: center;
}

.franchise-table td,
.franchise-table th {
  vertical-align: middle;
  text-align: center;
  color: #000;
}

.franchise-table-hover tbody tr:hover {
  background-color: rgba(24, 77, 156, 0.08);
  transition: 0.2s;
}

/* neearest */