* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: #333; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.main-header { background: #fff; padding: 15px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.header-logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.header-logo img { height: 45px; }
.header-brand-name { font-size: 18px; font-weight: 700; color: #0a1628; white-space: nowrap; }
.header-actions { display: flex; gap: 12px; }
.btn-call { display: inline-flex; align-items: center; gap: 8px; background: #008b8b; color: #fff; padding: 10px 22px; border-radius: 6px; text-decoration: none; font-size: 14px; font-weight: 500; transition: 0.3s; }
.btn-call:hover { background: #006464; }
.btn-counselling { display: inline-flex; align-items: center; gap: 8px; background: #0a1628; color: #fff; padding: 10px 22px; border-radius: 6px; text-decoration: none; font-size: 14px; font-weight: 500; transition: 0.3s; }
.btn-counselling:hover { background: #1a2a4a; }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; padding: 80px 0; }
.hero-bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-bg-video video { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-video::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.badge { display: inline-block; background: #d97706; color: #fff; padding: 6px 18px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 15px; }
.hero h1 { font-size: 42px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 15px; }
.hero h1 b { color: #facc15; font-weight: 800; }
.hero > .container > .hero-content > p { font-size: 15px; color: #eee; line-height: 1.7; margin-bottom: 20px; max-width: 540px; }
.hero-features { list-style: none; }
.hero-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #fff; padding: 6px 0; }
.hero-features li i { color: #22c55e; font-size: 16px; }
.hero-stats {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}
.hero-stats div {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
}
.hero-stats div:last-child { border-right: none; }
.hero-stats .num { display: block; font-size: 28px; font-weight: 800; color: #fff; }
.hero-stats .label { display: block; font-size: 11px; font-weight: 600; color: #ddd; letter-spacing: 1px; margin-top: 4px; }

.hero-form { background: #fff; padding: 35px 30px; border-radius: 14px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.hero-form h3 { font-size: 22px; font-weight: 700; color: #0a1628; margin-bottom: 6px; }
.hero-form > p { font-size: 13px; color: #777; margin-bottom: 20px; }
.hero-form input,
.hero-form select { width: 100%; padding: 12px 14px; margin-bottom: 12px; border: 2px solid #e5e7eb; border-radius: 8px; font-size: 14px; outline: none; transition: 0.3s; background: #fff; }
.hero-form select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 36px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E") no-repeat right 12px center; background-size: 12px 8px; }
.hero-form select:invalid { color: #999; }
.hero-form select option { color: #333; }
.hero-form input:focus,
.hero-form select:focus { border-color: #008b8b; box-shadow: 0 0 0 3px rgba(185,28,28,0.1); }
.hero-form button { width: 100%; padding: 14px; background: #008b8b; color: #fff; font-size: 15px; font-weight: 700; border: none; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: 0.3s; }
.hero-form button:hover { background: #006464; transform: translateY(-2px); }
.form-secure { text-align: center; margin-top: 12px; font-size: 12px; color: #999; }
.form-secure i { color: #008b8b; }

/* ===== HIGHLIGHTS ===== */
.highlights { padding: 80px 0; background: #faf9f6; }
.highlights h2 { font-size: 36px; font-weight: 700; color: #0a1628; text-align: center; margin-bottom: 10px; }
.highlights > .container > p { text-align: center; color: #666; font-size: 15px; max-width: 650px; margin: 0 auto 40px; }
.highlights-table { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.06); }
.highlights-table table { width: 100%; border-collapse: collapse; }
.highlights-table th { background: #0a1628; color: #fff; text-align: left; padding: 20px; }
.highlights-table td { padding: 20px; border-bottom: 1px solid #eee; color: #333; font-size: 15px; }
.highlights-table tr:last-child td { border-bottom: none; }

/* ===== WHY CHOOSE INDIA ===== */
.why-choose { padding: 80px 0; background: #fff; }
.why-choose h2 { font-size: 36px; font-weight: 700; color: #0a1628; text-align: center; margin-bottom: 10px; }
.why-choose > .container > p { text-align: center; color: #666; font-size: 15px; max-width: 650px; margin: 0 auto 40px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.feature-card { background: #f8f9fc; border-radius: 12px; padding: 30px; text-align: center; transition: 0.3s; border: 1px solid #eee; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-color: #008b8b; }
.feature-card i { font-size: 36px; color: #008b8b; margin-bottom: 15px; }
.feature-card h3 { font-size: 18px; font-weight: 600; color: #0a1628; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: #666; line-height: 1.6; }

/* ===== ADMISSION PROCESS ===== */
.admission-process { padding: 80px 0; background: #fff; }
.admission-process h2 { font-size: 36px; font-weight: 700; color: #0a1628; text-align: center; margin-bottom: 10px; }
.admission-process > .container > p { text-align: center; color: #666; font-size: 15px; max-width: 650px; margin: 0 auto 40px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.step-card { background: #f8f9fc; border-radius: 12px; padding: 30px; border: 1px solid #eee; }
.step-num { width: 40px; height: 40px; background: #b91c1c; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 20px; }
.step-card h3 { font-size: 18px; font-weight: 600; color: #0a1628; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: #666; line-height: 1.6; }
.step-card ul { padding-left: 20px; font-size: 14px; color: #666; }

/* ===== COUNSELLING TYPES ===== */
.counselling-types { padding: 80px 0; background: #0a1628; color: white; }
.counselling-types h2 { font-size: 36px; font-weight: 700; text-align: center; margin-bottom: 10px; }
.counselling-types > .container > p { text-align: center; color: #ccc; font-size: 15px; max-width: 650px; margin: 0 auto 40px; }
.counselling-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.counselling-card { background: rgba(255, 255, 255, 0.05); padding: 30px; border-radius: 12px; }
.counselling-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 15px; color: #facc15; }
.counselling-card ul { padding-left: 20px; font-size: 14px; color: #ddd; }

/* ===== BEST STATES ===== */
.best-states { padding: 80px 0; background: #fff; }
.best-states h2 { font-size: 36px; font-weight: 700; color: #0a1628; text-align: center; margin-bottom: 10px; }
.best-states > .container > p { text-align: center; color: #666; font-size: 15px; max-width: 650px; margin: 0 auto 40px; }
.states-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.state-card { background: #f8f9fc; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #eee; }
.state-card i { font-size: 24px; color: #008b8b; margin-bottom: 10px; }
.state-card h3 { font-size: 16px; font-weight: 600; color: #0a1628; }
.state-card p { font-size: 13px; color: #666; }

/* ===== SCHOLARSHIPS ===== */
.scholarships { padding: 80px 0; background: #faf9f6; }
.scholarships h2 { font-size: 36px; font-weight: 700; color: #0a1628; text-align: center; margin-bottom: 10px; }
.scholarships > .container > p { text-align: center; color: #666; font-size: 15px; max-width: 650px; margin: 0 auto 40px; }
.scholarships-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.scholar-card { background: #fff; padding: 30px; border-radius: 12px; border: 1px solid #eee; }
.scholar-card i { font-size: 30px; color: #b45309; margin-bottom: 15px; }
.scholar-card h3 { font-size: 18px; font-weight: 600; color: #0a1628; margin-bottom: 10px; }
.scholar-card p { font-size: 14px; color: #666; }

/* ===== GUIDANCE ===== */
.guidance { padding: 80px 0; background: #fff; }
.guidance h2 { font-size: 36px; font-weight: 700; color: #0a1628; text-align: center; margin-bottom: 10px; }
.guidance > .container > p { text-align: center; color: #666; font-size: 15px; max-width: 650px; margin: 0 auto 40px; }
.guidance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.guidance-card { background: #f8f9fc; padding: 30px; border-radius: 12px; min-height: 100%; display: flex; flex-direction: column; }
.guidance-card i { font-size: 30px; color: #b91c1c; margin-bottom: 15px; }
.guidance-card h3 { font-size: 18px; font-weight: 600; color: #0a1628; margin-bottom: 10px; }
.guidance-card p { font-size: 14px; color: #666; margin-top: auto; }

/* ===== ELIGIBILITY ===== */
.eligibility { padding: 80px 0; background: #faf9f6; }
.eligibility h2 { font-size: 36px; font-weight: 700; color: #0a1628; text-align: center; margin-bottom: 10px; }
.eligibility > .container > p { text-align: center; color: #666; font-size: 15px; max-width: 650px; margin: 0 auto 40px; }
.eligibility-flex { display: flex; gap: 40px; max-width: 1000px; margin: 0 auto; }
.card { background: #fff; padding: 30px; border-radius: 12px; border: 1px solid #eee; flex: 1; }
.card h3 { font-size: 20px; font-weight: 600; color: #008b8b; margin-bottom: 20px; }
.card ul { padding-left: 20px; }
.card li { margin-bottom: 10px; color: #666; }

/* ===== UNIVERSITIES ===== */
.universities { padding: 80px 0; background: #f0f4f8; }
.universities h2 { font-size: 36px; font-weight: 700; color: #0a1628; text-align: center; margin-bottom: 10px; }
.universities > .container > p { text-align: center; color: #666; font-size: 15px; max-width: 650px; margin: 0 auto 40px; }
.universities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.uni-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.06); transition: 0.3s; }
.uni-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.uni-card img { width: 100%; height: 200px; object-fit: cover; }
.uni-card h3 { font-size: 16px; font-weight: 600; color: #0a1628; padding: 20px 20px 8px; }
.uni-card p { font-size: 13px; color: #666; padding: 0 20px; line-height: 1.5; }
.uni-card .tuition { font-size: 14px; font-weight: 700; color: #008b8b; padding: 12px 20px 20px; }

/* ===== STUDENT LIFE ===== */
.student-life { padding: 80px 0; background: #fff; }
.student-life h2 { font-size: 36px; font-weight: 700; color: #0a1628; text-align: center; margin-bottom: 10px; }
.student-life > .container > p { text-align: center; color: #666; font-size: 15px; max-width: 650px; margin: 0 auto 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.gallery-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; transition: 0.3s; }
.gallery-grid img:hover { transform: scale(1.03); }

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: #f0f4f8; }
.faq h2 { font-size: 36px; font-weight: 700; color: #0a1628; text-align: center; margin-bottom: 40px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 10px; padding: 20px 25px; margin-bottom: 15px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.faq-item h3 { font-size: 16px; font-weight: 600; color: #0a1628; margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: #666; line-height: 1.6; }

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 80px 0; background: #fff; }
.legal-page h1 { font-size: 36px; font-weight: 700; color: #0a1628; margin-bottom: 10px; }
.legal-page .updated { color: #888; font-size: 14px; margin-bottom: 30px; display: block; }
.legal-page h2 { font-size: 20px; font-weight: 600; color: #0a1628; margin: 30px 0 10px; }
.legal-page p, .legal-page li { font-size: 15px; color: #555; line-height: 1.7; }
.legal-page ul { padding-left: 20px; margin: 10px 0; }
.legal-page ul li { margin-bottom: 6px; }
.legal-page .back-link { display: inline-block; margin-top: 40px; color: #008b8b; text-decoration: none; font-weight: 500; }
.legal-page .back-link:hover { text-decoration: underline; }

/* ===== FINAL CTA ===== */
.final-cta { padding: 80px 0; background: linear-gradient(rgba(10, 22, 40, 0.9), rgba(10, 22, 40, 0.9)), url('https://rmgoe.org/mbbs-in-georgia/img/batumi-shota-rustaveli-state-university1-768x480.webp') no-repeat center center/cover; color: white; text-align: center; }
.cta-content { max-width: 800px; margin: 0 auto; }
.final-cta .badge { display: inline-block; background: #008b8b; color: white; padding: 5px 15px; border-radius: 20px; margin-bottom: 20px; }
.final-cta h2 { font-size: 36px; margin-bottom: 20px; }
.final-cta p { margin-bottom: 30px; color: #ccc; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; }
.btn-primary { background: #008b8b; color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: 600; }
.btn-outline { border: 1px solid white; color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: 600; }

/* ===== FOOTER ===== */
.main-footer { background: #0a1628; color: #fff; padding: 60px 0 0; }
.main-footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 1rem; margin-bottom: 15px; }
.footer-brand img { height: 60px; width: auto; margin-bottom: 0; }
.footer-site-name { font-size: 20px; font-weight: 700; color: #fff; letter-spacing: 0.02em; }
.footer-col p { font-size: 13px; color: #aaa; line-height: 1.7; margin-bottom: 10px; }
.footer-col h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #aaa; text-decoration: none; font-size: 14px; transition: 0.3s; }
.footer-col ul li a:hover { color: #fff; }
.social-links { display: flex; gap: 12px; margin-top: 15px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; color: #fff; text-decoration: none; transition: 0.3s; }
.social-links a:hover { background: #008b8b; }
.footer-bottom { text-align: center; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; }
.footer-bottom p { font-size: 13px; color: #666; }
.footer-disclaimer { font-size: 12px; color: #888; max-width: 900px; margin: 0 auto 15px; line-height: 1.7; }

/* ================================================================
   RESPONSIVE - ALL BREAKPOINTS
   ================================================================ */

/* ---- TABLET (max-width: 991px) ---- */
@media (max-width: 991px) {
    .hero .container { grid-template-columns: 1fr; gap: 30px; }
    .hero h1 { font-size: 32px; }
    .hero-stats { justify-content: center; flex-wrap: wrap; gap: 20px; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .universities-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .counselling-grid { grid-template-columns: repeat(2, 1fr); }
    .states-grid { grid-template-columns: repeat(2, 1fr); }
    .scholarships-grid { grid-template-columns: repeat(2, 1fr); }
    .guidance-grid { grid-template-columns: repeat(2, 1fr); }
    .eligibility-flex { flex-direction: column; }
}

/* ---- MOBILE (max-width: 768px) ---- */
@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .main-header { padding: 10px 0; }
    .header-logo img { height: 30px; }
    .header-brand-name { font-size: 14px; }
    .header-actions { gap: 6px; }
    .btn-call, .btn-counselling { padding: 7px 12px; font-size: 11px; gap: 4px; }
    .btn-call i, .btn-counselling i { font-size: 10px; }

    .hero { padding: 40px 0; }
    .hero h1 { font-size: 26px; }
    .hero > .container > .hero-content > p { font-size: 14px; }
    .hero-features li { font-size: 13px; gap: 8px; }
    .hero-stats { padding: 15px; gap: 8px; }
    .hero-stats div { padding: 6px 10px; flex: 1 1 45%; border-right: none; }
    .hero-stats .num { font-size: 22px; }
    .hero-stats .label { font-size: 10px; }
    .hero-form { padding: 25px 20px; }

    .features-grid,
    .process-grid,
    .universities-grid,
    .gallery-grid,
    .counselling-grid,
    .states-grid,
    .scholarships-grid,
    .guidance-grid { grid-template-columns: 1fr; gap: 15px; }

    .why-choose, .universities, .student-life, .faq,
    .highlights, .admission-process, .counselling-types,
    .best-states, .scholarships, .guidance, .eligibility { padding: 50px 0; }

    .why-choose h2, .universities h2, .student-life h2, .faq h2,
    .highlights h2, .admission-process h2, .counselling-types h2,
    .best-states h2, .scholarships h2, .guidance h2, .eligibility h2 { font-size: 24px; }

    .main-footer .container { grid-template-columns: 1fr; gap: 25px; }

    .final-cta { padding: 50px 0; }
    .final-cta h2 { font-size: 24px; }
    .cta-buttons { flex-direction: column; gap: 12px; }
    .cta-buttons a { text-align: center; }

    .highlights-table { overflow-x: auto; }
    .highlights-table table { min-width: 500px; }
    .highlights-table th,
    .highlights-table td { padding: 12px 15px; font-size: 13px; }

    .feature-card, .step-card, .counselling-card, .state-card,
    .scholar-card, .guidance-card, .card { padding: 20px; }

    .step-num { width: 34px; height: 34px; font-size: 14px; }
    .step-card h3, .feature-card h3, .counselling-card h3,
    .scholar-card h3, .guidance-card h3 { font-size: 16px; }

    .state-card i { font-size: 20px; }
    .state-card h3 { font-size: 14px; }
}

/* ---- SMALL PHONE (max-width: 480px) ---- */
@media (max-width: 480px) {
    .main-header { padding: 8px 0; }
    .main-header .container { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .header-logo { width: 100%; text-align: center; }
    .header-logo a { justify-content: center; }
    .header-logo img { height: 32px; }
    .header-brand-name { font-size: 13px; }
    .header-actions { width: 100%; justify-content: center; gap: 6px; }
    .btn-call, .btn-counselling { padding: 8px 12px; font-size: 11px; flex: 1; justify-content: center; }
    .btn-call span, .btn-counselling span { display: none; }

    .hero h1 { font-size: 22px; }
    .hero-stats div { flex: 1 1 100%; }
    .hero-stats div { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 8px 0; }
    .hero-stats div:last-child { border-bottom: none; }

    .uni-card img { height: 160px; }
    .gallery-grid img { height: 160px; }

    .process-grid { gap: 12px; }
}

/* ===== THANKYOU PAGE ===== */
.thankyouSection {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
}
.thankyouBox {
  background: #fff;
  border-radius: 16px;
  padding: 50px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.thankyouLogo {
  height: 60px;
  margin-bottom: 24px;
}
.thankyouTitle {
  font-size: 28px;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 12px;
}
.thankyouMessage {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
}
.thankyouActions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
}
.btnWhatsApp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}
.btnWhatsApp:hover {
  background: #1da851;
  transform: translateY(-2px);
}
.btnCall {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #008b8b;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s;
}
.btnCall:hover {
  background: #006464;
  transform: translateY(-2px);
}
.thankyouFooter {
  font-size: 13px;
  color: #999;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
@media (max-width: 480px) {
  .thankyouBox { padding: 35px 24px; }
  .thankyouTitle { font-size: 22px; }
  .thankyouMessage { font-size: 14px; }
}
