/* ========== Base Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #383838;
  background-color: #fff;
}

.container {
  max-width: 1400px !important;
  margin: 0 auto;
  padding: 0 20px;
}



.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px !important;
    
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    position: fixed;
    top: 100px;
    left: -100%;
    background-color: #f5f5f5 !important; /* New background color */
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 1rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu a {
    color: #383838 !important; /* default text color on mobile */
    padding: 14px 20px;
    border-bottom: 1px solid #ddd;
  }

  .nav-menu a.active {
    background-color: #f5f5f5 !important;
    color: #d32f2f !important; /* red text for active */
  }

  .menu-toggle {
    display: flex;}
    

        
  }



/* Mobile-specific styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background: white;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 10px 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-bar .container {
        position: relative;
    }
}



/* ========== Header ========== */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
  background-color: #fff;
}

.logo-image {
  height: 80px;
  width: auto;
  
}

.nav-bar {
  background-color: #4a4a4a;
  padding: 0 20px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 16px 50px;
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.nav-menu a:hover {
  background-color: #555;
}

.nav-menu a.active {
  background-color: #333;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px 0;
}

/* ========== Hero Section ========== */
.hero {
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 100px;
  color: #fff;
}

.hero-banner,
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  z-index: 1;
}

.banner-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:none !important;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  max-width: 600px;
}

.cta-button {
  background: #fff;
  color: #d32f2f;
  padding: 15px 50px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
}

/* ========== Sections ========== */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.section-title.left-red {
  text-align: left;
  color: #d32f2f;
}

/* ========== Grid and Cards ========== */
.visa-content,
.apply-container,
.pillars-grid,
.process-grid,
.offering-grid,
.network-grid,
.tie-info {
  display: grid;
  gap: 2rem;
}

.visa-content {
  grid-template-columns: 1fr 2fr;
  align-items: center;
}

.visa-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}

.process-grid,
.pillars-grid,
.offering-grid,
.network-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-card,
.pillar-card,
.offering-card{
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  border: 2px solid #d32f2f;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover,
.pillar-card:hover,
.offering-card:hover,
.network-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.process-icon img,
.pillar-icon img,
.offering-icon,
.network-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  color: #383838;
  margin-bottom: 5px;
}

/* ========== Footer ========== */
footer {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 a {
  color: #d32f2f;
  text-decoration: none;
}

.footer-section a {
  color: #383838;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #d32f2f;
}

.footer-section p {
  color: #383838;
  line-height: 1.6;
}

.copyright {
  text-align: center;
  color: #383838;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .pillars-grid,
  .process-grid,
  .offering-grid,
  .network-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visa-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 300px;
    margin-top: 0px;
  }

  .header-top {
    flex-direction: column;
    gap: 10px;
  }

  .nav-menu {
    flex-direction: column;
    position: fixed;
    top: 100px;
    left: -100%;
    background-color: #4a4a4a;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .pillars-grid,
  .process-grid,
  .offering-grid,
  .network-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 70vh;
  }

  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .section {
    padding: 2rem 0;
  }
}


/* Form Styling */
input[type=text],
input[type=email],
input[type=number],
input[type=url],
textarea,
select {
    padding: 10px;
    width: 100%;
    font-size: 14px;
    font-family: inherit;
    line-height: 24px;
    color: #313131;
    background-color: #f2f2f2;
    border: none;
    
}

label {
    margin-bottom: 5px;
    margin-top:10px;
    display: inline-block;
}
apply{
    margin-top:50px !important;
}

select {
    height: 44px;
}

/* Submit Button */
input[type="submit"] {
    background-color: #d32f2f;
    color: white;
    padding: 12px 50px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border-radius: 10px;
}


form label {
    margin-bottom: 5px;
    font-weight: 500;
}

input[type=text],
input[type=email],
input[type=number],
input[type=url],
textarea,
select {
    padding: 10px;
    width: 100%;
    font-size: 14px;
    font-family: inherit;
    line-height: 24px;
    color: #313131;
    background-color: #f2f2f2;
    border: none;
    border-radius: 4px;
}

textarea {
    resize: vertical;
}

input[type="submit"] {
    background-color: #d32f2f;
    color: white;
    padding: 12px 50px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border-radius: 10px;
    
   
}

input[type="submit"]:hover {
    background-color: #b71c1c;
}

/* Contact Info */
.contact-info h3 {
    color: #d32f2f;
    font-size: 25px;
    margin-bottom: 10px;
}

.contact-info p {
    color: #383838;
    margin-bottom: 5px;
}

.contact-info a {
    color: #383838;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}



main {
    flex: 1;
    margin-top: 0px;
    padding: 40px 0;
    background-color: #fff;
}

/* FAQ Section */
.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

.faq-header {
    text-align: left;
    margin-bottom: 40px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #dc3545;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #383838;
    font-weight: 300;
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 25px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.question {
    font-size: 1.3rem;
    font-weight: 700;
    color: #383838;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.question-number {
    color: #dc3545;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}

.question-text {
    flex: 1;
}

.answer {
    margin-left: 40px;
    color: #555;
}

.answer p {
    margin-bottom: 12px;
}

.answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.answer li {
    margin-bottom: 8px;
    list-style-type: disc;
}

.answer ul ul {
    margin: 8px 0;
    padding-left: 25px;
}

.answer ul ul li {
    list-style-type: circle;
    margin-bottom: 5px;
}

.highlight {
    font-weight: 600;
    color: #2c3e50;
}

.bold {
    font-weight: 700;
    color: #495057;
}

.amount {
    font-weight: 600;
    color: #383838;
}

.timeframe {
    font-weight: 600;
    color: #383838;
}