 .services-section {
  padding: 100px 20px;
  /*background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);*/
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  opacity: 0.8;
}

.services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.service-card {
  position: relative;
  padding: 35px;
  border-radius: 25px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 0 20px rgba(255, 255, 255, 0.05);

  transition: all 0.4s ease;
}

/* Light reflection top line */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(0, 198, 255, 0.6);
}

.service-card .icon {
  width: 60px;
  height: 60px;
 background: linear-gradient(135deg, #ff9a66, #E97F4A, #c94f1c);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 26px;
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px #FF7A1A;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
}

.section-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}
.service-card.highlight {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.service-card.highlight:hover {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
}
.in_mobile_headeing {
                background: #fff;
                padding: 10px;
                margin-left: 10px;
                margin-right: 10px;
                border-radius: 30px;
            }
            @media only screen and (min-width: 1px) and (max-width: 520px) {
                .in_mobile_headeing {
                    background: #fff;
                    padding: 10px;
                    margin-left: 10px;
                    margin-right: 10px;
                    border-radius: 100px;
                    font-size: 30px;
                }
            }
             /* GLOBAL FIX */

/* SECTION */
.portfolio-section-one {
  width: 100%;
  padding: 40px 15px;
  background: #fff;
}
.top-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
    gap:20px; /* spacing */
}

.country-box{
    color:#fff;
    padding:14px 45px;
    font-weight:600;
    font-size:20px;
    position:relative;
    text-align:center;
    border-radius: 100px;

}

.india-box{
    background:#0B2D72;
}
.parameters{
    background: #f2f2f2;
    padding: 20px;
    border-radius: 100px;
}

.georgia-box{
    background:#e67e43;
}


/* ========================= */
/* 📱 Mobile Responsive */
/* ========================= */

@media (max-width: 768px){

    .top-bar{
        flex-direction:column;
        align-items:stretch;
        gap:15px;
        margin-bottom:25px;
    }

    .country-box{
        padding:12px 20px;
        font-size:16px;
        width:100%;
    }

}

/* WRAPPER */
.comparison-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 140px;
}

/* DESKTOP LAYOUT */
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.side-text {
  font-size: 15px;
  color: #333;
}

.center-pill {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
}

.center-pill .left {
  background: #0B2D72;
  color: #fff;
  flex: 1;
  text-align: center;
  padding: 16px;
  font-weight: 600;
}

.center-pill .right {
  background: #e67e43;
  color: #fff;
  flex: 1;
  text-align: center;
  padding: 16px;
  font-weight: 600;
}

.icon-circle {
  position: absolute;
  width: 55px;
  height: 55px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}



/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
 .compare-row {
    grid-template-columns: 1fr;
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
  }
  .center-pill {
    position: relative;
    display: flex;
    align-items: center;
  }

  .center-pill .left,
  .center-pill .right {
    font-size: 13px;
    padding: 14px 18px;
  }

  .icon-circle {
    width: 42px;      /* smaller circle */
    height: 42px;
    font-size: 14px;
  }

}


            .pbmit-portfolio-style-2 .pbmit-country-flag-icon {
    border-radius: 0 0 50px 50px;
    padding: 0 8px 8px 8px;
    background-color: #f2f2f2;}
    .pbmit-portfolio-style-2 .pbmit-country-flag-icon::before, .pbmit-portfolio-style-2 .pbmit-country-flag-icon::after{
            box-shadow: 0 -15px 0 0 #f2f2f2 !important;}
             .pbmit-featured-wrapper {
    background: transparent !important; /* white mat rakho */
}

.pbmit-featured-wrapper img {
    mix-blend-mode: multiply;
}.about-us-two-rightbox .pbmit-progress-wrapper {
                                    position: absolute;
                                    top: 0px;
                                    left: 433px;
                                }
                                .about-us-two-img {
                                    background-image: url(../imgs/1959.jpg);
                                }
                                .why-clean-section {
  padding: 100px 0;
  background: #ffffff;
}

.why-clean-image img {
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.mini-title {
  font-size: 14px;
  font-weight: 600;
  color: #FF7A1A;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: inline-block;
}

.why-clean-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.why-clean-content h2 span {
  color: #FF7A1A;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 25px;
  border-radius: 16px;
  background: #f9f9f9;
  transition: 0.3s ease;
}

.why-box:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateX(6px);
}

.why-box h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.why-box p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #555;
}

.dot {
  min-width: 12px;
  height: 12px;
  width: 12px;
  background: #FF7A1A;
  border-radius: 50%;
  margin-top: 7px;
}
.whyCardsSwiper {
  width: 100%;
  max-width: 450px;
  height: 320px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card {
  /*background: #f2f2f2;*/
  padding: 30px;
  background: #f2f2f2;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.why-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #FF7A1A;
  margin-bottom: 15px;
}

.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.mbbs-timeline {
  padding: 100px 0;
  background: #f2f2f2;
  text-align: center;
}

.timeline-heading span {
  color: #FF7A1A;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.timeline-heading h2 {
  font-weight: 700;
  margin: 15px 0;
}

.timeline-heading p {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #666;
}

/* Horizontal Line */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #FFE0CC;
  z-index: 0;
}

.timeline-step {
  position: relative;
  width: 18%;
  z-index: 1;
}

.circle {
  width: 50px;
  height: 50px;
  background: #FF7A1A;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(255,122,26,0.4);
  transition: 0.3s;
}

.timeline-step:hover .circle {
  transform: scale(1.15);
  box-shadow: 0 15px 30px rgba(255,122,26,0.6);
}

.timeline-step h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-step p {
  font-size: 14px;
  color: #777;
}

.timeline-footer {
  margin-top: 60px;
  font-weight: 600;
  background: #fff3e9;
  padding: 18px;
  border-radius: 10px;
  display: inline-block;
  border: 1px solid #ffd2b8;
}

/* ================= MOBILE VERSION ================= */

@media(max-width: 991px){

  .timeline {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline::before {
    top: 0;
    left: 24px;
    width: 4px;
    height: 100%;
  }

  .timeline-step {
    width: 100%;
    padding-left: 80px;
    margin-bottom: 50px;
    text-align: left;
  }

  .circle {
    position: absolute;
    left: 0;
    top: 0;
  }

}
/* ===== SECTION ===== */

.geo-benefits-section {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}

.geo-benefits-header h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.geo-benefits-header p {
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* ===== GRID ===== */

.geo-benefits-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ===== CARD ===== */

.geo-benefit-box {
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.geo-benefit-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.geo-benefit-box h5 {
  font-size: 15px;
  margin-top: 18px;
  font-weight: 600;
}

/* ===== ICON STYLE ===== */

.geo-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
}

/* ICON COLORS */

.bg-red { background:#ff4d4f; }
.bg-orange { background:#ff7a1a; }
.bg-yellow { background:#f5b400; }
.bg-green { background:#28c76f; }
.bg-blue { background:#1e88e5; }
.bg-navy { background:#0d47a1; }
.bg-pink { background:#e91e63; }
.bg-gray { background:#6c757d; }
.bg-teal { background:#20c997; }
.bg-gold { background:#d4a017; }
.bg-coral { background:#ff6f61; }

/* ===== BUTTON ===== */

.geo-benefits-action {
  margin-top: 50px;
}

.geo-btn-primary {
  background: #ff7a1a;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.geo-btn-primary:hover {
  background: #e66700;
}
/* GEO VISION ABOUT SECTION */



.gv-subtitle {
  color: #E97F4A !important;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.gv-main-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.gv-description {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

.gv-feature-box {
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.gv-feature-box i {
  color: #0B2D72;
  font-size: 18px;
}

.gv-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.gv-custom-btn {
  background: #0B2D72;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.gv-custom-btn:hover {
  background: #0d3b66;
  color: #fff;
}

.gv-image-box img {
  max-width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .gv-main-title {
    font-size: 26px;
  }

  .gv-description {
    font-size: 15px;
  }
}
/* OUR VISION SECTION DESIGN */

.zx-vision-wrapper {
  background: #f2f2f2;
  color: #ffffff;
}

.zx-vision-label {
  color: #E97F4A;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.zx-vision-title {
  font-size: 38px;
  font-weight: 700;
  margin: 15px 0;
  color: #0B2D72;
}

.zx-vision-description {
  max-width: 700px;
  margin: auto;
  color: #000;
  font-size: 16px;
}

.zx-vision-box {
  background: #ffffff;
  color: #111827;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  transition: 0.4s ease;
  height: 100%;
}

.zx-vision-box h5 {
  font-weight: 600;
  margin: 15px 0;
}

.zx-vision-box p {
  font-size: 14px;
  color: #4b5563;
}

.zx-vision-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.zx-vision-circle {
  width: 75px;
  height: 75px;
  background: #0B2D72;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
}

.zx-vision-highlight {
  background: #0B2D72;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .zx-vision-title {
    font-size: 26px;
  }

  .zx-vision-box {
    padding: 20px;
  }
}
/* PREMIUM WHY CHOOSE SECTION */

.nova-choice-section {
  background: #fff !important;
}

.nova-mini-title {
  color: #E97F4A !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nova-main-heading {
  font-size: 38px;
  font-weight: 700;
  margin: 15px 0;
  color: #0f172a;
}

.nova-sub-heading {
  max-width: 700px;
  margin: auto;
  color: #475569;
  font-size: 16px;
}

.nova-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  height: 100%;
  transition: 0.4s ease;
  border: 1px solid #e2e8f0;
  position: relative;
}

.nova-card h5 {
  font-weight: 600;
  margin: 15px 0;
}

.nova-card p {
  font-size: 14px;
  color: #475569;
}

.nova-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: #0B2D72;
}

.nova-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #0B2D72, #0d3b66);
  color: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.nova-highlight-box {
  background: #0B2D72 !important;
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  font-size: 15px;
  line-height: 1.7;
  box-shadow: 0 15px 35px rgba(20, 93, 160, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .nova-main-heading {
    font-size: 26px;
  }

  .nova-card {
    padding: 22px;
  }
}
/* ===== SECTION WRAPPER ===== */
.edu-section-wrapper{
  width:100%;
  max-width:900px;
  margin:0 auto;
  padding:60px 15px;
}

/* ===== TITLE ===== */
.edu-section-title{
  text-align:center;
  color:#000;
  font-weight:600;
  font-size:2rem;
  margin-bottom:30px;
  letter-spacing:1px;
}

/* ===== TABLE CARD ===== */
.edu-table-box{
  background:#ffffff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* ===== TABLE STYLE ===== */
.edu-data-table{
  margin:0;
}

/* Header */
.edu-data-table thead{
  background:#ff7a00;
}

.edu-data-table thead th{
  color:#ffffff;
  font-weight:600;
  padding:16px;
  letter-spacing:0.5px;
  font-size:14px;
  border:none;
}

/* Body Rows */
.edu-data-table tbody tr{
  background:#ffffff;
  transition:all 0.3s ease;
}

.edu-data-table tbody tr:nth-child(even){
  background:#f8f9fa;
}

.edu-data-table tbody tr:hover{
  background:#eef7ff;
}

/* Table Cells */
.edu-data-table tbody td{
  padding:16px;
  color:#333333;
  font-size:14.5px;
  border-top:1px solid #e9ecef;
}

/* ===== RESPONSIVE FIX ===== */
.table-responsive{
  border-radius:18px;
}

/* Small Devices */
@media (max-width:768px){

  .edu-section-title{
    font-size:1.5rem;
  }

  .edu-data-table thead th,
  .edu-data-table tbody td{
    padding:12px;
    font-size:13.5px;
  }

}
/* Custom Simple Styling */
.syllabus-section {
    padding: 60px 15px;
    background-color: #fff;
}

.syllabus-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
}

.syllabus-table th {
    background-color: #E97F4A;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
}

.syllabus-table td {
    vertical-align: middle;
    font-size: 15px;
}



.gv-premium-section {
  padding: 100px 0;
  background: #fff;
}

.gv-subtitle {
  display: inline-block;
  background: #e0ecff;
  color: #145da0;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.gv-main-title {
  font-size: 36px;
  font-weight: 700;
  color: #0c2d57;
  margin-bottom: 15px;
}

.gv-section-desc {
  font-size: 17px;
  color: #666;
}

.gv-glass-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.gv-glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.gv-highlight {
  background: linear-gradient(135deg, #0c2d57, #145da0);
  color: #fff;
}

.gv-highlight h4,
.gv-highlight p {
  color: #fff;
}

.gv-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #145da0, #0c2d57);
  color: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.gv-highlight .gv-icon-box {
  background: rgba(255, 255, 255, 0.2);
}

.gv-glass-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.gv-glass-card p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #555;
}

.gv-highlight p {
  color: #f1f1f1;
}

/* Responsive */
@media (max-width: 991px) {
  .gv-main-title {
    font-size: 28px;
  }

  .gv-premium-section {
    padding: 70px 0;
  }
}
.gv-career-section {
  padding: 100px 0;
  background: #f2f2f2 !important;
}

.gv-tagline {
  background: #e3edff;
  color: #145da0;
  padding: 6px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.gv-heading {
  font-size: 34px;
  font-weight: 700;
  color: #0c2d57;
}

.gv-box {
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.gv-box:hover {
  transform: translateY(-8px);
}

.gv-pros {
  border-left: 6px solid #28a745;
}

.gv-cons {
  border-left: 6px solid #dc3545;
}

.gv-box h4 {
  font-weight: 700;
  margin-bottom: 20px;
}

.gv-box ul {
  padding-left: 20px;
}

.gv-box ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #555;
}

.gv-career-box {
  background: linear-gradient(135deg, #0c2d57, #145da0);
  padding: 60px;
  border-radius: 25px;
  color: #fff;
}

.gv-career-box h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.gv-career-item {
  background: rgba(255,255,255,0.1);
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
}

.gv-career-item i {
  font-size: 18px;
}

/* Responsive */
@media(max-width:991px){
  .gv-career-section {
    padding: 70px 0;
  }

  .gv-heading {
    font-size: 26px;
  }

  .gv-career-box {
    padding: 40px 25px;
  }
}