.gems-framework-section {
    padding: 100px 8%;
    background: #fff;
    font-family: Arial, sans-serif;
}

.gems-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

/* LEFT SIDE */
.gems-left { flex: 1; }

.gems-title {
    background: #1a365d;
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    font-size: 28px;
    margin-bottom: 25px;
}

.gems-logo-box { display: flex; align-items: flex-start; gap: 20px; }
.gems-logo-box img { width: 80px; }
.gems-logo-box p { color: #666; font-size: 14px; line-height: 1.8; }

.learn-more {
    display: inline-block;
    margin-top: 25px;
    color: #f39c12;
    text-decoration: none;
    font-weight: bold;
    background: #fff8eb;
    padding: 10px 20px;
    border-radius: 25px;
    transition: 0.3s;
}

/* RIGHT SIDE - STACKED IMAGES */
.gems-right { flex: 1; position: relative; height: 500px; }

.image-stack { position: relative; width: 100%; height: 100%; }

.img-wrapper {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: 0.4s ease;
}

.img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

/* Positions as per npweb8.JPG */
.top-img { width: 300px; height: 220px; top: 0; left: 0; z-index: 3; }
.mid-img { width: 250px; height: 180px; top: 120px; right: 0; z-index: 2; }
.bottom-img { width: 280px; height: 200px; bottom: 0; left: 60px; z-index: 1; }

/* WATCH VIDEO BUTTON OVERLAY */
.watch-video-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ff9900;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(255,153,0,0.4);
    z-index: 10;
}

/* OVER EFFECT - CLICKABLE */
.img-wrapper:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 20;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.watch-video-overlay:hover { background: #e68a00; transform: scale(1.1); }

/* Responsive */
@media (max-width: 992px) {
    .gems-container { flex-direction: column; }
    .gems-right { height: 600px; width: 100%; }
}

.gems-section {
    padding: 5px 5% 10px;
    background: #fff;
    position: relative;
}

/* --- ICON BAR STYLING (npweb9.JPG) --- */
.icon-floating-bar {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 90%;
    max-width: 1100px;
    display: flex;
    justify-content: space-around;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    z-index: 20;
}
.icon-item a { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.icon-item img { width: 40px; transition: 0.3s; }
.icon-item span { font-size: 11px; color: #1a365d; font-weight: 600; width: 80px; }

.icon-item:hover img { transform: translateY(-5px); }


.global-schools-footer {
    /* Background image setup as seen in JPG */
    background-image: url('background-students.jpg'); 
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-overlay {
    /* Dark blue transparent overlay from image */
    background-color: rgba(26, 54, 93, 0.88); 
    padding: 80px 10%;
    color: #ffffff;
    text-align: center;
}

/* Logo & Tagline */
.gsg-logo-container img {
    width: 220px;
    margin-bottom: 15px;
}

.member-tag {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.main-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Statistics Grid - Exact 6 columns layout */
.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.counter-item h3 {
    color: #a2d248; /* Exact Lime Green Color from JPG */
    font-size: 34px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.counter-item p {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

/* Description Text */
.footer-description {
    font-size: 13.5px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
    opacity: 0.85;
}

/* Button Styling - Rounded with Border */
.btn-visit-site {
    display: inline-block;
    padding: 12px 35px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: #a2d248; /* Text matches counter color */
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.btn-visit-site:hover {
    background: #a2d248;
    color: #1a365d;
    border-color: #a2d248;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stats-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .main-heading { font-size: 24px; }
}

.global-community-section {
    padding: 100px 5%;
    background: #fff;
    overflow: hidden;
}

.community-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* --- LEFT ORBIT DESIGN --- */
.community-left {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.orbit-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
}

.center-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.center-img img { width: 100%; height: 100%; object-fit: cover; }

/* Dotted Ring */
.orbit-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dotted #e0e0e0;
    border-radius: 50%;
}

/* Individual Orbiting Items */
.orbiting-item {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.orbiting-item img { width: 100%; height: 100%; object-fit: cover; }

/* Positioning as per npweb11.JPG */
.pos1 { top: 10%; left: 0; }        /* Top Left student */
.pos2 { top: -20px; right: 20%; }   /* Top Right student */
.pos3 { bottom: 0; right: 30%; }    /* Bottom student */

/* Colored Dots */
.dot { position: absolute; border-radius: 50%; }
.orange-dot { width: 30px; height: 30px; background: #f39c12; top: 20%; left: 25%; }
.green-dot { width: 20px; height: 20px; background: #a2d248; bottom: 35%; left: 10%; }
.blue-dot { width: 25px; height: 25px; background: #00aeef; bottom: 20%; left: 45%; }

/* --- RIGHT TEXT DESIGN --- */
.community-right { flex: 1; }
.community-title { color: #1a365d; font-size: 32px; font-weight: 700; margin-bottom: 25px; }
.community-desc { color: #666; font-size: 15px; line-height: 1.8; margin-bottom: 30px; }

/* Learn More Button */
.learn-more-btn {
    display: inline-block;
    background: #fff8eb;
    color: #f39c12;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.learn-more-btn:hover { background: #f39c12; color: #fff; }

/* Mobile Responsive */
@media (max-width: 992px) {
    .community-container { flex-direction: column; text-align: center; }
    .orbit-wrapper { transform: scale(0.8); }
}
/* Container Styling */
.student-life-section {
    padding: 80px 5%;
    background-color: #fff;
    font-family: 'Arial', sans-serif;
}

.container { max-width: 1250px; margin: 0 auto; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.title-navy { color: #1a365d; font-size: 28px; font-weight: 700; }

.view-all-pill {
    text-decoration: none;
    color: #f39c12;
    background: #fff8eb;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

/* Grid Layout */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

/* --- CARD & OVER EFFECT --- */
.activity-card {
    text-decoration: none;
    display: block;
    background: #fff;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Smooth movement */
    position: relative;
    top: 0;
}

.activity-img-wrapper {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.activity-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease; /* Smooth Zoom */
}

/* Hover Overlay */
.image-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
}

.activity-info h3 {
    color: #1a365d;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.activity-info p {
    color: #666;
    font-size: 13.5px;
    line-height: 1.6;
}

/* --- THE "OVER" ACTIONS --- */

/* 1. Card Lift */
.activity-card:hover {
    top: -12px; /* Card moves up */
}

/* 2. Image Zoom */
.activity-card:hover .activity-img-wrapper img {
    transform: scale(1.12); /* Image zooms in */
}

/* 3. Shadow Deepening */
.activity-card:hover .activity-img-wrapper {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); /* Deep shadow on hover */
}

/* 4. Text Color Change */
.activity-card:hover .activity-info h3 {
    color: #f39c12; /* Title turns orange on hover */
}

/* 5. Subtle Darken */
.activity-card:hover .image-overlay {
    background: rgba(0,0,0,0.1); /* Slightly darkens image for focus */
}

/* --- SCHOLARSHIP SECTION CONTAINER --- */
.scholarship-section {
    padding: 50px 0;
    background-color: #fff;
    font-family: Arial, sans-serif;
    overflow: hidden; /* Slide change ke waqt extra content chhupane ke liye */
}

/* Swiper Container fix for Overlap */
.myScholarshipSwiper {
    width: 100%;
    padding-bottom: 80px !important; /* Dots ke liye space */
    overflow: visible !important;   /* Taaki left image box se bahar dikhe */
}

.scholarship-container {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding-left: 120px; /* Left image ko overlap karne ki jagah */
}

/* --- OVERLAPPING IMAGE BOX --- */
.scholarship-image-box {
    position: absolute;
    left: 0;
    z-index: 10;
    width: 380px;
    height: 260px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.scholarship-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- BLUE CARD (Jo aapne pucha hai) --- */
.scholarship-card {
    background-color: #e6f7ff; /* Exact Light Blue from npweb13 */
    width: 100%;
    padding: 60px 60px 60px 280px; /* Image ke liye extra left padding */
    border-radius: 35px;
    text-align: left;
}

.scholarship-title {
    color: #1a365d;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
}

/* Detail Row (Tenure, Value, Grades) */
.scholarship-details {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    margin-bottom: 30px;
}

.detail-item .label {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

.detail-item .value {
    font-size: 18px;
    font-weight: 700;
    color: #1a365d;
}

/* Brochure Link */
.brochure-link {
    display: inline-block;
    color: #00aeef;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 35px;
    transition: 0.3s;
}

.brochure-link:hover {
    color: #1a365d;
}

/* Buttons Section */
.scholarship-actions {
    display: flex;
    gap: 20px;
}

.btn-apply-now {
    background-color: #00aeef;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.3);
    transition: 0.3s;
}

.btn-apply-now:hover {
    background-color: #008cc0;
    transform: translateY(-2px);
}

.btn-know-more {
    background-color: #fff;
    color: #00aeef;
    border: 1.5px solid #00aeef;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-know-more:hover {
    background-color: #00aeef;
    color: #fff;
}

/* --- SWIPER PAGINATION (DOTS) --- */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc !important;
    opacity: 1;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: #1a365d !important; /* Dark Navy Dot */
    width: 12px;
    height: 12px;
}

.testimonials-section {
    padding: 100px 5%;
    background-color: #fcfdfe; /* Very light blue/white background */
    text-align: center;
    position: relative;
    font-family: Arial, sans-serif;
}

.section-title {
    color: #1a365d;
    font-size: 32px;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- TESTIMONIAL CARD --- */
.testimonial-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.4s ease; /* Smooth hover transition */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Quote Icon styling from npweb14.JPG */
.quote-icon {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    color: #a2d248; /* Exact Lime Green color */
    font-family: serif;
    opacity: 0.6;
}

.parent-img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

.parent-img img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
}

.parent-name {
    color: #1a365d;
    font-size: 16px;
    margin-bottom: 5px;
}

.child-info {
    color: #888;
    font-size: 12px;
}

/* --- HOVER "OVER" EFFECT --- */
.testimonial-card:hover {
    transform: translateY(-15px); /* Lift card up */
    box-shadow: 0 20px 45px rgba(0,0,0,0.12); /* Deep shadow on hover */
    background: #fff;
}

.giis-campus-footer {
    background-color: #0056a4; /* Exact Royal Blue from npweb15.JPG */
    padding: 60px 5%;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

/* --- Left Side Styling --- */
.campus-info { flex: 1.2; }

.campus-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.campus-visual-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.campus-img { width: 100%; display: block; }

.address-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent bar */
    padding: 15px 20px;
    font-size: 13px;
    line-height: 1.4;
}

.address-overlay .phone { margin-top: 5px; font-weight: bold; }

.social-icons { display: flex; gap: 15px; }

.icon-circle {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.icon-circle:hover { background: #ffffff; color: #0056a4; }

/* --- Right Side Styling --- */
.certifications-section {
    flex: 1;
    display: flex;
}

.cert-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 40px;
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-content: start;
}

.efqm-logo {
    grid-column: span 2;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    width: 140px;
    margin-bottom: 10px;
}

.efqm-logo img { width: 100%; }

.iso-badge {
    text-align: left;
    font-size: 11px;
    line-height: 1.4;
}

.iso-badge img {
    width: 80px;
    margin-bottom: 8px;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .footer-container { flex-direction: column; }
    .cert-divider { display: none; }
}




















.campus-section {
  background: #f5f6f7;
  padding: 80px 0;
  text-align: center;
}

.campus-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0f2d4a;
  margin-bottom: 15px;
}

.campus-section h5 {
  font-size: 20px;
  font-weight: 600;
  color: #0f2d4a;
  margin-bottom: 20px;
}

.campus-section .description {
  max-width: 800px;
  margin: 0 auto 50px;
  color: #6c757d;
  line-height: 1.8;
}

.campus-card {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}

.campus-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
  border-bottom: 1px solid #eee;
  list-style: none;
  margin: 0;
}

.campus-tabs li {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  color: #6c757d;
  padding-bottom: 10px;
  position: relative;
}

.campus-tabs li img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.campus-tabs li.active {
  color: #0f2d4a;
}

.campus-tabs li.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 100%;
  height: 3px;
  background: #1e88e5;
}

.tab-content {
  padding: 80px 0;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Simple loader */
.loader {
  width: 40px;
  height: 40px;
  border: 4px solid #d9e6f5;
  border-top: 4px solid #1e88e5;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}
.bus-route-section {
  background: #f5f6f7;
  padding: 80px 0;
  text-align: center;
}

.bus-route-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1e4a72;
  margin-bottom: 10px;
}

.bus-route-section h3 {
  font-size: 36px;
  font-weight: 700;
  color: #1e4a72;
  margin-bottom: 40px;
}

.route-box {
  background: #dbe7ef;
  border: 2px solid #9cbad0;
  border-radius: 30px;
  padding: 50px 40px;
}

.route-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 35px;
}

.route-list a {
  display: inline-block;
  padding: 14px 30px;
  border: 1.5px solid #6fa3bd;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: #0b8bd6;
  background: transparent;
  transition: 0.3s ease;
}

.route-list a:hover {
  background: #0b8bd6;
  color: #fff;
  border-color: #0b8bd6;
}

/* Optional: force last pill to center if alone */
.center-pill {
  flex-basis: 100%;
  max-width: 220px;
}
@media (max-width: 768px) {
  .bus-route-section h2 {
    font-size: 30px;
  }

  .bus-route-section h3 {
    font-size: 26px;
  }

  .route-box {
    padding: 30px 20px;
  }

  .route-list a {
    font-size: 15px;
    padding: 10px 20px;
  }
}
.faq-section {
  background: #e9f1f5;
  padding: 80px 0;
}

.faq-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.faq-left {
  flex: 1.2;
}

.faq-left h2 {
  font-size: 44px;
  font-weight: 700;
  color: #183a5a;
  margin-bottom: 40px;
}

/* Pills */
.faq-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.faq-tabs button {
  padding: 12px 30px;
  border-radius: 40px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  font-size: 16px;
}

/* Individual pill colors */
.general { background: #f5d2a7; color: #f18a00; }
.meeting { background: #cbd6df; color: #1e3d59; }
.tour { background: #f3c8cd; color: #e13a3a; }
.admission { background: #bfe0ef; color: #1b8bd3; }

/* Accordion */
.faq-item {
  border-bottom: 1px solid #cbd6df;
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: #183a5a;
  cursor: pointer;
}

.faq-question span {
  font-size: 24px;
  font-weight: 700;
}

.faq-answer {
  display: none;
  padding-top: 15px;
  color: #555;
  line-height: 1.6;
}

/* Right Image */
.faq-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.faq-image {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  overflow: hidden;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .faq-wrapper {
    flex-direction: column;
  }

  .faq-image {
    width: 300px;
    height: 300px;
  }
}
.campus-footer {
  background: #0f5c9b;
  padding: 80px 0;
  color: #fff;
}

.footer-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.footer-left {
  flex: 1.2;
}

.footer-left h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 25px;
}

.giis-campus-footer {
    background-color: #0056a4; /* Exact Royal Blue from npweb15.JPG */
    padding: 60px 5%;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

/* --- Left Side Styling --- */
.campus-info { flex: 1.2; }

.campus-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.campus-visual-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.campus-img1 { width: 50%;  display: block; }

.address-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent bar */
    padding: 15px 20px;
    font-size: 13px;
    line-height: 1.4;
}

.address-overlay .phone { margin-top: 5px; font-weight: bold; }

.social-icons { display: flex; gap: 15px; }

.icon-circle {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.icon-circle:hover { background: #ffffff; color: #0056a4; }

/* --- Right Side Styling --- */
.certifications-section {
    flex: 1;
    display: flex;
}

.cert-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 40px;
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-content: start;
}

.efqm-logo {
    grid-column: span 2;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    width: 140px;
    margin-bottom: 10px;
}

.efqm-logo img { width: 100%; }

.iso-badge {
    text-align: left;
    font-size: 11px;
    line-height: 1.4;
}

.iso-badge img {
    width: 80px;
    margin-bottom: 8px;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .footer-container { flex-direction: column; }
    .cert-divider { display: none; }
}
/* RIGHT SIDE */
.campus-right {
  flex: 1;
}

.efqm-box img {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  width: 190px;
  margin-bottom: 40px;
}

.iso-section {
  display: flex;
  gap: 50px;
}

.iso-block img {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 18px;
  width: 130px;
}

.iso-block h4 {
  font-size: 18px;
  font-weight: 600;
}

.iso-block p {
  font-size: 14px;
  margin-top: 6px;
  opacity: 0.9;
}.main-footer {
  background: #0b2f4d;
  padding: 90px 0;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 25px;
}

.footer-info p {
  margin-bottom: 12px;
  font-size: 15px;
  opacity: 0.9;
}

.footer-info hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 30px 0;
}

.footer-col h5 {
  color: #9bd12f;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  opacity: 0.85;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: #9bd12f;
}

.mt {
  margin-top: 40px;
}

/* Newsletter */
.newsletter {
  display: flex;
  margin-top: 20px;
}

.newsletter input {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
}

.newsletter button {
  padding: 14px 25px;
  border: none;
  background: #9bd12f;
  color: #fff;
  font-weight: 600;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.floating-buttons {
  position: fixed;
  right: 0;
  top: 63%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;

}

/* Common Style */
.float-btn {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 18px 10px;
  color: #fff;
  border-radius: 8px 0 0 8px;
  text-align: center;
  transition: 0.3s ease;
}

/* Blue Button */
.enquire {
  background: #1fa2c9;
}

.enquire:hover {
  background: #178db0;
}

/* Orange Button */
.tour {
  background: #f28c28;
}

.tour:hover {
  background: #d97706;
}

/* Hide on small devices (optional) */
@media (max-width: 768px) {
  .floating-buttons {
    display: none;
  }
}
