@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Kaushan+Script&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');
   @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
   @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
   @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  --primary-color: #f57f4b;
  --secondary-color: #015b7e;
  --secondary-color-light: #82aec0;
  --default-color: #36454f;
  --accent-color: #f8f9fa;
  --text-color: #333333;
  --light-gray: #e1e5e9;
}

:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  /* font-family: "Saira", sans-serif; */
    font-family: "Open Sans", sans-serif;
   /* font-family: "Poppins", sans-serif; */

  /* font-family: "Raleway", sans-serif; */
}

@font-face {
  font-display: swap;
}

a {
  color: var(--default-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: var(--default-color);
  text-decoration: none;
}

p{
  line-height: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--default-color);
}

.container {
  position: relative;
}

main.main {
  position: relative;
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
main.main::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-image: url("../gallery/page-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
.header {
  position: relative;
  width: 100%;
  background: #fff;
  transition: all 0.4s ease;
  z-index: 997;
}

/* Sticky state */
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 5px 20px rgb(122 169 187);
  animation: stickySlide 0.6s ease forwards;
}

/* Smooth slide animation */
@keyframes stickySlide {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header .topbar {
  background-color: var(--primary-color);
  color: var(--contrast-color);
  height: 40px;
  padding: 0;
  transition: all 0.5s;
}

.header .header-top {
  min-height: 90px; /* match your logo height */
  position: relative; /* ← CHANGE THIS */
  width: 100%;
  background-color: #fff;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 90px;

  padding: 10px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--primary-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 5px 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--primary-color), transparent 15%);
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }
  .navmenu a.active {
    border-bottom: 1px solid;
    background: #82aec0;
    color: #fff;
  }
  .navmenu a.active:hover {
    background-color: #fff;
    color: var(--primary-color);
  }
  .navmenu a,
  .navmenu a:focus {
    padding: 6px 15px;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a:hover {
    background-color: #fff;
    color: var(--primary-color) !important;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu .custom-width ul {
    width: 128px;
  }

  .navmenu .dropdown ul {
    border-top: 2px solid var(--primary-color);
    margin: 0;

    background: var(--secondary-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #fff;
    font-weight: 300;
    border-bottom: 1px solid #ffffff36;
  }

  .navmenu .dropdown ul li:last-child a {
    border-bottom: none;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 1199px) {
  /* Mobile toggle button */
  .mobile-nav-toggle {
    display: block;
    font-size: 30px;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .mobile-nav-toggle:hover {
    transform: scale(1.1);
    color: var(--secondary-color);
  }

  /* Hide the normal nav menu by default */
  .navmenu ul {
    display: none;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.75); /* dark overlay */
    backdrop-filter: blur(8px);
    border-radius: 12px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    overflow-y: auto;
    z-index: 9999;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateX(-100%);
    opacity: 0;
  }

  /* Show menu when active */
  .mobile-nav-active ul {
    display: flex;
    transform: translateX(0);
    opacity: 1;
    height: auto;
    margin: 25px !important;
    padding: 10px !important;
  }

  /* Nav links */
  .navmenu a {
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .navmenu a:hover,
  .navmenu a.active {
    background-color: var(--primary-color);
    color: #fff;
  }

  /* Dropdown support */
  .navmenu .dropdown ul {
    display: none;
    flex-direction: column;
    margin: 0;
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 2px solid var(--primary-color);
    border-radius: 6px;
  }

  .navmenu .dropdown-active > ul {
    display: flex;
  }

  /* Close button animation */
  .mobile-nav-active .mobile-nav-toggle {
  position: fixed;
    top: 14px;
    right: 16px;
    font-size: 32px;
    color: #fff;
    z-index: 10001;
    transform: rotate(90deg);
    background: var(--secondary-color);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    line-height: 52px;
    margin: auto;
    text-align: center;
  }

  /* Optional: blur background behind nav */
  .mobile-nav-active ~ .main-content,
  .mobile-nav-active ~ footer {
    filter: blur(3px);
    pointer-events: none;
  }
}



.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  color: #fff;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--secondary-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.banner-img {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

.hero-carousel .hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
}
.img1 {
  background-image: url("../gallery/banner.jpg");
}

.img2 {
  background-image: url("../gallery/banner2.jpg");
}
.header-blk {
  position: relative;
}

.header-blk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navmenu ul {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navmenu ul li a {
  text-decoration: none;
}

.about-sec {
  position: relative;
  min-height: 85vh;
  padding-top: 100px;
}

.title-blk {
  position: relative;
  text-align: center;
}

.title-blk h2 {
  font-size: 65px;
  font-family: "Playfair", serif;
  color: var(--secondary-color);
  font-weight: 700;
  line-height: 56px;
}

.title-blk span {
  color: var(--primary-color);
}

.title-blk h3 {
  display: inline-block;
  background-color: var(--secondary-color-light);
  color: #fff;
  border-radius: 25px;
  font-size: 23px;
  padding: 0px 10px;
  position: relative;
  margin-top: 10px;
}

.title-blk h3::before {
  content: "";
  position: absolute;
  height: 70px;
  width: 2px;
  background-color: var(--primary-color);

  top: -85px;
  left: 50%;
  transform: translateX(-50%);
}

.ach-sec {
  position: relative;
  padding-top: 70px;
  min-height: 100vh;
}

.custom-btn {
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;

  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow:
    inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
    7px 7px 20px 0px rgba(0, 0, 0, 0.1),
    4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  outline: none;
}

/* 8 */
.btn-8 {
  background-color: #f0ecfc;
  background-image: linear-gradient(315deg, #9dc0ce 0%, #f57f4b 74%);
  line-height: 42px;
  padding: 0;
  border: none;
}
.btn-8 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}
.btn-8:before,
.btn-8:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  transition: all 0.3s ease;
}
.btn-8:before {
  height: 0%;
  width: 2px;
}
.btn-8:after {
  width: 0%;
  height: 2px;
}
.btn-8:hover:before {
  height: 100%;
}
.btn-8:hover:after {
  width: 100%;
}
.btn-8:hover {
  background: transparent;
}
.btn-8 span:hover {
  color: var(--secondary-color);
}
.btn-8 span:before,
.btn-8 span:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: var(--primary-color);
  transition: all 0.3s ease;
}
.btn-8 span:before {
  width: 2px;
  height: 0%;
}
.btn-8 span:after {
  height: 2px;
  width: 0%;
}
.btn-8 span:hover:before {
  height: 100%;
}
.btn-8 span:hover:after {
  width: 100%;
}

/* OUTER WRAPPER */
.scroller {
  width: 100%;
  overflow: hidden;
}

/* TRACK */
.track {
  display: flex;
  gap: 30px; /* spacing between images */
  width: max-content;
  animation: scroll 30s linear infinite;
}

/* Pause on hover */
.scroller:hover .track {
  animation-play-state: paused;
}

/* IMAGES */
.track img {
  height: 200px;
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
}

/* EXACT HALF SHIFT */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.abt-num-blk {
  position: relative;
  padding-top: 25px;
}

.abt-num {
  position: relative;
  width: 220px; /* adjust if needed */
  height: 220px; /* adjust if needed */
  background: url("../gallery/num-bg.png") no-repeat center center;
  background-size: contain; /* keeps full image visible */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.abt-num-content h2 {
  font-size: 65px;
  font-family: "Playfair", serif;
  color: var(--secondary-color);
  font-weight: 700;
  line-height: 56px;
}

.abt-num-content p {
  margin: 0;
  font-size: 16px;
  color: var(--secondary-color);
}

.track img {
  border: 5px solid #88b1c27d;
  border-radius: 41px 0 40px 0px;
}

.ach-text-title {
  display: flex;
  align-items: center; /* vertically align arrow with text */
  gap: 12px; /* space between text and arrow */
  padding-top: 88px;
}

.ach-text-title h2 {
  margin: 0;
  font-family: "Kaushan Script", cursive;
  color: var(--secondary-color);
  font-size: 53px;
  position: relative;
}

.ach-text-title h2::before {
  content: "";
  position: absolute;
  height: 100px;
  width: 100px;
  background: linear-gradient(129deg, #f57f4b8f, #015b7e00, #015b7e00);
  border-radius: 50%;
  z-index: -1;
  left: -30px;
  top: -26px;
}

.arrow-img {
  width: 95px; /* adjust size if needed */
  animation: arrowUp 2s ease-in-out infinite;
}

/* Smooth up-down animation */
@keyframes arrowUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

.ach-pnts li h3 {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 600;
}

/* Right large image */
.ach-side-image {
  position: absolute;
  right: -120px; /* pushes image outside container */
  top: 70%;
  transform: translateY(-50%);

  z-index: 1;
  overflow: hidden;
}

/* Image styling */
.ach-side-image img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.4;
}

/* Fade effect from left to right */
.ach-side-image::before {
  content: "";
  position: absolute;
  inset: 0;
}

.ach-pnts ul {
  list-style: none; /* remove default bullet */
  padding: 0;
  margin: 0;
}

.ach-pnts li {
  position: relative;
  padding-left: 35px; /* space for image */
  margin-bottom: 18px;
}

.ach-pnts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px; /* image width */
  height: 20px; /* image height */
  background-image: url("../gallery/bt-pnt.png"); /* your custom image */
  background-size: contain;
  background-repeat: no-repeat;
}

.ach-pnts {
  position: relative;
  padding-top: 15px;
}

.abt-cnt {
  position: relative;
  padding-top: 100px;
}

.fac-sec {
  position: relative;
  
  padding-top: 85px;
  text-align: center;
}

.section-title {
  position: relative;
  display: inline-block;
  font-size: 38px;
  font-weight: 600;
  padding: 15px 60px;
  color: #fff;
  font-family: "Playfair", serif;
  z-index: 1;
  text-align: center;
}

.section-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  z-index: -1;
}

.section-title::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  clip-path: polygon(0% 0%, 95% 0%, 100% 100%, 5% 100%);
  z-index: -1;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.facility-card {
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.facility-card i {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.facility-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.facility-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.adm-sec {
  position: relative;
  padding-top: 108px;
}

.adm-title {
  text-align: center;
}

.adm-title h3 {
  font-size: 20px;
}
.adm-title h2 {
  font-family: "Playfair", serif;
  font-size: 57px;
  line-height: 45px;
  color: var(--secondary-color);
}

.adm-title h3::before {
  content: "";
  position: absolute;
  height: 70px;
  width: 2px;
  background-color: var(--primary-color);
  top: -85px;
  left: 50%;
  transform: translateX(-50%);
}

.adm-left-img {
  position: absolute;
  top: 25%;
  left: 0;
}

.admission-right {
  flex: 1;
}

.admission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.admission-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.admission-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.fdr-sec {
  position: relative;
  min-height: 50vh;
  margin-bottom: 100px;
  padding: 55px 0;
  overflow: hidden;
}

/* Background Color Layer */
.fdr-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--secondary-color);
  z-index: 0;
}

/* Background Image Layer */
.fdr-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../gallery/fdr-bg.jpg") center/cover no-repeat;
  opacity: 0.15; /* control image visibility here */
  z-index: 1;
}

/* Keep Content Above */
.fdr-sec .container {
  position: relative;
  z-index: 2;
}
.fdr-txt p {
  color: #fff;
}

.fdr-name,
.fdr-name h2 {
  color: #fff;
  margin-bottom: 0;
}

.fdr-bg-title {
  position: absolute;
  top: 0;
  left: 20%;
  transform: translateX(-50%);
  font-size: 90px;
  font-weight: 200;
  color: rgb(255 255 255 / 11%);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  font-family: "Kaushan Script", cursive;
}

.gal-sec {
  position: relative;
  min-height: 70vh;
  padding-top: 60px;
}

/* COLLAGE GRID */
.collage {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 160px);
  gap: 12px;
  padding: 20px;
}

/* GRID MAPPING */
.img1 {
  grid-area: 1 / 1 / 2 / 2;
}
.img2 {
  grid-area: 1 / 2 / 2 / 3;
}
.img3 {
  grid-area: 1 / 3 / 3 / 4;
}
.img4 {
  grid-area: 1 / 4 / 3 / 6;
}
.img12 {
  grid-area: 1 / 6 / 3 / 7;
}
.img5 {
  grid-area: 2 / 1 / 4 / 3;
}
.img6 {
  grid-area: 3 / 3 / 5 / 5;
}
.img8 {
  grid-area: 3 / 5 / 4 / 7;
}
.img9 {
  grid-area: 4 / 1 / 5 / 2;
}
.img10 {
  grid-area: 4 / 2 / 5 / 3;
}
.img11 {
  grid-area: 4 / 5 / 5 / 7;
}

/* IMAGE STYLE */

.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.collage a:hover img {
  transform: scale(1.08);
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .collage {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* 2 columns */
    grid-template-rows: auto !important;
    gap: 12px;
  }

  /* Override previous grid-area for all images */
  .collage a,
  .collage a[class^="img"] {
    grid-area: auto !important;
    height: 180px !important;
  }
}

.ftr-sec {
  position: relative;
  min-height: 30vh;
  margin-top: 85px;
  margin-bottom: 15px;
}

.ftr-contact p,
.ftr-cnt p {
  margin-bottom: 2px;
}

.ftr-limg img {
  width: 220px;
  margin-bottom: 15px;
}

.ftr-cnt a {
  color: var(--primary-color);
}

.ftr-main-blk {
  position: relative;
  border-top: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  padding: 75px 0;
}

.ftr-map {
  height: 100%;
}

.ftr-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* x-offset, y-offset, blur, color */
}

.ftr-credit {
  padding-top: 10px;
  text-align: center;
}

.ftr-credit a {
  color: var(--primary-color);
  font-weight: 600;
}

/* Breadcrumb Section */
.breadcrumb-section {
  background: url("../gallery/bd-bg.jpg") center center/cover no-repeat;
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
}

.breadcrumb-section::after {
  content: "";
  position: absolute;
  height: 5px;
  width: 50%;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--primary-color);
}

/* Dark Overlay */
.breadcrumb-overlay {
  background: rgb(14 99 132 / 43%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Container Alignment */
.breadcrumb-section .container {
  text-align: center;
  color: #ffffff;
}

/* Page Title */
.breadcrumb-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #fff;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  font-size: 16px;
}

.breadcrumb-nav a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-nav a:hover {
  color: var(--secondary-color);
}

.breadcrumb-nav .separator {
  margin: 0 8px;
  opacity: 0.8;
}

.breadcrumb-nav .active {
  opacity: 0.85;
}

.ip-cnt {
  position: relative;
 
  margin-top: 85px;
}

.counter {
  color: var(--secondary-color);
  background: #668b997a;
  text-align: center;
  padding: 40px 10px 36px;
  margin: 0 auto;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.counter:before,
.counter:after {
  content: "";
  background: #fff;
  width: 100%;
  height: calc(100% - 20px);
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: -1;
}
.counter:after {
  background: var(--secondary-color);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: none;
  transform: translateX(0);
  bottom: -12px;
  left: auto;
  right: -12px;
  z-index: -2;
}
.counter h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.counter .counter-value {
  font-size: 25px;
  font-weight: 600;
  line-height: 25px;
  display: inline-block;
  border-bottom: 1px solid;
  padding-bottom: 3px;
}
.counter .counter-icon {
  background: #fff;
  font-size: 30px;
  line-height: 58px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: -10px;
  right: -10px;
}
.counter .counter-icon i {
  line-height: inherit;
}

@media screen and (max-width: 990px) {
  .counter {
    margin-bottom: 40px;
  }
}

.contact-sec {
  padding: 80px 0;
  background: #f8f8f8;
}

.contact-form {
  max-width: 650px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #333;
}

.contact-form button {
  background: #222;
  color: #fff;
  padding: 7px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #000;
}

.cp-form {
  position: relative;
  margin-top: 90px;
  text-align: center;
}

.contact-form .form-group:last-child {
  text-align: center;
}

/* ==========================================
   COLLAGE HOVER EFFECT – OLD SKEW STYLE
========================================== */

.collage a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

/* Skew Gradient Overlay */
.collage a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(to right, #015b7eba, #015b7eba);

  opacity: 0.7;

  transform: skew(-45deg) scaleX(0);
  transform-origin: left;

  transition: all 0.3s ease-in-out;

  z-index: 1;
}

/* Animate overlay */
.collage a:hover::before {
  transform: skew(-45deg) scaleX(1);
  transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Image styling */
.collage a img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: all 0.3s ease;
}

/* Zoom + blur + grayscale */
.collage a:hover img {
  transform: scale(1.2);
  filter: grayscale(70%) blur(2px);
}

/* Center Icon */
.collage .hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) scale(0);

  color: #fff;
  font-size: 15px;

  height: 35px;
  width: 35px;

  display: flex; /* Better centering */
  align-items: center; /* Vertical center */
  justify-content: center; /* Horizontal center */

  border-radius: 50%;
  border: 2px solid #fff;

  z-index: 2;
  transition: all 0.4s ease;
}

/* Icon appears */
.collage a:hover .hover-icon {
  transform: translate(-50%, -50%) scale(1);
}

.news .collage {
  display: flex; /* change from grid to row */
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px;
}

.news-collage .collage {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* changed from 6 to 4 */
  grid-template-rows: repeat(8, 160px);
  gap: 12px;
  padding: 20px;
}

.about-us-blk {
  position: relative;
}

.rights-list {
  list-style: none;
  padding-left: 0;
  line-height: 1.6;
}

.rights-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px; /* space for icon */
  font-size: 16px;
  color: #333;
}

/* Add Font Awesome arrow before each li */
.rights-list li::before {
  content: "\f04e"; /* Font Awesome unicode for angle-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* necessary for solid icons */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color); /* arrow color */
}


.about-us-blk h2{
  display: inline-block;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 0 10px;
  border-left: 7px solid var(--primary-color);
}


.new.news-collage .collage {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 160px);
    gap: 12px;
    padding: 20px;
}

.dnt-blk img{
  width: 250px;
  box-shadow: rgb(67, 103, 141) 0px 20px 30px -10px;
  margin-bottom: 45px;
}


.dnt-blk h2 {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 0 10px;
    margin-bottom: 30px;
   
}
.dnt-blk h3{
  display: inline-block;
  border-bottom: 2px solid var(--primary-color);
}

.dnt-blk h4{
  display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 0 10px;
}
.dnt-blk  p{
  margin-bottom: 10px;
}

.acc-det{
  background-color: var(--secondary-color);
  display: inline-block;
  margin-bottom: 35px;
  padding: 10px;
}

.acc-det h2{
  margin-bottom: 10px;
}

.acc-det p{
  color: #fff;
  margin: 0px;
  font-size: 20px;
}


.collage2 a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
      box-shadow: rgb(67, 103, 141) 0px 20px 30px -10px;
      margin-bottom: 25px;
}

/* Skew Gradient Overlay */
.collage2 a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(to right, #015b7eba, #015b7eba);

  opacity: 0.7;

  transform: skew(-45deg) scaleX(0);
  transform-origin: left;

  transition: all 0.3s ease-in-out;

  z-index: 1;
}

/* Animate overlay */
.collage2 a:hover::before {
  transform: skew(-45deg) scaleX(1);
  transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Image styling */
.collage2 a img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: all 0.3s ease;
  margin-bottom: 0;
}

/* Zoom + blur + grayscale */
.collage2 a:hover img {
  transform: scale(1.2);
  filter: grayscale(70%) blur(2px);
}

/* Center Icon */
.collage2 .hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) scale(0);

  color: #fff;
  font-size: 15px;

  height: 35px;
  width: 35px;

  display: flex; /* Better centering */
  align-items: center; /* Vertical center */
  justify-content: center; /* Horizontal center */

  border-radius: 50%;
  border: 2px solid #fff;

  z-index: 2;
  transition: all 0.4s ease;
}

/* Icon appears */
.collage2 a:hover .hover-icon {
  transform: translate(-50%, -50%) scale(1);
}


.forms-row{
  position: relative;
  margin-top: 25px;
  border-top: 2px dashed var(--primary-color);
 padding-top: 25px;
}

.form-head h2{
  display: inline-block;
    border:2px solid var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
    font-size: 25px;
    text-transform: uppercase;
}