body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

body,
p,
div,
span,
a {
  font-family: "Inter", sans-serif;
}
a {
  text-decoration: none;
  color: #ffffff;
}

/* home page hero section start */
.schoolHeroSliderMainContainerUnique98765 {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}

@media (max-width: 768px) {
  .schoolHeroSliderMainContainerUnique98765 {
    height: 40vh;
  }
}

/* SLIDER */
.schoolHeroSliderTrackWrapperUltraUnique54321 {
  display: flex;
  height: 100%;
  transition: transform 1s ease-in-out;
}

/* SLIDE */
.schoolHeroSingleSlideItemMegaUnique11223 {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.schoolHeroSingleSlideItemMegaUnique11223 img {
  width: 100%;
  height: 560px;
  /* object-fit: contain; */
  /* filter: brightness(60%);  */
}

/* TEXT */
.schoolHeroContentBoxCenterAbsoluteUnique77889 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  width: 90%;
}

.schoolHeroContentBoxCenterAbsoluteUnique77889 h1 {
  font-size: 55px;
  margin-bottom: 10px;
}

.schoolHeroContentBoxCenterAbsoluteUnique77889 p {
  font-size: 22px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .schoolHeroContentBoxCenterAbsoluteUnique77889 h1 {
    font-size: 28px;
  }
  .schoolHeroContentBoxCenterAbsoluteUnique77889 p {
    font-size: 16px;
  }
  .schoolHeroSingleSlideItemMegaUnique11223 img {
    width: 100%;
    height: 250px;
    /* object-fit: contain; */
    /* filter: brightness(60%); */
  }
}

/* BUTTON */
.schoolHeroCallToActionButtonUnique55667 {
  padding: 12px 25px;
  background: #ffcc00;
  color: black;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

/* ARROWS */
.schoolHeroNavigationArrowControlUnique33445 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
}

.schoolHeroNavigationArrowControlLeftUnique33445 {
  left: 10px;
}
.schoolHeroNavigationArrowControlRightUnique33445 {
  right: 10px;
}

@media (max-width: 768px) {
  .schoolHeroNavigationArrowControlUnique33445 {
    padding: 8px;
    font-size: 14px;
  }
}

/* DOTS */
.schoolHeroPaginationDotsContainerUnique99887 {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.schoolHeroPaginationDotsContainerUnique99887 span {
  height: 8px;
  width: 8px;
  margin: 4px;
  background: white;
  display: inline-block;
  border-radius: 50%;
  opacity: 0.5;
}

.schoolHeroPaginationDotsContainerUnique99887 .activeDotIndicatorUnique99887 {
  opacity: 1;
}

/* home page hero section end */

/* home about section start */
.collegeAboutSectionWrapperUltraPro991 {
  padding: 30px 3%;
  background: linear-gradient(to right, #f9fafc, #eef2f7);
}

/* FLEX */
.collegeAboutFlexContainerUltraPro992 {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* IMAGE */
.collegeAboutImageContainerUltraPro993 {
  flex: 1;
  min-width: 320px;
  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

.collegeAboutImageContainerUltraPro993 img {
  width: 100%;
  border-radius: 20px;
}

/* CONTENT */
.collegeAboutContentContainerUltraPro994 {
  flex: 1;
  min-width: 320px;
}

/* TITLE */
.collegeAboutHeadingUltraPro995 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1f3a5f;
  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

/* TEXT */
.collegeAboutTextUltraPro996 {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

/* BUTTON */
.collegeAboutKnowMoreButtonUltraUnique556677 {
  position: relative;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #d32f2f;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-bottom: 30px;
}

.collegeAboutKnowMoreButtonUltraUnique556677:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

.collegeAboutKnowMoreButtonUltraUnique556677::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: 0.6s;
}

.collegeAboutKnowMoreButtonUltraUnique556677:hover::before {
  left: 100%;
}

/* STATS GRID */
.collegeAboutStatsGridUltraPro997 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.collegeAboutSingleStatBoxUltraPro998 {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  position: relative;

  border-left: 4px solid #f4e68c;
  border-bottom: 4px solid #f4e68c;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);

  opacity: 0;
  transform: translateY(60px);
  transition: all 0.4s ease;
}

.collegeAboutSingleStatBoxUltraPro998:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* ICON */
.collegeAboutIconBoxUltraPro111 {
  font-size: 30px;
  color: #f4e68c;
  margin-bottom: 10px;
}

.collegeAboutSingleStatBoxUltraPro998 h2 {
  font-size: 28px;
  color: #222;
}

.collegeAboutSingleStatBoxUltraPro998 p {
  font-size: 14px;
  color: #777;
}

/* ACTIVE */
.collegeAboutAnimateActiveUltraPro999 {
  opacity: 1 !important;
  transform: translateY(0px) !important;
}

/* MOBILE */
@media (max-width: 768px) {
  .collegeAboutHeadingUltraPro995 {
    font-size: 28px;
    text-align: center;
  }

  .collegeAboutStatsGridUltraPro997 {
    grid-template-columns: 1fr;
  }
}

/* 
  home about section end  */

/* under graduate section  start  */
.ug-section {
  background-color: #f4f7f6;
  padding: 40px 5%;
  text-align: center;
  overflow-x: hidden;
}

.ug-section h2 {
  font-size: 45px;
  color: #1f3a5f;
  margin: 0 0 50px 0;
  /* text-transform: uppercase; */
  letter-spacing: 1.5px;
  position: relative;
  display: inline-block;
}

.ug-section h2::after {
  content: "";
  width: 60%;
  height: 4px;
  background: linear-gradient(to right, #1a2a6c, #00d2ff);
  display: block;
  margin: 10px auto;
  border-radius: 10px;
}

/* --- Grid Layout --- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

/* --- Card Styling --- */
.course-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  /* Requirements: Left and Bottom Border */
  border-left: 6px solid #f4e68c;
  border-bottom: 6px solid #f4e68c;

  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Entrance Animations State */
.from-left {
  transform: translateX(-100px);
}
.from-right {
  transform: translateX(100px);
}

.card-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Hover Effect --- */
.course-card:hover {
  transform: translateY(-15px) scale(1.02);

  border-left-color: #d32f2f; /* Red */
  border-bottom-color: #1f3a5f; /* Navy Blue */

  box-shadow: 0 20px 40px rgba(31, 58, 95, 0.25);

  background: linear-gradient(135deg, #ffffff, #f4e68c);

  transition: all 0.4s ease;
}

/* --- Logo Styling --- */
.card-icon {
  width: 70px;
  height: 70px;
  background: #f0f4f8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 20px 0;
  font-size: 30px;
  color: #1f3a5f;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.course-card:hover .card-icon {
  background: #1a2a6c;
  color: #fff;
  transform: rotateY(360deg);
}

/* --- Text Content Styling --- */
.card-content h3 {
  font-size: 1.6rem;
  color: #1a2a6c;
  margin: 0 0 20px 0;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 30px 0;
}

.tag {
  background: #e9ecef;
  color: #1a2a6c;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.course-card:hover .tag {
  background: #fff;
  border-color: #00d2ff;
  color: #00d2ff;
  transform: scale(1.1);
}

/* --- Modern Button --- */
.view-btn {
  background: #1a2a6c;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-top: auto;
  outline: none;
}

.view-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #00d2ff;
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.view-btn:hover::before {
  left: 0;
}

.view-btn:hover {
  box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
  letter-spacing: 1px;
}

/* Responsive Mobile adjustment */
@media (max-width: 768px) {
  .from-left,
  .from-right {
    transform: translateY(50px);
  }
  .ug-section h2 {
    font-size: 1.8rem;
  }
}

/* under graduate section end  */

/* post graduate section start  */
.pg-section {
  background: #0f172a; /* Deep dark professional background */
  padding: 50px 5%;
  text-align: center;
  overflow: hidden;
  margin-top: 15px;
}

.pg-section .pg-heading {
  font-size: 3rem;
  color: #f8fafc;
  margin: 0 0 60px 0;
  font-weight: 800;
  letter-spacing: -1px;
}

.pg-section .pg-heading span {
  color: #8b5cf6; /* Purple Accent */
  display: block;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

/* --- Grid Layout --- */
.pg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Unique Card Design --- */
.pg-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  padding: 50px 30px;
  border-radius: 24px;
  position: relative;

  /* Requirements: Unique Border Placement (Right and Bottom) */
  border-right: 4px solid #8b5cf6;
  border-bottom: 4px solid #8b5cf6;

  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Left aligned text for PG look */
  text-align: left;

  /* Animation Initial State: Scale Up & Fade */
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.pg-card.reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --- Unique Hover Effect --- */
.pg-card:hover {
  background: rgba(139, 92, 246, 0.1);
  border-right-color: #d8b4fe;
  border-bottom-color: #d8b4fe;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
  transform: translateY(-10px);
}

/* --- Icon & Content --- */
.pg-icon-box {
  font-size: 40px;
  color: #8b5cf6;
  margin-bottom: 25px;
  transition: 0.3s;
}

.pg-card:hover .pg-icon-box {
  transform: scale(1.2);
  color: #f8fafc;
}

.pg-title {
  font-size: 2rem;
  color: #f8fafc;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.pg-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  margin: 0 0 30px 0;
  line-height: 1.5;
}

/* --- Unique Animated Button --- */
.pg-btn {
  background: transparent;
  color: #d6c861;
  border: 2px solid #d6c861;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pg-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #d6c861;
  z-index: -1;
  transition: all 0.4s;
}

.pg-btn:hover {
  color: #fff;
}

.pg-btn:hover::after {
  height: 100%;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .pg-section .pg-heading {
    font-size: 2.2rem;
  }
  .pg-card {
    align-items: center;
    text-align: center;
  }
}

/* post graduate section end  */

/* why choose us section start  */
.wcu-section {
  background-color: #ffffff;
  padding: 80px 5%;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

/* --- Updated Top Heading Styles --- */
.wcu-header {
  margin-bottom: 60px;
}

.wcu-header h2 {
  font-size: 2.5rem;
  color: #1f3a5f;
  font-weight: 600;
  margin: 0;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.wcu-header p {
  color: #64748b;
  margin-top: 15px;
  font-size: 1.2rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* --- Desktop: Force 3 Columns --- */
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Forced 3 columns on desktop */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Card Styling --- */
.info-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;

  /* Required unique borders */
  border-left: 5px solid #1f3a5f;
  border-bottom: 5px solid #1f3a5f;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Initial Animation State */
  opacity: 0;
  transform: translateY(30px);
}

.info-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.info-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
  border-left-color: #d32f2f;
  border-bottom-color: #d32f2f;
}

/* --- Icon & Content Styling --- */
.icon-box {
  font-size: 40px;
  color: #e9e13fe2;
  margin-bottom: 20px;
  transition: 0.3s;
}

.info-card:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
}

.info-card h3 {
  color: #d32f2f;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.6rem;
}

.info-card p {
  color: #040404;
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .wcu-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cols for tablet */
  }
}

@media (max-width: 640px) {
  .wcu-grid {
    grid-template-columns: 1fr; /* 1 col for mobile */
  }
  .wcu-header h2 {
    font-size: 2rem;
  }
}

/* why choose us section end  */

/* counter section start  */
.edu-stats-wrapper {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 80px 5%;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.stats-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Individual Achievement Card --- */
.achievement-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  padding: 40px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

/* Hover Effect: Glow and Lift */
.achievement-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: #38bdf8;
  box-shadow: 0 15px 30px rgba(56, 189, 248, 0.2);
}

.stat-icon {
  font-size: 35px;
  color: #38bdf8;
  margin-bottom: 15px;
  display: block;
}

/* --- Number Animation Styling --- */
.count-value {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  display: inline-block;
  margin: 0;
  line-height: 1;
}

.plus-sign {
  font-size: 2.5rem;
  color: #38bdf8;
  font-weight: 800;
}

.stat-label {
  display: block;
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .count-value {
    font-size: 2.2rem;
  }
  .plus-sign {
    font-size: 1.8rem;
  }
  .edu-stats-wrapper {
    padding: 50px 20px;
  }
}

/* counter section end  */

/* gallery section start  */
.gdc-events-section {
  padding: 50px 0;
  background-color: #f8fafc;
  font-family: "Segoe UI", Roboto, sans-serif;
}

.gdc-events-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

.gdc-events-title {
  text-align: center;
  color: #08295e;
  font-size: 2.5rem;
  margin-bottom: 50px;
  letter-spacing: 1px;
  font-weight: 800;
}

.gdc-slider-outer {
  position: relative;
  display: flex;
  align-items: center;
}

/* Slider Core */
.gdc-slider-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
}

.gdc-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
}

.gdc-slide-item {
  /* Default: 3 items in a row (Calculation: 100% / 3 - gaps) */
  min-width: calc((100% / 3) - 13.5px);
  box-sizing: border-box;
}

/* Image Styling & Hover */
.gdc-image-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gdc-image-wrapper img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  transition: transform 0.5s ease;
}

.gdc-image-wrapper:hover img {
  transform: scale(1.1);
}

.gdc-image-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  color: white;
}

.gdc-image-info h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

/* Navigation Buttons */
.gdc-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: white;
  border: none;
  border-radius: 50%;
  color: #e11d48;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gdc-slider-btn:hover {
  background: #e11d48;
  color: white;
  box-shadow: 0 6px 18px rgba(225, 29, 72, 0.4);
}

.gdc-prev-btn {
  left: -22px;
}
.gdc-next-btn {
  right: -22px;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .gdc-slide-item {
    min-width: calc(50% - 10px);
  } /* 2 per row */
  .gdc-prev-btn {
    left: 5px;
  }
  .gdc-next-btn {
    right: 5px;
  }
}

@media (max-width: 640px) {
  .gdc-slide-item {
    min-width: 100%;
  } /* 1 per row */
  .gdc-image-wrapper {
    height: 220px;
  }
}

/* gallery section end */

/* lastest section strat  */
.gdc-news-section {
  padding: 50px 20px;
  background: #f1f5f9;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

.gdc-news-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.gdc-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  animation: gdcFadeIn 0.7s ease-out both;
  animation-delay: var(--card-delay);
}

.gdc-card-header h2 {
  font-size: 24px;
  color: #0f172a;
  margin: 0 0 12px 0;
  font-weight: 800;
}

.gdc-header-line {
  width: 60px;
  height: 4px;
  background: #e11d48;
  border-radius: 2px;
  margin-bottom: 25px;
}

.gdc-list-item {
  padding: 18px 0;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.gdc-list-item:last-child {
  border-bottom: none;
}

.gdc-item-title {
  display: block;
  text-decoration: none;
  color: #334155;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.gdc-item-date {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

/* Hover State */
.gdc-list-item:hover {
  padding-left: 12px;
  background: #fffafa;
}

.gdc-list-item:hover .gdc-item-title {
  color: #d60331;
}

@keyframes gdcFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile View */
@media (max-width: 900px) {
  .gdc-news-grid {
    grid-template-columns: 1fr;
  }
  .gdc-card-header h2 {
    text-align: center;
  }
}

/* latest section end  */

/* pdf downlods section start  */
.gdc-download-section {
  padding: 60px 20px;
  background-color: #f9fafb;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.gdc-download-container {
  max-width: 1000px;
  margin: 0 auto;
}

.gdc-download-header {
  text-align: center;
  margin-bottom: 40px;
}

.gdc-tag {
  background: #fef2f2;
  color: #d11e1e;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid #fecaca;
}

.gdc-download-header h2 {
  font-size: 2.5rem;
  color: #08295e;
  margin: 15px 0 10px;
  font-weight: 800;
}

.gdc-underline {
  width: 50px;
  height: 4px;
  background: #d11e1e;
  margin: 0 auto;
  border-radius: 2px;
}

.gdc-download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.gdc-download-card {
  display: flex;
  align-items: center;
  background: white;
  padding: 25px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.4s ease;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.gdc-download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(127, 29, 29, 0.1);
  border-color: #d11e1e;
}

.gdc-card-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-right: 20px;
}

.prospectus .gdc-card-icon {
  background: #fee2e2;
  color: #dc2626;
}
.calendar .gdc-card-icon {
  background: #dcfce7;
  color: #16a34a;
}

.gdc-card-icon svg {
  width: 28px;
  height: 28px;
}

.gdc-card-info h3 {
  font-size: 18px;
  color: #1f2937;
  margin: 0 0 5px;
  font-weight: 700;
}

.gdc-card-info p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Badge: 'Download' changed to 'View' style */
.gdc-download-badge {
  position: absolute;
  right: -20px;
  top: 20px;
  background: #d11e1e;
  color: white;
  font-size: 11px;
  padding: 4px 25px;
  transform: rotate(45deg);
  font-weight: bold;
  transition: 0.3s;
}

@media (max-width: 640px) {
  .gdc-download-grid {
    grid-template-columns: 1fr;
  }
}

/* pdf downloads section end  */

/* arrow */

.scroll-top {
  z-index: 10000;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  /* background: #e10d25;
  color: white; */
  /* border: none;
  border-radius: 50%; */
  font-size: 24px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
/* 
.scroll-top:hover {
  background: #0056b3;
} */

.scroll-top.show {
  display: flex;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* icons */
/* Floating Icons Styling */
.floating-icons {
  position: fixed;
  right: 15px;
  top: 80%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

/* Common icon style */
.floating-icons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.floating-icons a:hover {
  transform: scale(1.1);
}

.phone-icon {
  background-color: #4285f4;
}

.whatsapp-icon {
  background-color: #25d366;
}

/* Responsive visibility */
@media (min-width: 768px) {
  .phone-icon {
    display: none;
  }
}

a .fab.fa-whatsapp {
  color: #ffffff;
  font-size: 24px;
}

/* popup form  */
.gdc-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  animation: gdcFadeIn 0.4s ease;
}

.gdc-popup-card {
  background: white;
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: scale(0.7);
  animation: gdcPopUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.gdc-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f1f5f9;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}

.gdc-popup-close:hover {
  background: #1f3a5f;
  color: white;
  transform: rotate(90deg);
}

.gdc-popup-header {
  background: #1f3a5f;
  padding: 30px 20px;
  text-align: center;
  color: white;
}

.gdc-popup-header h2 {
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
}

.gdc-popup-header p {
  margin: 10px 0 0;
  font-size: 14px;
  opacity: 0.9;
}

.gdc-popup-form {
  padding: 30px 25px;
}

.gdc-input-group {
  position: relative;
  margin-bottom: 15px;
}

.gdc-input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.6;
}

.gdc-input-group input,
.gdc-input-group select,
.gdc-input-group textarea {
  width: 100%;
  padding: 12px 15px 12px 40px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.gdc-input-group input:focus,
.gdc-input-group select:focus,
.gdc-input-group textarea:focus {
  border-color: #1f3a5f;
  box-shadow: 0 0 0 3px rgba(127, 29, 29, 0.1);
}

.gdc-submit-btn {
  width: 100%;
  padding: 15px;
  background: #1f3a5f;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.gdc-submit-btn:hover {
  background: #1f3a5f;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(127, 29, 29, 0.3);
}

/* Animations */
@keyframes gdcFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes gdcPopUp {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 480px) {
  .gdc-popup-card {
    max-width: 95%;
  }
  .gdc-popup-header h2 {
    font-size: 20px;
  }
}

/* popup form end  */

/* marquee start  */
.gdc-ticker-wrapper {
  width: 100%;
  background: #0e2c96;
  padding: 12px 0;
  overflow: hidden;
  border-bottom: 2px solid #ffd500;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.gdc-ticker-container {
  display: flex;
  align-items: center;
  width: 100%;
}

.gdc-ticker-title {
  background: #ffd500;
  color: #fff;
  padding: 5px 15px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0 15px;
  z-index: 10;
  white-space: nowrap;
  border-radius: 4px;
}

.gdc-ticker-content {
  overflow: hidden;
  width: 100%;
  display: flex;
}

.gdc-scrolling-inner {
  display: flex;
  white-space: nowrap;
  /* Animation speed control */
  animation: seamlessLoop 20s linear infinite;
}

.gdc-scrolling-inner a {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding-right: 80px; /* Space between items */
}

.gdc-scrolling-inner a:hover {
  color: #ffd500;
}

/* Seamless Loop Animation */
@keyframes seamlessLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    /* We move only half of the duplicated content's width */
    transform: translateX(-50%);
  }
}

/* Stop on hover */
.gdc-ticker-content:hover .gdc-scrolling-inner {
  animation-play-state: paused;
}

/* marquee end  */
