/* *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #f5f5f5;
} */

/* Slider container */
.slider {

  height: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Slides wrapper */
.slides {
  width: 500%;
  height: 100%;
  display: flex;
}

/* Hide radio buttons */
.slides input {
  display: none;
}

/* Single slide */
.slide {
  width: 20%;
  transition: 1s;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Manual navigation (dots) */
.navigation-manual {
  position: absolute;
  width: 100%;
  bottom: 15px;
  display: flex;
  justify-content: center;
}

.manual-btn {
  border: 2px solid white;
  padding: 6px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.4s;
  margin: 0 6px;
}

.manual-btn:hover {
  background: white;
}

/* Radio checked -> move slides */
#radio1:checked~.first {
  margin-left: 0;
}

#radio2:checked~.first {
  margin-left: -20%;
}

#radio3:checked~.first {
  margin-left: -40%;
}

#radio4:checked~.first {
  margin-left: -60%;
}

/* Auto navigation dots (invisible) */
.navigation-auto {
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: center;
  bottom: 15px;
  opacity: 0;
}

.navigation-auto div {
  border: 2px solid white;
  padding: 5px;
  border-radius: 50%;
  margin: 0 6px;
}


/* Apply animation */
.slides {
  animation: autoplay 16s infinite;
}

/* Section Container */
.principal-section {
  max-width: 1215px;
  margin: 60px auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 30px;
  align-items: center;
  transition: transform 0.3s ease;
}

.principal-section:hover {
  transform: translateY(-5px);
}

/* Principal Image */
.principal-section img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #9a1e17;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Content */
.principal-content {
  flex: 1;
}

.principal-content h2 {
  font-size: 30px;
  font-weight: bold;
  color: #9a1e17;
  margin-bottom: 12px;
  position: relative;
}

.principal-content h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #f59e0b;
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 2px;
}

.principal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}

.principal-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-top: 15px;
}

/* Responsive Design */
@media(max-width: 768px) {
  .principal-section {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .principal-section img {
    margin-bottom: 20px;
  }

  .principal-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.facilities-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #9a1e17;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 75px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.facilities-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.facility-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: visible;
}

.facility-card .circle {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.facility-card h3 {
  margin-top: 40px;
  font-size: 19px;
  color: #9a1e17;
  font-weight: bold;
  text-transform: uppercase;
}

.facility-card p {
  color: #1b1b1b;
  font-size: 15px;
  margin-top: 10px;
}

/* Different Colors for Each Card */
.card1 {
  background: #ffffff;
}

.card2 {
  background: #ffffff;
}

.card3 {
  background: #ffffff;
}

.card4 {
  background: #ffffff;
}

.circle i {
  font-size: 70px;
}


/* Tablet */
@media (max-width: 1024px) {
  .facilities-row {
    grid-template-columns: repeat(2, 1fr);
    /* 2 in a row */
  }
}

/* Mobile */
@media (max-width: 600px) {
  .facilities-row {
    grid-template-columns: 1fr;
    /* 1 in a row */
  }

  .facility-card {
    padding: 20px;
  }

  .facility-card .circle {
    width: 75px;
    height: 75px;
  }

  .facility-card .circle i {
    font-size: 32px;
  }

  .facility-card h3 {
    font-size: 1.1rem;
  }

  .facilities-section .section-title {
    font-size: 1.5rem;
  }

  .facilities-section .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
}

.breadcrumb-banner {
  position: relative;
  background: url('your-image.jpg') center/cover no-repeat;
  height: 200px;
  /* short height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.breadcrumb-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 41, 77, 0.6);
  /* dark overlay */
}

.breadcrumb-banner .container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: bold;
}

.breadcrumb ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 15px;
}

.breadcrumb ul li {
  color: #fff;
  margin-right: 8px;
}

.breadcrumb ul li a {
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb ul li a:hover {
  color: #ffd700;
}

.breadcrumb ul li::after {
  content: "›";
  margin-left: 8px;
  color: #fff;
}

.breadcrumb ul li:last-child::after {
  content: "";
}

.school-rules ul li span {
  position: absolute;
  left: 0;
  border: 1px solid #ccc;
  background-color: #9a1e17;
  color: white;
  width: 30px;
  font-size: 14px;
  font-weight: 600;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
}

li {

  display: block;
  text-align: left;
}

.testimonial-carousel .owl-item img {
  width: 100%;
  height: 0%;
}

p {
  color: #252323;
}

.testimonial-carousel .owl-dot.active {
  width: 13px;
  height: 13px;
}

.testimonial-carousel .owl-dot {
  width: 13px;
  height: 13px;
}

.school-rules ul li span {
  position: absolute;
  left: 0;
  border: 1px solid #ccc;
  background-color: #9a1e17;
  color: white;
  width: 30px;
  font-size: 14px;
  font-weight: 600;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
}

.school-rules ul li {
  list-style-type: none;
  font-size: 16px;
  line-height: 30px;
  position: relative;
  margin-bottom: 20px;
  padding-left: 50px;
  text-align: justify;
}

a {
  color: #ffffff;
}

.img-box {
  padding: 25px;
}

.wrap-about .img {
  width: 100%;
  height: 400px;
}

.logo {
  margin: 21px;
}

.topp {
  margin-left: -104px;
}

.topp .text {
  margin-left: 0px;
}

.topp .icon span {
  background: #9a1e17;
  color: #EFEFEF;
  font-size: 20px;
  border-radius: 50%;
}

.btn {
  margin-top: 20px;
  margin-right: 100px;
}

.card {}

.cards-wrapper {
  display: flex;
  justify-content: center;
}

.card img {
  max-width: 100%;
  max-height: 100%;
}

.carousel-control-prev,
.carousel-control-next {
  background-color: #e1e1e1;
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

ol,
ul {
  padding-left: 0rem;
}

.school-rules ul li span {
  position: absolute;
  left: 0;
  border: 1px solid #ccc;
  background-color: #9a1e17;
  color: white;
  width: 30px;
  font-size: 14px;
  font-weight: 600;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
}

li {

  display: block;
  text-align: left;
}

.testimonial-carousel .owl-item img {
  width: 100%;
  height: 0%;
}

p {
  color: #252323;
}

.testimonial-carousel .owl-dot.active {
  width: 13px;
  height: 13px;
}

.testimonial-carousel .owl-dot {
  width: 13px;
  height: 13px;
}

.school-rules ul li span {
  position: absolute;
  left: 0;
  border: 1px solid #ccc;
  background-color: #9a1e17;
  color: white;
  width: 30px;
  font-size: 14px;
  font-weight: 600;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
}

.school-rules ul li {
  list-style-type: none;
  font-size: 16px;
  line-height: 30px;
  position: relative;
  margin-bottom: 20px;
  padding-left: 50px;
  text-align: justify;
}

a {
  color: #ffffff;
}

.img-box {
  padding: 25px;
}

.wrap-about .img {
  width: 100%;
  height: 400px;
}

.logo {
  margin: 21px;
}

.topp {
  margin-left: -104px;
}

.topp .text {
  margin-left: 0px;
}

.topp .icon span {
  background: #ffd700;
  color: #EFEFEF;
  font-size: 20px;
  border-radius: 50%;
}

.btn {
  margin-top: 20px;
  margin-right: 100px;
}

.card {}

.cards-wrapper {
  display: flex;
  justify-content: center;
}

.card img {
  max-width: 100%;
  max-height: 100%;
}

.carousel-control-prev,
.carousel-control-next {
  background-color: #e1e1e1;
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

ol,
ul {
  padding-left: 0rem;
}

a {
  color: #ff0202;
}

a:hover {
  color: #ffd700;
  text-decoration: none;
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Barlow', sans-serif;

} */

/* .container {
            margin: 0;
            padding: 10px 50px;
        } */

/* .text-center {
            text-align: center;
            Font-size: 40px;
            color: #5a0000;
            font-weight: bold;
            font-family: 'Barlow', sans-serif;
        } */
.abt-txt h2 {
  text-align: center;
  color: #5a0000;
  font-weight: 600;
  font-size: 40px;
  font-weight: bold;
}

.Heading5 {
  text-align: center;
  text-align: justify;
  font-size: 1.35rem;
  display: block;
  font-family: 'Barlow', sans-serif;

}

.table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
  margin-left: 10%;
  margin-right: auto;
  /* width: 100%;
            max-width: 100%; */
  padding: 10px;

}

.table-body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
}




.contact-section {
  padding: 60px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #9a1e17;
  position: relative;
  display: inline-block;
}

.contact-section h2::after {
  content: "";
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #f5b417, #ee0979);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5b417, #ff6a00);
  color: #fff;
  font-size: 30px;
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #9a1e17;
}

.contact-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 6px 0;
}

/* Responsive */
@media(max-width:768px) {
  .contact-section h2 {
    font-size: 1.8rem;
  }
}

:root {
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --primary: #2563eb;
  --primary-600: #1d4ed8;
  --ring: rgba(37, 99, 235, .25);
  --border: #e5e7eb;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

/* html,
body {
  height: 100%;
} */


.wrapper {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
}

.form-card {
  width: 100%;
  max-width: 880px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(17, 24, 39, .06);
  padding: 22px;
}

/* .header {
  padding: 6px 4px 18px;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 18px;
} */

.header h1 {
  margin: 0 0 6px;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: .2px;
}

.header p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

form {
  display: grid;
  gap: 16px;
}

/* Grid that becomes 2 columns on larger screens */
.grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 780px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid .span-2 {
    grid-column: span 2;
  }
}

label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 15px;
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--ring);
}

.row-inline {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.row-inline .radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}

.help {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding-top: 6px;
}

button {
  appearance: none;
  border: 0;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .02s ease, box-shadow .2s;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, .25);
}

.btn-primary:hover {
  background: var(--primary-600);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-light {
  background: #f3f4f6;
  color: #111827;
  border: 1px solid var(--border);
}

.req {
  color: #ef4444;
  margin-left: 2px;
}

/* Small footer note */
.footnote {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.card {
  perspective: 1200px;
  /* deeper 3D effect */
  border-radius: 20px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 240px;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
  border-radius: 20px;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  /* color: #333; */
  color: #ffffff;
}

/* Front content */
.card-front {
  font-size: 15px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
  box-shadow: inset -4px -4px 10px rgba(0, 0, 0, 0.1),
    inset 4px 4px 10px rgba(255, 255, 255, 0.6);
}

.card-back {
  transform: rotateY(180deg);
  background: #fff;
  color: #444;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  /* stronger shadow for depth */
}

/* Custom colors */
.purple {
  background: #4f0165;
}

.purple .icon-circle {
  background: #ffffff;
}

.yellow {
  background: #ffb90a;
}

.yellow .icon-circle {
  background: #ffffff;
}

.pink {
  background: #bf0e0e;
}

.pink .icon-circle {
  background: #ffffff;
}

.blue {
  background: #044d7b;
}

.blue .icon-circle {
  background: #ffffff;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.message-section {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  color: #07294d;
  margin: 0;
}

.message-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e4e6eb;
}

.message-card img {
  width: 260px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid #f5b418;
}

.message-content {
  flex: 1;
}

.message-content h2 {
  font-size: 26px;
  color: #07294d;
  margin-bottom: 6px;
}

.message-content h4 {
  font-size: 18px;
  font-weight: 500;
  color: #666;
  margin-bottom: 18px;
}

.message-content p {
  line-height: 1.8;
  font-size: 16px;
  color: #333;
  text-align: justify;
}

/* Alternate layout for Manager */
.reverse {
  flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 900px) {
  .message-card {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .reverse {
    flex-direction: column;
  }

  .message-card img {
    width: 200px;
    height: 260px;
    margin: 0 auto 20px;
  }

  .message-content h2 {
    font-size: 22px;
  }

  .message-content p {
    font-size: 15px;
  }
}

.services-section {
  width: 100%;
  max-width: 100%;
  margin: 60px auto;
  text-align: center;
}

.services-section h3 {
  color: #07294d;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.services-section h2 {
  font-size: 32px;
  color: #07294d;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #e5e8ef;
  padding: 20px 20px;
  transition: 0.3s;
}

.service-card:hover {
  border-color: #d1d8e5;
}

.icon-circle {
  width: 70px;
  height: 70px;
  margin: 12px auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #07294d;
}

/* Different background colors for icons */
.icon-red {
  background: #ffe4e4;
  color: #d94f4f;
}

.icon-blue {
  background: #e7f0ff;
  color: #4169e1;
}

.icon-yellow {
  background: #fff7d6;
  color: #f1b500;
}

.icon-green {
  background: #e3f9e3;
  color: #28a745;
}

.icon-pink {
  background: #ffe4f0;
  color: #d63384;
}

.icon-lightblue {
  background: #e0f7ff;
  color: #0096c7;
}

.service-card h4 {
  font-size: 18px;
  color: #07294d;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .services-section h2 {
    font-size: 26px;
  }
}

.services-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.services-section1 {
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 80px;
  text-align: center;
  background-color: #f5f5f5;
}

.services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #333;
}

.services-section p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.services-section1 p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.services-cards {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card1 {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin: 0;
  /* No space around image */
  border-bottom: 1px solid #eee;
  /* separates image from heading */
}

.service-card .content {
  padding: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #222;
  margin: 0;
}

@media (max-width: 992px) {
  .service-card {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .service-card {
    width: 100%;
  }
}

.action-bar {
  background: #9a1e17;
  /* Dark background */
  color: #fff;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.action-text {
  max-width: 70%;
}

.action-text h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
}

.action-text p {
  margin: 5px 0 0;
  font-size: 1rem;
  color: #ddd;
}

.action-bar button {
  background: #f5b418;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.action-bar button:hover {
  background: #e68900;
}

/* Responsive */
@media (max-width: 768px) {
  .action-bar {
    flex-direction: column;
    text-align: center;
  }

  .action-text {
    max-width: 100%;
    margin-bottom: 15px;
  }
}

.gallery-section {
  /* background: #fffae99c; */
  background: #f5b417;
  /* Background color */
  padding: 60px 20px;
  text-align: center;
}

.gallery-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #9A1E17;
}

.gallery-section p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #9A1E17;
  ;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  /* Keeps images square */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 3px solid white;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.connect-section {
  background: #f4af1b;
  /* Yellow background */
  padding: 60px 20px;
}

.connect-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  /* For responsiveness */
}

/* Left content box */
.connect-text {
  flex: 1;
  /* background: #fff; */
  color: #333;
  padding: 30px;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.connect-text h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #a32114;
}

.connect-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Right form box */
.connect-form {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.form-row input,
.connect-form textarea {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

.connect-form textarea {
  width: 100%;
  resize: none;
  height: 100px;
}

.connect-form button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s ease;
}

.connect-form button:hover {
  background: #1744a5;
}

/* Responsive */
@media (max-width: 992px) {
  .connect-container {
    flex-direction: column;
  }

  .connect-text {
    text-align: center;
  }
}