 :root {
    --teal:       #015A66;
    --teal-mid:   #028090;
    --teal-light: #EAF4F5;
    --teal-acc:   #00A896;
    --warm:       #B8860B;
    --warm-light: #FDF1EB;
    --dark:       #015A66;
    --mid:        #4A5568;
    --light:      #F8FAFA;
    --black:       #0D1B1E;
    --white:      #FFFFFF;
    --border:     #D1E8EA;
  }
  /* HERO */
  .hero {
    min-height: 70vh; background: var(--dark);
    display: flex; align-items: center; overflow: hidden;
    padding: 120px 40px 80px; position: relative;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 70% at 90% 30%, rgba(0,168,150,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 60% 40% at 0% 80%, rgba(212,98,42,0.08) 0%, transparent 50%);
  }

/* CTA */
  .cta-strip {
    background: #075e6920;
    padding: 80px 40px;
  }
  .cta-strip h2 { font-family: 'Fraunces', serif; font-size: clamp(28px, 4vw, 44px); color: var(--white); margin-bottom: 16px; }
  .cta-strip h2 em { font-style: italic; color: var(--teal-acc); }
  .cta-strip p { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 40px; }
  .cta-btn { display: inline-block; background: var(--warm); color: var(--black); font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 17px; padding: 18px 48px; border-radius: 4px; text-decoration: none; transition: all 0.2s; }
  .cta-btn:hover { background: #b8860b;
    color: var(--white); }

/* FORM */
  .form-card {
    background: var(--white); border-radius: 8px;
    padding: 40px 36px; box-shadow: 0 32px 80px rgba(0,0,0,0.4);
    position: relative;
  }
  .form-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--warm), var(--teal-acc));
    border-radius: 8px 8px 0 0;
  }
  .form-title { font-family: 'Fraunces', serif; font-size: 22px; color: var(--teal); margin-bottom: 6px; font-weight: 700;}
  .form-sub { font-size: 13px; color: var(--mid); margin-bottom: 28px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--teal); margin-bottom: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
  .form-group input, .form-group select {
    width: 100%; padding: 12px 14px;
    border: 1.5px solid var(--border); border-radius: 4px;
    font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--dark);
    background: var(--white); outline: none; transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus { border-color: var(--teal-acc); }
  .form-submit {
    width: 100%; padding: 16px;
    background: var(--teal); color: var(--white);
    font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600;
    border: none; border-radius: 4px; cursor: pointer;
    transition: all 0.2s; margin-top: 8px; letter-spacing: 0.3px;
  }
  .form-submit:hover { background: #b8860b;
    color: var(--white); }
  .form-note { text-align: center; font-size: 12px; color: var(--mid); margin-top: 12px; }


   /* ── GUARANTEE ── */
  .guarantee {}
  .guarantee .section-label { color: var(--gold); }
  .guarantee .section-title { color: var(--dark); }
  .guarantee .section-sub { color: rgba(255,255,255,0.7); }

  .guarantee-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
    margin-top: 60px;
  }
  .guarantee-card {
    background: #015A6620;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px; padding: 36px 32px;
    position: relative; overflow: hidden;
  }
  .guarantee-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--dark); margin-bottom: 16px; }
  .guarantee-card p { font-size: 15px; color: var(--dark); line-height: 1.8; margin-bottom: 0px;}
  .guarantee-card .highlight {
    display: inline-block; background: rgba(201,151,42,0.2);
    border-left: 3px solid var(--gold); padding: 12px 16px;
    margin-top: 20px; font-size: 14px; color: var(--gold);
    font-weight: 500; border-radius: 0 4px 4px 0;
  }
   /* SECTIONS */
  section { padding: 80px 40px; }
  .container { max-width: 1100px; margin: 0 auto; }
  .section-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-acc); margin-bottom: 12px; }
  .section-title { font-family: 'Fraunces', serif; font-size: clamp(28px, 3.5vw, 42px); color: var(--dark); line-height: 1.2; margin-bottom: 16px; font-weight:700 }
  .section-title em { font-style: italic; color: var(--teal); }
  .section-sub { font-size: 17px; color: var(--mid); line-height: 1.7; max-width: 600px; }


/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
}

.iti {
  width: 100%;
}

.iti__flag-container {
  margin-right: 8px;
}
/* ===== ABOUT PAGE ISOLATION ===== */
.gl-abt-page {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #ffffff;
}

/* ===== BANNER ===== */
.gl-abt-banner {
    background: #f6f7f9;
    padding:0px;
    text-align: center;
	display: flex;
    align-items: center;
}
button.abt-btn {
    background-color: #0d2a72;
    color: #fff;
    border: 1px solid #0d2a72;
    padding: 8px 12px;
    border-radius: 10px;
}
.gl-abt-banner-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.gl-abt-title {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}
.flex-box {
    display: flex;
	gap:20px;
}
.flex-box-box {
    display: flex;
	gap:20px;
}
img.abt-img {
    border-radius: 10px;
}
.section-box {
    background-color: #DDE1ED;
	padding:50px 30px;
}
.section-box-white {
	padding:80px 40px;
}

/* MAIN SECTION */
.demo-form-section {
    background: #d6dcee;
    padding: 50px 0 0;
    font-family: 'Poppins', sans-serif;
}

/* FLEX WRAPPER */
.demo-form-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.demo-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}

/* FORM */
.demo-form {
    width: 100%;
}

.demo-row {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.demo-field {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.demo-field.full {
    width: 100%;
}

/* LABELS */
.demo-field label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #222;
	font-weight: 500;
}

/* INPUT + SELECT FIELDS */
.demo-field input,
.demo-field select {
    padding: 12px 15px;
    border: none;
    outline: none;
    border-radius: 8px;
    font-size: 15px;
    background: #fff;
}

/* PHONE FIELD */
.phone-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
}

.phone-flag {
    font-size: 18px;
    margin-right: 8px;
    opacity: 0.8;
}

.phone-wrapper input {
    border: none;
    background: transparent;
    width: 100%;
    padding: 12px;
}

/* SUBMIT BUTTON */
.demo-submit-btn {
    background: #153b8c;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
}

.gl-ielts-pkl-section {
    padding: 50px 30px;
}
.gl-ielts-pkl-container {
    margin: auto;
    padding: 0 15px;
}
.gl-ielts-pkl-grey {
    background: #DDE1ED;
}

.contact-map iframe{
	height:100%;
	width:100%;
	border-radius:10px;
}


/* ===== CONTENT ===== */
.gl-abt-content {
    max-width: 100%;
    margin: 0 auto;
    padding:0px;
}
.abt-box {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: #fff;
    padding: 16px 20px;
    border-radius: 10px;
}
.gl-abt-heading {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.gl-abt-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: #444;
    margin-bottom: 0px;
}

/* ===== LIST ===== */
.gl-abt-list {
    margin-top: 10px;
    padding-left: 18px;
}

.gl-abt-list li {
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
    list-style-type: disc;
}
.abt-box-col1{
	width:50%;
}
.abt-box-col2{
	width:50%;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero { padding: 100px 20px 60px; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    section { padding: 40px 20px; }
    .guarantee-body { grid-template-columns: 1fr; gap: 24px; }
	.guarantee-grid {margin-top: 30px; }
	.cta-strip { padding: 40px 20px; }
	.whatsapp-float {
    display:none;
}
	
	
	
	
	
    .gl-abt-title {
        font-size: 26px;
    }

    .gl-abt-heading {
        font-size: 20px;
    }
	.flex-box {
    flex-direction: column;
}
.abt-box-col1 {
    width: 100%;
}
.abt-box-col2 {
    width: 100%;
}
.contact-map iframe {
    height: 300px;
}
.section-box-white {
    padding: 40px 20px;
}
.gl-ielts-pkl-section {
    padding: 20px 10px;
}
.demo-form-title {
    font-size: 22px;
}
.demo-field input, .demo-field select {
    padding: 10px 8px;
    font-size: 12px;
}
.abt-box {
    padding: 10px 10px;
}
.flex-box-box .col-text span {
    font-size: 16px !important;
}
section.gl-abt-banner {
    height: 30vh !important;
}
}

 @media (max-width: 575px) {
	  .hero {
    min-height: 60vh;
}
    .cta-strip {
        padding: 40px 6px;
    }
	.form-card {
    padding: 20px 20px;;
}
.guarantee-grid {
    margin-top: 30px;
}
section {
    padding: 40px 6px;
}
}
