* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
     overflow-x: hidden;
    overflow-y: scroll;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}
.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1300px !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #C62127;
    color: white;
}

.btn-primary:hover {
    background: #EB1C25;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

.btn-outline {
    background: transparent;
    color: #C62127;
    border: 2px solid #C62127;
}

.btn-outline:hover {
    background: #C62127;
    color: white;
}

.btn-outline-small {
    padding: 8px 16px;
    font-size: 0.875rem;
    background: #2B2B2B;
    color: #C62127;
    border: 1px solid #C62127;
}

.btn-outline-small:hover {
    background: #C62127;
    color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header */

    header {
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
      background: #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      z-index: 1000;
    }

    .containerhed {
      max-width: 1200px;
      margin: auto;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
       display: flex;
    }

    /* Logo */
    .logo img {
      height: 65px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    nav {
        display: flex;
      gap: 25px;
      align-items: center;
    }

    nav a,
    nav button {
      position: relative;
      background: none;
      border: none;
      font-size: 16px;
      cursor: pointer;
      color: #000;
      font-weight: 600;
      padding: 5px 0;
      text-decoration: none;
    }

    /* underline animation */
    nav a::after,
    nav button::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -3px;
      width: 0;
      height: 2px;
      background: #e60000;
      transition: width .3s ease;
    }

    nav a:hover::after,
    nav button:hover::after,
    nav a.active::after,
    nav button.active::after {
      width: 100%;
    }

    nav a:hover,
    nav button:hover,
    nav a.active,
    nav button.active {
      color: #e60000;
    }

    /* Dropdown */
    .dropdown,
    .mega-dropdown {
      position: relative;
    }

    .dropdown-menu,
    .mega-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
      border-radius: 4px;
      opacity: 0;
      visibility: hidden;
      transition: .3s ease;
      z-index: 999;
    }

    .dropdown:hover>.dropdown-menu,
    .mega-dropdown:hover>.mega-menu {
      opacity: 1;
      visibility: visible;
    }

    .dropdown-menu a,
    .dropdown-menu button {
      display: block;
      padding: 10px 15px;
      text-decoration: none;
      color: #333;
      font-size: 15px;
      text-align: left;
      background: none;
      border: none;
      width: 210px;
      cursor: pointer;
    }

    .dropdown-menu a:hover,
    .dropdown-menu button:hover {
      background: #f9f9f9;
      color: #e60000;
    }

    /* Mega Menu Left Side */
    .mega-menu {
      top: 0;
      right: 100%;
      left: auto;
      width: 600px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding: 20px;
    }

    .mega-menu h4 {
      margin-bottom: 10px;
      font-size: 14px;
      font-weight: bold;
      color: #e60000;
    }

    .mega-menu a {
      display: block;
      font-size: 14px;
      padding: 5px 0;
      text-decoration: none;
      color: #333;
      width: 150px;
    }

    .mega-menu a:hover {
      color: #e60000;
    }

/* Container flex */
header .containerhed {
  display: flex;
  padding: 12px 20px;
}

/* Hamburger */
.menu-btn {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  display: none; /* hidden desktop */
}

/* Mobile menu (hidden by default) */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  border-top: 2px solid #e60000;
}

/* When open, allow scrolling */
.mobile-menu.open {
  max-height: 80vh;   /* takes up to 80% of screen height */
  overflow-y: auto;   /* vertical scroll if needed */
}

/* Mobile menu links/buttons */
.mobile-menu a,
.mobile-menu button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  text-align: left;
  border: none;
  background: none;
  font-size: 16px;
  cursor: pointer;
  color: #000;
  text-decoration: none;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  background: #f9f9f9;
  color: #e60000;
}

/* Accordion dropdowns */
.accordion {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: #f9f9f9;
}
.accordion.open {
  max-height: 600px;
}

/* Accordion titles inside mobile */
.mobile-category-title {
  padding: 8px 20px;
  color: #e60000;
  font-size: 14px;
  font-weight: bold;
}

/* Responsive */
@media (max-width:768px) {
  nav { display: none; }
  .menu-btn { display: block; 
        position: absolute;
        top: 25px;
        right: 15px;}
}

/* Hero Section */
.unique-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 20px 20px;
    background-image: url(./images/headerbg.webp);
}


.unique-hero .hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    color: white;
}

.unique-hero h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.unique-hero p {
    font-size: 1.25rem;
    margin-bottom: 4rem;
    color: #cccccc;
}

.card-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 5rem;
}

.card-item {
    position: relative;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 3rem 2rem;
    width: 380px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.card-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(198, 33, 39, 0.2) 0%, rgba(198, 33, 39, 0) 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.card-item:hover::before {
    transform: scale(1);
}

.card-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-content i {
    font-size: 3rem;
    color: #C62127;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.card-item:hover .card-content i {
    color: #fff;
}

.card-content h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 1rem;
    color: #aaaaaa;
    margin-bottom: 2rem;
}

.card-content .btn-primary {
    background: #C62127;
    color: white;
    width: 100%;
    justify-content: center;
    border: none;
}

.card-content .btn-primary:hover {
    background: #EB1C25;
}

/* Specific card effects */
.card-education {
    border-top: 5px solid #C62127;
}

.card-migration {
    border-bottom: 5px solid #C62127;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .card-grid {
        flex-direction: column;
        align-items: center;
    }

    .card-item {
        width: 100%;
        max-width: 400px;
    }
}
.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #EB1C25;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}
/* =========================
   Hero Section - Mobile View
========================= */
@media (max-width: 768px) {
  .unique-hero {
    height: auto;                 /* let content decide height */
    padding: 80px 20px 60px;      /* breathing space */
    text-align: center;
  }

  .hero-content h2 {
    font-size: 1.8rem;            /* smaller heading */
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .card-grid {
    flex-direction: column;       /* stack cards vertically */
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .card-item {
    width: 100%;
    max-width: 360px;             /* centered, smaller width */
    padding: 1.5rem;
  }

  .card-content i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .card-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .card-content .btn-primary {
    padding: 10px 16px;
    font-size: 0.95rem;
  }
}

/* Section Styles */
section {
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #CCCCCC;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #2B2B2B, #2B2B2B);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #CCCCCC;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.mini-stat {
    text-align: center;
}

.mini-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #C62127;
}

.mini-stat-label {
    font-size: 0.875rem;
    color: #CCCCCC;
}
.features {
    background-color: #1e1e1e; /* Lighter black for contrast */
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-item {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid gray;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 77, 77, 0.2);
}

.feature-item i {
    font-size: 3em;
    color: #C62127;
    margin-bottom: 1rem;
}
.feature-item p{
    color: #f5f5f5;
}
.feature-item h3 {
    font-size: 1.5em;
    margin-bottom: 0.5rem;
    color: white;
}

/* Why Choose Us Section */
.why-choose {
    background: linear-gradient(135deg, #1a1a1a, #c62127);  
    color: white;
    padding: 6rem 0;
    text-align: center;
}
.why-choose .card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.why-choose .card-item {
    position: relative;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 3rem 2rem;
    width: 380px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.why-choose .card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}



/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .why-choose {
        padding: 4rem 0;
    }
}

/* Counselling Section */
.counselling {
 background: linear-gradient(135deg, #2B2B2B, #2B2B2B);

}

.counselling-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 1;
}

.counselling-benefits h3 {
    color: #C62127;
    margin-bottom: 2rem;
    opacity: 1;
}

.benefits-list {
    margin-bottom: 2rem;
    opacity: 1;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 1;
}

.benefit-icon {
    background: #2B2B2B;
    color: #C62127;
    padding: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 1;
}

.benefit-text h4 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #CCCCCC;
    opacity: 1;
}

.session-details {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.session-details h4 {
    color: #9E1D2F;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    color: black;
    margin-bottom: 0.75rem;
    opacity: 1;
}

.detail-item i {
    color: #C62127;
    margin-right: 0.75rem;
    width: 20px;
    opacity: 1;
}

.offer-banner {
    background: linear-gradient(135deg, #C62127, #0EA5E9);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    opacity: 1;
}

.offer-banner h4 {
    margin-bottom: 0.5rem;
}

.offer-banner p {
    margin-bottom: 1rem;
}

.offer-banner small {
    opacity: 0.9;
}

.counselling-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.counselling-form h3 {
    color: #9E1D2F;
    margin-bottom: 1.5rem;
    opacity: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #C62127;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #AAAAAA;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    opacity: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C62127;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    opacity: 1;
}

.form-disclaimer {
    font-size: 0.875rem;
    color: #CCCCCC;
    text-align: center;
    margin-top: 1rem;
}

/* FAQ Section */
.faq {
    background:  linear-gradient(135deg, #1a1a1a, #c62127);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #2B2B2B;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #C62127;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
     color: #C62127;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: black;
    line-height: 1.6;
}

.faq-help {
    margin-top: 4rem;
    text-align: center;
}
.faq-item.active .faq-question {
 color: #C62127;
}
.faq-item.active {
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.help-card {
    background: linear-gradient(135deg, #2B2B2B, #2B2B2B);
    padding: 3rem;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.help-card h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.help-card p {
    color: #CCCCCC;
    margin-bottom: 2rem;
}

.help-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
/* Footer wrapper */
.footer {
  background: #1a1a1a;
  color: #ddd;
  padding: 3rem 2rem 1rem;
  font-family: 'Inter', sans-serif;
}

/* 4-column grid */
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 0 auto 2rem auto;
  width: 100%;
}

/* Section headings */
.footer-section h4,
.footer-social h4,
.newsletter-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

/* Logo */
.footer-logo img {
  width: 150px;
  margin-bottom: 1rem;
}

/* Contact items */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}
.contact-item i {
  margin-right: 0.6rem;
  color: #C62127;
  font-size: 1rem;
}

/* Links */
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 0.6rem;
}
.footer-section ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.footer-section ul li a:hover {
  color: #C62127;
}

/* Social icons */
.social-links {
  display: flex;
  gap: 0.8rem;
}
.social-links img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}
.social-links img:hover {
  transform: scale(1.1);
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 0.95rem;
}
.newsletter-form button {
  padding: 10px 16px;
  background: #C62127;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.newsletter-form button:hover {
  background: #EB1C25;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;  /* left & right */
  align-items: center;
  flex-wrap: wrap;  /* so it stacks on small screens */
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom .footer-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom .footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom .footer-links a:hover {
  color: #C62127;
}


/* =======================
   Responsive 
======================= */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-item {
    justify-content: left;
  }
  .social-links {
    justify-content: center;
        padding-bottom: 30px;

  }
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  .newsletter-form input {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
  }
  .footer-bottom .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}


@media (max-width: 768px) {
   
 /* =========================
   Mobile Responsive Styles
========================= */
@media (max-width: 768px) {

  /* General sections */
  section {
    padding: 3rem 1.2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .section-header p {
    font-size: 1rem;
  }

  /* About section */
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-text h3 {
    font-size: 1.3rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 1rem;
  }

  /* Features grid */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-item {
    padding: 1.5rem;
  }

  /* Why Choose Us cards */
  .why-choose .card-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .why-choose .card-item {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    padding: 1.5rem;
  }

  /* Counselling */
  .counselling-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .counselling-form {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-container {
    padding: 0 1rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
    padding: 0 1rem 1rem;
  }
}
}
/* contact page */
.creative-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

/* Contact info (left side) */
.creative-contact-info {
  background: url('https://images.pexels.com/photos/3184405/pexels-photo-3184405.jpeg') center/cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
}

.creative-contact-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
}

.creative-contact-overlay h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.creative-contact-overlay p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.creative-contact-details {
  list-style: none;
  padding: 0;
}

.creative-contact-details li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.creative-contact-details li i {
  margin-right: 0.75rem;
  color: #C62127;
  font-size: 1.2rem;
}

/* Contact form (right side) */
.creative-contact-form {
  padding: 3rem;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.creative-contact-form h2 {
  margin-bottom: 2rem;
  color: #333;
}

.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background: none;
}

.input-group label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: #f9f9f9;
  padding: 0 5px;
  color: #777;
  font-size: 0.9rem;
  transition: 0.3s ease;
  pointer-events: none;
}

/* Floating label effect */
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 0.75rem;
  color: #C62127;
}

.submit-button {
  background: #C62127;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-button:hover {
  background: #EB1C25;
}

/* =========================
   Mobile Responsive
========================= */
@media (max-width: 768px) {
  .creative-contact-wrapper {
    grid-template-columns: 1fr;
  }

  .creative-contact-info,
  .creative-contact-form {
    padding: 2rem 1.5rem;
  }

  .creative-contact-overlay h1 {
    font-size: 1.6rem;
  }

  .creative-contact-overlay p {
    font-size: 0.95rem;
  }

  .creative-contact-details li {
    font-size: 0.9rem;
  }

  .creative-contact-form h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  .submit-button {
    width: 100%; /* full width button on mobile */
  }
}
/* Map Section */
.map-section {
    padding: 4rem 2rem;
    background-color: #121212;
    text-align: center;
}

.map-container {
    width: 100%;
    height: 400px;
    border: 2px solid #ff4d4d;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.map-section h2 {
    font-size: 2.5em;
    color: #ff4d4d;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .creative-contact-wrapper {
        flex-direction: column;
    }
    .creative-contact-overlay {
        padding: 2rem;
    }
    .creative-contact-overlay h1 {
        font-size: 2.5em;
    }
    .creative-contact-details li {
        flex-direction: column;
        align-items: center;
    }
    .creative-contact-details li i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}
/* educatio page */
.education-visa-details {
            background-color: #1e1e1e;
            padding: 3rem 2rem;
            border-top: 2px solid #C62127;
            border-radius: 8px;
        }

        .education-visa-details h2 {
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 2rem;
            border-bottom: 2px solid #333;
            /* Line under heading */
            padding-bottom: 1rem;
        }

        .education-visa-details h3 {
            color: #ff4d4d;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .education-visa-details ul {
            margin-left: 1.5rem;
            list-style: disc;
            color: #f5f5f5;
        }

        .education-visa-details p {
            color: #f5f5f5;
            margin-bottom: 0.8rem;
        }

        .background {
            margin: 10rem 12rem;
            background-color: #111827 !important;
        }

        .disclaimer {
            margin-top: 2rem;
            padding: 1rem;
            background-color: #E86100;
            border-left: 4px solid #C62127;
            font-size: 0.95rem;
            color: #cccccc;
            font-style: italic;
        }

        /* open post*/
          /* ---------- Full Post Content ---------- */
.full-post-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background: #111827; /* dark background */
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  color: #fff;
}

/* Back button */
.blog-btn-back {
  background-color: #111827;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}
.blog-btn-back:hover {
  background-color: #C62127;
  box-shadow: 0 4px 12px rgba(198, 33, 39, 0.4);
}

/* Post image */
.post-image {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
  padding-top: 35px;
}

/* Title */
.post-title {
  font-size: 2.5rem;
  color: #C62127;
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Excerpt */
.post-excerpt {
  font-size: 1.1rem;
  color: #f5f5f5;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Section Headings */
.post-heading {
  color: #C62127;
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

/* Lists */
.post-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #f1f1f1;
}
.post-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.post-list li strong {
  color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .full-post-content {
    padding: 1.2rem;
    max-width: 100%;
  }
  .post-title {
    font-size: 1.8rem;
  }
  .post-excerpt {
    font-size: 1rem;
  }
  .post-heading {
    font-size: 1.3rem;
  }
  .blog-btn-back {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
  }
  .post-image {
    max-height: 300px;
    padding-top: 15px;
  }
}

@media (max-width: 480px) {
  .post-title {
    font-size: 1.5rem;
  }
  .post-heading {
    font-size: 1.1rem;
  }
  .post-excerpt,
  .post-list li {
    font-size: 0.95rem;
  }
}


.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight,
.goog-text-highlight:hover {
  display: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
/* Kill Google top bar iframe completely */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
body {
  top: 0px !important;
  position: static !important;
}

/* Also hide weird white strip from Google */
.goog-te-banner-frame {
  display: none !important;
}

 
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    visibility: hidden !important;
    display: none !important;
}
    /* Custom language dropdown */
    #custom_translate {
      padding: 6px 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 14px;
      cursor: pointer;
    }

    .goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight,
.goog-text-highlight:hover {
  display: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
    #custom_translate:hover {
      border-color: #999;
    }
/* Mobile-friendly navbar */
@media (max-width: 768px) {
  nav.navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  #custom_translate {
    margin-top: 10px;
    width: 100%;
  }
}
