/* Custom styles for School Print Resources */
:root{
  --spr-orange: #f38b2a;
  --spr-blue-start: #4a5fde; /* top */
  --spr-blue-end: #2b2f97;   /* bottom */
  --spr-brand: #2d43a6;
}

body{ background:#ffffff; font-family: "IBM Plex Sans", sans-serif;
}

/* Prevent horizontal overflow on small screens */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Top bar - Orange and White sections with diagonal cut */
.topbar-container{
  display: flex;
  position: relative;
}

/* Orange section (left side with phone numbers) */
.topbar-orange{
  background: var(--spr-orange);
  flex: 0 0 auto;
  position: relative;
  padding-right: 3rem !important;
}
.topbar-orange::after{
  content: '';
  position: absolute;
  top: 0;
  right: -30px;
  width: 31px;
  height: 100%;
  background: var(--spr-orange);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
}

/* White section (right side with emails) */
.topbar-white{
  background: #f5f5f5;
  flex: 1;
  padding-left: 3rem !important;
  color: #333;
}

/* Common styles */
.topbar-orange .separator,
.topbar-white .separator{ 
  opacity: 0.6; 
  font-weight: 300;
}
.topbar-orange i,
.topbar-white i{ 
  line-height: 1;
  font-size: 0.95em;
}
.topbar-orange strong{
  font-weight: 600;
}
.topbar-white i{
  color: #666;
}

/* Responsive */
@media (max-width: 991px){
  .topbar-container{
    flex-direction: column;
  }
  .topbar-orange::after{
    display: none;
  }
  .topbar-orange,
  .topbar-white{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* Brand area */
.spr-header .brand{ background:#fff; }
.spr-header .spr-logo{ 
  width: 400px; 
  height: auto; 
  max-width: 100%;
}
.spr-header .brand-text{
  font-weight:700;
  letter-spacing:2px;
  color: var(--spr-brand);
}

/* Responsive logo */
@media (max-width: 768px){
  .spr-header .spr-logo{ 
    width: 280px; 
  }
}

@media (max-width: 576px){
  .spr-header .spr-logo{ 
    width: 220px; 
  }
  .spr-header .brand{
    padding: 20px 0 !important;
  }
}

/* Blue gradient navbar with pill menu */
.spr-navbar{ background: linear-gradient(180deg, var(--spr-blue-start) 0%, var(--spr-blue-end) 100%); }
.spr-pillnav .nav-link{
  color:#ffffff;
  border-radius: 999px;
  padding:.6rem 1.1rem;
}
.spr-pillnav .nav-link:hover{  background:#ffffff;
  color:#3d47c3; }
.spr-pillnav .nav-link.active{
  background:#ffffff;
  color:#3d47c3;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}

/* Make sure long menu item wraps nicely on small screens */
@media (max-width: 576px){
  .spr-pillnav{ display:block; }
}

/* ============================================
   Hero Banner Section
   ============================================ */
.hero-banner{
  width: 100%;
  overflow: hidden;
}

.hero-banner-img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ============================================
   Quick Links Pill Buttons
   (match the visual style in the screenshot)
   ============================================ */
.quick-links-section{
  padding: 40px 0 40px 0;
}

/* Base pill */
.quick-link-btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 260px;
  height: 70px;
  padding: 0 18px 0 0;
  border-radius: 35px;
  background: linear-gradient(135deg, #eaf0f8 0%, #dbe3ee 100%);
  box-shadow: 0 2px 8px rgba(60, 60, 120, 0.09);
  text-decoration: none;
  position: relative;
  border: 6px solid #e3e8f0;
  transition: box-shadow 0.2s, transform 0.2s;
}

.quick-link-btn .btn-text{
  flex: 1;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  
  letter-spacing: 0.01em;
}

/* Circular arrow on the right */
.quick-link-btn .btn-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 60% 40%, #4e5edb 80%, #3d3dbb 100%);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
  margin-left: 10px;
  box-shadow: 0 2px 8px rgba(60, 60, 120, 0.09);
}

.btn-orange {
  background: linear-gradient(135deg, #ffb97a 0%, #ff914d 100%);
  border-color: #ffd7b3;
}

.btn-orange .btn-text {
  color: #fff;
}

.btn-orange .btn-icon {
  background: #fff;
  color: #ff914d;
}

.quick-link-btn:hover {
  box-shadow: 0 6px 24px rgba(60, 60, 120, 0.18);
  transform: translateY(-2px) scale(1.03);
}

.quick-link-btn:active {
  transform: scale(0.98);
}

/* Blue (default) look from screenshot */
.quick-link-btn.btn-blue{
  background: linear-gradient(180deg, #f5f8fc 0%, #e6ecf7 100%);
  color: #3d3dbb;
}

/* Orange active look from screenshot */
.quick-link-btn.btn-blue:hover{
  background: linear-gradient(180deg, #ffb97a 0%, #ff914d 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255,140,26,.25), inset 0 1px 0 rgba(255,255,255,.75), inset 0 -10px 18px rgba(160,82,13,.15);

     border-color: #ffd7b3;
  
}

.quick-link-btn.btn-blue:hover .btn-icon{
  color: #ff914d;
  background: #fff;
  border: 2px solid #ffd29f;
  box-shadow: 0 4px 10px rgba(255,140,26,.25), inset 0 1px 0 rgba(255,255,255,.9);
}

.quick-link-btn.btn-orange:hover{ transform: translateY(-2px); }
.quick-link-btn.btn-orange:hover .btn-icon{ transform: translateX(3px); }

/* Responsive tweaks */
@media (max-width: 991px){
  .quick-links-section{ padding: 2.2rem 0; }
  .quick-links-section .row{ row-gap: 1rem; }
}

@media (max-width: 576px){
  .quick-link-btn{ width: 100%; min-width: auto; }
  .quick-links-section .col-auto{ width: 100%; max-width: 340px; margin: 0 auto; }
}

/* ============================================
   Flyers section: two columns over sky background
   ============================================ */
.spr-flyer-section{
  position: relative;
  padding: 56px 0 72px;
  background-color: #d3ecfb; /* fallback */
  background-image: url('../img/sky-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.spr-flyer-section .flyer-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.spr-flyer-section .flyer{
  margin: 0;
  width: min(100%, 520px);
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.18));
}

.spr-flyer-section .flyer img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 992px){
  .spr-flyer-section{ padding: 40px 0 56px; }
  .spr-flyer-section .flyer-grid{ grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 576px){
  .spr-flyer-section .flyer{ width: min(100%, 420px); }
}

/* ============================================
   About Us section - Matching exact image design
   ============================================ */
.spr-about{ 
  background: #f8f9fa; 
  padding: 80px 0; 
}

/* Section title */
.spr-about h2{
  color: #6c5ce7 !important;
  font-weight: 700 !important;
  font-size: 2.5rem;
  margin-bottom: 4rem !important;
}

/* About row structure */
.about-row{
 position: relative;
    margin-bottom: 5rem;
    display: flex
;
    align-items: center;
    min-height: 350px;
    width: 90%;
    margin: 0 auto;
}
.about-row:last-child{ margin-bottom: 0; }

/* First row: Image left, card overlaps right */
.about-row--one{
  justify-content: flex-start;
}
.about-row--one .about-photo{
  width: 60%;
  max-width: 500px;
  position: relative;
  z-index: 1;
}
.about-row--one .about-card{
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: 59%;
    /* max-width: 400px; */
    z-index: 2;
}

/* Second row: Card left, image right */
.about-row--two{
  justify-content: flex-end;
}
.about-row--two .about-photo{
  width: 60%;
  max-width: 500px;
  position: relative;
  z-index: 1;
}
.about-row--two .about-card{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  /* max-width: 400px; */
  z-index: 2;
}

/* Photo styling */
.about-photo img{
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

/* Card styling with shadow */
.about-card{
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: none;
}

/* Typography */
.about-heading{ 
  color: #ff6b35; 
  font-size: 1.25rem; 
  font-weight: 700; 
  margin-bottom: 1rem;
}

.about-subheading{ 
  font-weight: 700; 
  font-size: 1rem; 
  color: #333; 
  margin: 1rem 0 0.5rem 0;
}

.about-card p{ 
  color: #666; 
  line-height: 1.6; 
  margin-bottom: 1rem; 
  font-size: 0.9rem; 
}

/* Read more link */
.about-link{ 
  color: #ff6b35; 
  font-weight: 600; 
  text-decoration: none; 
  display: inline-flex; 
  align-items: center; 
  gap: 0.5rem; 
  font-size: 0.9rem;
}
.about-link:hover{ 
  color: #e55a2b;
  text-decoration: none; 
}
.about-link .bi{ 
  font-size: 1rem; 
}

/* Responsive design */
@media (max-width: 1200px){
  .about-row--one .about-card,
  .about-row--two .about-card{
    width: 55%;
    max-width: 380px;
  }
  .about-card{
    padding: 25px;
  }
}

@media (max-width: 992px){
  .spr-about{ padding: 60px 0; }
  
  .about-row{
    flex-direction: column;
    margin-bottom: 3rem;
    min-height: auto;
  }
  
  .about-row--one .about-photo,
  .about-row--two .about-photo{
    width: 100%;
    max-width: none;
    margin-bottom: 2rem;
  }
  
  .about-row--one .about-card,
  .about-row--two .about-card{
    position: static;
    transform: none;
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 576px){
  .about-card{ 
    padding: 20px; 
  }
  .spr-about h2{
    font-size: 2rem !important;
  }
}

/* ============================================
   Reviews Section - Owl Carousel
   ============================================ */
.spr-reviews-section{
  background: #fff;
  padding: 40px 0;
  overflow: hidden;
}

.spr-reviews-section .container-xl{
  position: relative;
}

/* Ensure nav positions relative to the carousel container */
.reviews-carousel{
  position: relative;
}

/* Owl Carousel Stage */
.reviews-carousel .owl-stage-outer{
  overflow: visible;
  padding: 30px 0;
}

.reviews-carousel .owl-stage{
  display: flex;
  align-items: center;
}

.reviews-carousel .owl-item{
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-title{
  color: #2d3561;
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

/* Review Card Styling */
.review-card{
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px;
  margin: 10px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transform: scale(0.85);
  opacity: 0.7;
}

/* Center Item - Bigger with prominent shadow */
.review-card.center-item{
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 2px solid #333;
  padding: 30px;
  min-height: 320px;
  z-index: 10;
  position: relative;
}

.review-card:hover{
  opacity: 1;
}

.review-card.center-item:hover{
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
}

/* Featured review card with border */
/* .review-card-featured{
  border: 3px solid #333;
} */

.review-card-featured.center-item{
  border: 3px solid #333;
}

/* Review Text */
.review-text{
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Review Footer */
.review-footer{
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-icon{
  width: 32px !important;
  height: 32px;
  flex-shrink: 0;
}

.review-meta{
  flex: 1;
}

/* Star Rating */
.review-stars{
  display: flex;
  gap: 2px;
  margin-bottom: 5px;
}

.review-stars i{
  color: #fbbf24;
  font-size: 0.9rem;
}

/* Author Name */
.review-author{
  color: #374151;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

/* Owl Carousel Navigation Buttons */
.reviews-carousel .owl-nav{
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.reviews-carousel .owl-nav button{
  pointer-events: all;
  background: #ff8c42 !important;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
  color: #fff;
  font-size: 1.5rem;
}

.reviews-carousel .owl-nav button:hover{
  background: #ff7a29 !important;
  box-shadow: 0 6px 16px rgba(255, 140, 66, 0.4);
  transform: scale(1.1);
}

.reviews-carousel .owl-nav button.owl-prev{
  position: absolute;
  left:25%;
  border-radius: 100%;
}

.reviews-carousel .owl-nav button.owl-next{
  position: absolute;
  right: 25%;
    border-radius: 100%;
}

.reviews-carousel .owl-nav button i{
  line-height: 1;
}

/* View More Link */
.view-more-link{
  color: #ff8c42;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.view-more-link:hover{
  color: #ff7a29;
  gap: 12px;
}

.view-more-link i{
  font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 1400px){
  .reviews-carousel .owl-nav button.owl-prev{
    left: 10px;
  }
  .reviews-carousel .owl-nav button.owl-next{
    right: 10px;
  }
}

@media (max-width: 992px){
  .spr-reviews-section{
    padding: 60px 0;
  }
  
  .reviews-title{
    font-size: 2rem;
  }
  
  .review-card{
    min-height: 260px;
    padding: 20px;
    transform: scale(0.9);
  }
  
  .review-card.center-item{
    min-height: 300px;
    padding: 25px;
  }
  
  .reviews-carousel .owl-nav button.owl-prev{
    left: 5px;
  }
  
  .reviews-carousel .owl-nav button.owl-next{
    right: 5px;
  }
}

@media (max-width: 576px){
  .spr-reviews-section{
    padding: 50px 0;
  }
  
  .reviews-title{
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  
  .review-card{
    min-height: 240px;
    padding: 18px;
    transform: scale(1);
    opacity: 1;
  }
  
  .review-card.center-item{
    min-height: 280px;
    padding: 22px;
    transform: scale(1);
  }
  
  .reviews-carousel .owl-nav button{
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .reviews-carousel .owl-nav button.owl-prev{
    left: 0;
  }
  
  .reviews-carousel .owl-nav button.owl-next{
    right: 0;
  }
}

/* ============================================
   Contact Section - Exact Design Match
   ============================================ */
.spr-contact{
  background: #ffffff;
  padding: 80px 0;
}

/* Container with overlapping layout */
.contact-container{
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.contact-info::before {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.14) 50%, rgba(255, 255, 255, 0) 51%);
    border-radius: 50%;
    pointer-events: none;
}
/* White form box with shadow */
.contact-form-wrapper{
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  padding: 50px 60px;
  flex: 1;
  position: relative;
  z-index: 1;
  margin-right: -45px;
}

.form-heading{
  color: #ff9f5a;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Form styles */
.contact-form{ 
  display: flex; 
  flex-direction: column; 
}

.contact-input,
.contact-textarea{
  background: #f5f5f5;
  border: none;
  border-radius: 8px;
  color: #333;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus{
  background: #ebebeb;
  border: none;
  box-shadow: none;
  outline: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder{
  color: #b0b0b0;
  font-size: 0.9rem;
}

.contact-input{ 
  height: 50px; 
  padding: 14px 18px; 
}

.contact-textarea{ 
  min-height: 120px; 
  padding: 14px 18px; 
  resize: none; 
}

.contact-submit-btn{
  align-self: flex-start;
  margin-top: 20px;
  padding: 14px 50px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #ffb366 0%, #ff9944 100%);
  box-shadow: 0 6px 20px rgba(255, 153, 68, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.contact-submit-btn:hover{ 
  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(255, 153, 68, 0.5); 
}

/* Orange info card - overlapping on the right */
.contact-info{
  background: linear-gradient(135deg, #ffb366 0%, #ff9944 100%);
  color: #fff;
  border-radius: 20px;
  padding: 45px 40px;
  width: 460px;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 10px 35px rgba(255, 153, 68, 0.3);
  position: relative;
  overflow: visible;
}

/* Decorative circle in orange card */
.contact-info::before{
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-info::after{
  content: '';
  position: absolute;
  right: 30px;
  bottom: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.info-title{
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

.info-list{ 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 3;
}

.info-list li{ 
  display: flex;
  align-items: flex-start; 
  gap: 15px; 
}

.info-list .icon{ 
  font-size: 1.3rem; 
  line-height: 1.3;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-list .text{ 
  font-size: 0.95rem; 
  line-height: 1.7;
  color: #fff;
}

.info-list .label{ 
  font-weight: 700; 
  color: #fff;
}

/* Responsive */
@media (max-width: 1200px){
  .contact-form-wrapper{
    padding: 45px 50px;
    margin-right: -80px;
  }
  
  .contact-info{
    width: 420px;
    padding: 40px 35px;
  }
}

@media (max-width: 992px){
  .spr-contact{
    padding: 60px 0;
  }
  
  .contact-container{
    flex-direction: column;
    gap: 30px;
  }
  
  .contact-form-wrapper{
    margin-right: 0;
    width: 100%;
    padding: 40px;
  }
  
  .contact-info{
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px){
  .spr-contact{
    padding: 50px 0;
  }
  
  .contact-form-wrapper{
    padding: 35px 30px;
  }
  
  .form-heading{
    font-size: 1.75rem;
  }
  
  .contact-submit-btn{ 
    width: 100%;
  }
  
  .contact-info{
    padding: 35px 30px;
  }
}

@media (max-width: 576px){
  .contact-form-wrapper{
    padding: 30px 20px;
  }
  
  .form-heading{
    font-size: 1.5rem;
  }
  
  .contact-info{
    padding: 30px 25px;
  }
  
  .info-title{
    font-size: 1.3rem;
  }
}

/* ============================================
   Gallery Section (exact match to UI screenshot)
   ============================================ */
.spr-gallery{
  position: relative;
  padding: 70px 0 80px;
  background-color: #ff974f;
  background-image: url('../img/orange-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Decorative pattern overlay (if orange-bg.jpg is plain color) */
.spr-gallery::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0,0,0,.02) 35px, rgba(0,0,0,.02) 70px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(0,0,0,.02) 35px, rgba(0,0,0,.02) 70px);
  pointer-events: none;
  opacity: 0.4;
}

.gallery-title{
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  font-size: 2.75rem;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Filter tabs with separators */
.gallery-tabs{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  padding: 0 20px;
}

/* Gallery tab wrapper for separators */
.gallery-tab{
  -webkit-appearance: none;
  appearance: none;
  border: 1.8px solid rgba(255,255,255,0.5);
  border-radius: 9999px;
  padding: 9px 26px;
  background: transparent;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}

/* Add space and separator between buttons */
.gallery-tab + .gallery-tab{
  margin-left: 20px;
}
.gallery-tab + .gallery-tab::before{
  content: '|';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  pointer-events: none;
}

.gallery-tab:hover{
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-1px);
}

.gallery-tab.is-active{
  background: #ffffff;
  color: #ff6b35;
  border-color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: scale(1.02);
}

/* Underline decoration */
.gallery-tabs::after{
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -16px;
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
}

/* Gallery Grid - Exact 3 column layout matching screenshot */
.gallery-grid{
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
  max-width: 1280px;
  height: 480px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item{
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 5px solid #ffffff;
}

.gallery-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.gallery-item img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Exact positions matching screenshot:
   Col 1: 2 stacked | Col 2: 1 tall full height | Col 3-4: 1 wide top + 2 small bottom */

/* Column 1 - Top image */
.gallery-item-1{
  grid-column: 1;
  grid-row: 1;
}

/* Column 2 - Tall image (spans full height) */
.gallery-item-2{
  grid-column: 2;
  grid-row: 1 / 3;
}

/* Column 3-4 - Wide image spans top */
.gallery-item-3{
  grid-column: 3 / 5;
  grid-row: 1;
}

/* Column 1 - Bottom image */
.gallery-item-4{
  grid-column: 1;
  grid-row: 2;
}

/* Column 3 - Bottom left small */
.gallery-item-5{
  grid-column: 3;
  grid-row: 2;
}

/* Column 4 - Bottom right small */
.gallery-item-6{
  grid-column: 4;
  grid-row: 2;
}

/* Hide filtered items */
.gallery-item.is-hidden{ 
  display: none; 
}

/* Responsive breakpoints */
@media (max-width: 1200px){
  .gallery-grid{ 
    grid-auto-rows: 180px;
    gap: 18px;
  }
}

@media (max-width: 992px){
  .spr-gallery{ padding: 60px 0 70px; }
  .gallery-title{ font-size: 2.4rem; }
  .gallery-grid{ 
    grid-template-columns: repeat(2, 1fr); 
    grid-auto-rows: 200px;
    gap: 16px;
  }
  .gallery-item.wide{ grid-column: span 2; }
  .gallery-tab{ 
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px){
  .gallery-tabs{ gap: 8px; margin-bottom: 40px; }
  .gallery-tab{ padding: 8px 18px; }
  .gallery-tab + .gallery-tab{ margin-left: 8px; }
  .gallery-tab + .gallery-tab::before{ display: none; }
}

@media (max-width: 576px){
  .spr-gallery{ padding: 50px 0 60px; }
  .gallery-title{ font-size: 2rem; margin-bottom: 28px; }
  .gallery-tabs::after{ width: 120px; }
  .gallery-grid{ 
    grid-template-columns: 1fr; 
    grid-auto-rows: 250px; 
    gap: 20px;
    padding: 0 10px;
  }
  .gallery-item{
    grid-column: 1 !important;
    grid-row: auto !important;
    width: 100%;
    margin: 0;
  }
  .gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .gallery-item.wide{ grid-column: span 1; }
  .gallery-item.tall{ grid-row: span 1; }
}

/* ============================================
   Footer Section
   ============================================ */
.spr-footer{
  background: linear-gradient(180deg, #b1c2fc 0%, #323ba9 100%);
  color: #ffffff;
  padding: 40px 0 20px;
  position: relative;
}

/* Footer Main Content */
.footer-content{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

/* Left Section - Address and Opening Times */
.footer-left{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-location .location-header{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-location .location-header i{
  font-size: 1.2rem;
  color: #ffffff;
}

.location-address{
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.footer-hours .hours-header{
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.hours-details{
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* Center Section - Logo and Navigation */
.footer-center{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.footer-logo{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo img{
  width: 360px;
  height: auto;
}

.footer-brand-text{
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.9rem;
  color: #ffffff;
}

.footer-nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 25px;
}

.footer-nav-link{
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer-nav-link:hover{
  color: #ffffff;
  text-decoration: none;
}

/* Right Section - Social Media */
.footer-right{
  display: flex;
  justify-content: flex-end;
}

.footer-social{
  display: flex;
  gap: 15px;
}

.social-link{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover{
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom{
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: left;
    display: flex
;
    justify-content: space-between;
}

.footer-copyright{
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.footer-credits{
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

        .attendance-banner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .banner-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #6366f1;
            margin: 30px 0px;
            letter-spacing: 2px;
            text-align: center;
        }

        .banner-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: #fbbf24;
            margin: 10px auto;
        }

        .banner-item {
            position: relative;
            cursor: pointer;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 20px;
            height: 300px;
        }

        .banner-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

        .banner-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .banner-number {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #3b82f6;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
        }

        /* FancyBox Custom Styling */
        .fancybox__backdrop {
            background: rgba(0, 0, 0, 0.95);
        }
        
        .fancybox__container {
            --fancybox-color: #ffffff;
        }
        
        /* Banner overlay effect */
        .banner-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(99, 102, 241, 0.1), rgba(251, 191, 36, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }
        
        .banner-item:hover::before {
            opacity: 1;
        }
        
        .banner-item .banner-number {
            z-index: 2;
        }
        
        /* Remove link styling */
        a[data-fancybox] {
            text-decoration: none;
            color: inherit;
        }
        
        a[data-fancybox]:hover {
            text-decoration: none;
            color: inherit;
        }
         /* JUNIOR Section Styles */
        .junior-section {
            background-color: #f5f5f5;
            padding: 60px 40px 40px 40px;
            text-align: center;
        }

        .junior-title {
            font-size: 48px;
            font-weight: bold;
            color: #4a4a9e;
            margin-bottom: 10px;
            letter-spacing: 2px;
            text-align:center;
        }

        .title-underline {
            width: 80px;
            height: 4px;
            background-color: #ff8c42;
            margin: 0 auto 40px auto;
        }

        .junior-content {
            max-width: 1000px;
            margin: 0 auto;
            font-size: 16px;
            line-height: 1.8;
            color: #666666;
            text-align: justify;
        }

        .junior-content p {
            margin-bottom: 25px;
        }

        /* Catalog Viewer Styles */
        .catalog-viewer-section {
            background-color: #fff;
            padding: 40px 20px 60px 20px;
            display: flex;
            justify-content: center;
        }

        .catalog-viewer {
            position: relative;
            max-width: 800px;
            width: 100%;
            background: #777;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            overflow: hidden;
        }

        .catalog-viewer img{
            width: 100%;;
        }
.navbar-toggler{
  border: 1px solid #fff;
}
        /* Responsive design */
        @media (max-width: 768px) {
            .junior-section {
                padding: 40px 20px 30px 20px;
            }
            
            .junior-title {
                font-size: 36px;
            }
            
            .junior-content {
                font-size: 14px;
                text-align: center;
            }
            
         
        }
/* Responsive Footer */
@media (max-width: 1200px){
  .footer-content{
    gap: 30px;
  }
  
  .footer-nav{
    gap: 12px 20px;
  }
}

@media (max-width: 992px){
  .spr-footer{
    padding: 35px 0 18px;
  }
  
  .footer-content{
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .footer-left{
    align-items: center;
    text-align: center;
  }
  
  .footer-right{
    justify-content: center;
  }
  
  .footer-nav{
    gap: 10px 18px;
  }
  
  .footer-nav-link{
    font-size: 0.85rem;
  }
}

@media (max-width: 768px){
  .spr-footer{
    padding: 30px 0 15px;
  }
  
  .footer-content{
    gap: 25px;
    margin-bottom: 25px;
  }
  
  .footer-left{
    gap: 20px;
  }
  
  .footer-center{
    gap: 20px;
  }
  
  .footer-brand-text{
    font-size: 0.8rem;
  }
  
  .footer-nav{
    gap: 8px 15px;
  }
  
  .footer-nav-link{
    font-size: 0.8rem;
  }
  
  .social-link{
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px){
  .spr-footer{
    padding: 25px 0 12px;
  }
  
  .footer-credits{
    font-size: 0.75rem;
  }
  
  .footer-nav{
    gap: 6px 12px;
  }
  
  .social-link{
    width: 32px;
    height: 32px;
    font-size: 1rem;
    gap: 10px;
  }
}
/* Responsive Design Fixes for School Print Resources */

/* 1. Fix Footer Layout Issues */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }
  
  .footer-social {
    order: -1; /* Move social icons above text */
  }
}

/* 2. Improve Navigation for Long Menu Items */
@media (max-width: 991px) {
  .spr-pillnav .nav-link {
    font-size: 0.85rem;
    padding: 0.5rem 0.9rem;
	  text-align: left !important;
        align-items: flex-start;
        justify-content: flex-start;
  }

}

@media (max-width: 576px) {
  .spr-pillnav .nav-link {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    text-align: center;
  }
}

/* 3. Fix Contact Section Horizontal Scroll Issue */
@media (max-width: 1200px) {
  .contact-form-wrapper {
    margin-right: -30px; /* Reduce overlap */
  }
}

@media (max-width: 992px) {
  .contact-form-wrapper {
    margin-right: 0; /* Remove overlap completely */
  }
}

/* 4. Improve Gallery Responsiveness */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    grid-auto-rows: 180px;
    gap: 15px;
  }
  
  /* Reset all specific grid positions */
  .gallery-item {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: 20px;
    padding: 0 15px;
  }
  
  .gallery-item {
    width: 100% !important;
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  
  .gallery-item img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* Extra small devices (phones in portrait, less than 480px) */
@media (max-width: 480px) {
  .gallery-grid {
    grid-auto-rows: 220px;
    gap: 15px;
    padding: 0 10px;
  }
  
  .gallery-item {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .gallery-item img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100%;
    object-fit: cover;
  }
}

/* 5. Fix About Section Responsive Issues */
@media (max-width: 1200px) and (min-width: 993px) {
  .about-row--one .about-card,
  .about-row--two .about-card {
    width: 50%;
    padding: 20px;
  }
}

/* 6. Typography Improvements */
@media (max-width: 480px) {
  .gallery-title {
    font-size: 1.75rem;
  }
  
  .reviews-title {
    font-size: 1.5rem;
  }
  
  .banner-title {
    font-size: 2rem;
  }
  
  .junior-title {
    font-size: 32px;
  }
}

/* 7. Quick Links Button Improvements */
@media (max-width: 768px) {
  .quick-links-section .row {
    gap: 0.75rem;
  }
/*   .topbar-orange{
    display: none;
  }
    .topbar-white{
    display: none;
  } */
}

@media (max-width: 576px) {
  .quick-link-btn {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* 8. Topbar Responsive Improvements */
@media (max-width: 768px) {
  .topbar-orange,
  .topbar-white {
    padding: 0.75rem 1rem !important;
  }
  
  .topbar-orange .d-flex,
  .topbar-white .d-flex {
    justify-content: center;
    text-align: center;
  }
  
  .separator {
    display: none; /* Hide separators on very small screens */
  }
}

/* 9. Hero Banner Optimization */
@media (max-width: 768px) {
  .hero-banner-img {
/*     min-height: 250px;
    object-position: center center; */
  }
}



/* 11. Contact Form Mobile Improvements */
@media (max-width: 576px) {
  .contact-form .row {
    margin: 0;
  }
  
  .contact-form .col-md-6 {
    padding: 0;
    margin-bottom: 15px;
  }
}

/* 12. Logo Responsive Improvements */
@media (max-width: 480px) {
  .spr-header .spr-logo {
    width: 200px;
  }
  
  .footer-logo img {
    width: 280px;
  }
}

/* 13. Prevent Horizontal Scrolling */
html, body {
  overflow-x: hidden;
}

/* .container-xl,
.container-lg,
.container-fluid {
  max-width: 100%;
} */

/* 14. Improve Touch Targets for Mobile */
@media (max-width: 768px) {
  .nav-link,
  .quick-link-btn,
  .gallery-tab,
  .social-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
	  
  }
	  .social-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
	  width:44px;
  }
}
/* ===== Navbar Dropdown Hover CSS ===== */

/* Positioning fix */
.spr-navbar .dropdown {
  position: relative;
}

/* Hide dropdown by default */
.spr-navbar .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* appears below the parent */
  left: 0;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  z-index: 999;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

/* Show dropdown on hover */
.spr-navbar .dropdown:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown animation */
.spr-navbar .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

/* Dropdown item styling */
.spr-navbar .dropdown-item {
  color: #333;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.spr-navbar .dropdown-item:hover {
  background-color: #007bff;
  color: #fff;
}

/* Nav link active / hover style */
.spr-navbar .nav-link {
  color: #fff;
  font-weight: 500;
  padding: 10px 15px;
  transition: all 0.3s ease;
	font-size:15px;
}

.spr-navbar .nav-link:hover,
/*.spr-navbar .nav-link.active {*/
/*  color: #fff;*/
/*}*/

/* Optional: Keep dropdown visible when hovering inside it */
/* .spr-navbar .dropdown:hover > .nav-link {
  color: #fff;
} */

/* For small screens: still use Bootstrap toggle behavior */
@media (max-width: 991px) {
  .spr-navbar .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }
  .spr-navbar .dropdown.show .dropdown-menu {
    display: block;
  }
  .attendance-banner{
    padding:30px;
}
}
.what_we_do_op{
    padding:60px 0px;
}
  .what_we_do_op img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      margin-bottom: 20px;
    }
    .what_we_do_op strong {
      color: #1a73e8;
    }
    .what_we_do_op p {
      margin-bottom: 1rem;
      font-size: 16px;
    }
    .what_we_do_op a {
      color: #ff6600;
      text-decoration: none;
      font-weight: 600;
    }
    .what_we_do_op a:hover {
      text-decoration: underline;
    }
    .about-img img{
        width:500px;
        max-width:100%;
    }
.about-img{
   justify-content: center;
   
}
.w-100{
    width:100% !important;
}
.testiBox {
padding: 30px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, .4);
    border-radius: 6px;
    background: linear-gradient(180deg, #b1c2fc 0%, #323ba9 100%);
    margin-bottom:20px;
    min-height:400px;
    color:#fff !important;
}
.wpcf7-form-control-wrap input{
    width:100%;
    height:42px;
    border:1px solid #ddd;
    margin-bottom:15px;
}
.contacUsPage .cntFormAre textarea.form-control{
    height: 119px;
    resize:none;
}
.contacUsPage .form-control{
    border-radius: 15px;
    height: 40px;
}
.contacUsPage  label{
    font-size: 16px;
    padding-left: 10px;
}
.contacUsPage h4{
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 25px;
}
.contacUsPage h5{
    font-size: 20px;
    font-family: "robotobold";
    color: #EB7A0C;
    margin-top: 30px;
}
.extraInformation p{
    position: relative;
    padding-left: 16px;
}
.extraInformation  i{
    position: absolute;
    top: 4px;
    left: 0;
}
.extraInformation  i.fa-envelope{
    font-size: 12px;
}
.extraInformation  li{
    position: relative;
    padding-left: 16px;
    margin-bottom: 10px;
}
.contacUsPage .col-sm-8{
    padding-right: 40px;
}
.contacUsPage .col-sm-4 img{
    border:4px solid #ccc;
}
.secImgSec p{
    line-height: 35px;
    margin-bottom: 0;
}
.imgSec{
    margin-left: 12px;
    display: inline-block;
}
.buttonSec {margin-bottom: 20px;}
.wpcf7-response-output{overflow: hidden;clear: both; text-align: center; border-radius: 50px;}
.img_inner_box {
    position: relative;
}
.img_caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    background: #052789c7;
    color: #fff;
    padding: 15px 5px; 
}
.sbpagerow{margin-top: 25px;}
ul.icons-list, li {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.extraInformation img{
    width:250px;
    max-width:100%;
}
.readMoreBtn {
      padding: 8px 20px;
    color: #fff;
    border-radius: 24px;
    display: inline-block;
    font-size: 15px;
    text-transform: uppercase;
    border: 1px solid #fff;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f89839+0,f1943d+44,eb7a0c+100 */
    background: #f89839;
    /* Old browsers */
    background: -moz-linear-gradient(top, #f89839 0%, #f1943d 44%, #eb7a0c 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #f89839 0%, #f1943d 44%, #eb7a0c 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #f89839 0%, #f1943d 44%, #eb7a0c 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f89839', endColorstr='#eb7a0c', GradientType=0);
}

.readMoreBtn:focus,
.readMoreBtn:hover {
    text-decoration: none;
    color: #fff;
    background-color: transparent;
}
.map-dv{
    box-shadow:0px 0px 4px rgba(0,0,0,.3);
    padding:15px;
    margin-bottom:40px;
}

.defPadd {
    padding: 50px 0;
}
.line.defHead {
    color: #373dac;
    text-transform: uppercase;
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    text-align: center;
    border: none;
    margin-bottom: 40px;
}
.what_we_do .tabs {
    display: flex
;
    cursor: pointer;
    padding: 10px;
    justify-content: center;
}
.what_we_do .tab-content.active {
    display: block;
}
.what_we_do .tab-content {
    display: none;
    padding: 20px;
    border-top: none;
    margin-bottom: 35px;
    text-align: center;
}
.what_we_do [class*=col] {
    padding: 0 5px;
    position: relative;
}
div.gallery {
    margin: 20px -15px;
}
.gallery-item {
    display: inline-block;
    padding: 5px;
}
figure {
    margin: 0;
}
.what_we_do .tab.active {
    background: #ef8319;
    color: #fff;
}
.what_we_do .tab-btn {
    margin-right: 10px;
    padding: 10px 30px;
    background: #2836a1;
    color: #fff;
}
.tab-gallery-section {
  padding: 40px 0;
  text-align: center;
}
.tab-btn {
}
.tab-btn {
  padding: 10px 25px;
  border: none;
  background: #eee;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  border-radius: 4px;
  margin: 0 5px;
}
.tab-btn.active {
  background: #0073e6;
  color: #fff;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.gallery-item {
    display: inline-block;
    margin: 5px;
}
.feed-icon svg{
    width:70px;
    height:70px;
}
.feed-icon{
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}
.topbar-orange a{
	color:#fff;
	text-decoration:none;
}
.topbar-white a{
	color:#000;
	text-decoration:none;
}
.info-list li a{
		color:#fff;
	text-decoration:none;
}
.contacUsPage textarea.form-control{
	height:80px
}
.footer-content{
	padding:0px 60px;
}
@media (max-width: 991px){
.what_we_do .tabs {
    display: flex;
    cursor: pointer;
    padding: 10px;
    justify-content: flex-start;
    overflow: scroll;
	white-space: nowrap;
}
	.footer-location{
		width:100%;
	}
	.footer-hours{
		width:100%;
	}
	.footer-location .location-header {

    justify-content: center;
}
		.nav-link.dropdown-toggle{
		 align-items: center;
        justify-content: flex-start;
	}
}
.banner-section {
  position: relative;
  overflow: hidden;
}
.banner-section img {
  width: 100%;
  height: auto;
  display: block;
}
.banner-section .owl-nav span {
	    padding: 0px 6px;
    font-size: 40px;
    color: #ff6b35;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
    background: rgba(0, 0, 0, .5);
}


.banner-section .owl-prev {
  left: 10px;
}
.banner-section .owl-next {
  right: 10px;
}
.banner-section .owl-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.banner-section .owl-dots {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.banner-section .owl-dot span {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease;
}

.banner-section .owl-dot.active span,
.banner-section .owl-dot:hover span {
  background: #ff6600; /* active color */
  transform: scale(1.2);
}

