/* Import Professional Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    /* --primary-color: #1A5F7A;
    --secondary-color: #159895;
    --accent-color: #57C5B6;
    --text-primary: #2C3333;
    --text-secondary: #4F4F4F;
    --background-light: #F8F9FA;
    --background-white: #ebeef1; */

    --primary-color: #1A5F7A; /* Deep Blue - Matches the first color of the gradient */
    --secondary-color: #FF9F80; /* Light Coral - Matches the second color of the gradient */
    --accent-color: #57C5B6; /* Aqua/Light Teal */
    --text-primary: #2C3333; /* Dark Gray */
    --text-secondary: #4F4F4F; /* Subtle Gray */
    --background-light: #F8F9FA; /* Light Gray */
    --background-white: #ebeef1; /* Light Off-White */
    --gradient-start: rgba(26, 95, 122, 0.9); /* Deep Blue for Gradient (matches primary-color) */
    --gradient-end: rgba(255, 159, 128, 0.9); 
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background-light);
}

/* Typography Hierarchy */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--secondary-color);
}

h3 {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}
.nav-container .logo-container .training-logo
{
    width: 200px;
    height: 120px;
}
.nav-container .logo-container .consultancy-logo
{
    width: 130px;
    height: 120px;
}
/* Navbar Professional Styling */
/* General Styles */
/* General Styles */
nav {
    position: relative;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 7%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  
  .nav-menu li {
    margin: 0;
    padding: 0;
  }
  
  .nav-left,
  .nav-right {
    display: flex;
    gap: 2rem;
  }
  
  .nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
  }
  
  .nav-menu a:hover {
    color: var(--primary-color);
  }
  
  .nav-menu a:hover::after {
    width: 100%;
  }
  
  /* Mobile Responsiveness */
  .nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    z-index: 1010;
  }
  
  @media (max-width: 768px) {
    .nav-container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav-toggle {
      display: block;
      align-self: flex-end;
      margin-bottom: 1rem;
    }
  
    .nav-menu {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem;
      width: 100%;
      display: none;
      background-color: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
      border-radius: 5px;
    }
  
    .nav-menu.show {
      display: flex;
    }
  
    .nav-menu li {
      width: 100%;
    }
  
    .nav-menu a {
      width: 100%;
      padding: 0.8rem 1rem;
      font-size: 1rem;
      text-align: left;
    }
  }

/* Hero Section Professional Design */
#home {
    position: relative;

}
.hero {

    background: linear-gradient(135deg, rgba(33, 59, 94, 1), rgba(255, 159, 128, 0.3)), url('../photos/5262813.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding-top: 7rem;
    padding-bottom: 2rem;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 4rem;
    font-weight: 700;
}

.hero h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 300;
}



/* our mission */
/* General Section Styling */
#our-mission {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f9f9f9;
}

#our-mission h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #333;
}

/* Container for the mission items */
.mission-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: wrap;
    
}

/* Individual Mission Item Styles */
.mission-item {
    background: var(--primary-color);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Mission Item Heading and Text */
.mission-item h3 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--background-light);
}

.mission-item p {
    font-size: 1rem;
    color: var(--background-light);
}

@media (max-width: 768px) {
    .mission-grid {
      grid-template-columns: 1fr;
    }
  
    .mission-item {
      width: 100%;
    }
  }


/* why choose us */
#why-choose-us {
    background: var(--primary-color);
    padding: 4rem 2rem;
    text-align: center;
}

#why-choose-us h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--background-light);
}

.why-choose-us .choose-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.choose-item {
    /* background: #f2f2f2; */
    padding: 2rem;
    border-radius: 15px;
    /* box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease; */
    text-align: center;
    width: 250px;
    margin: 1rem;
}

/* .choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2), -4px -4px 15px rgba(255, 255, 255, 0.8);
} */

.choose-item i {
    font-size: 4rem;
    color: var(--background-light);
    margin-bottom: 1.5rem;
}

.choose-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--background-light);
}

.choose-item p {
    font-size: 1rem;
    color: var(--background-light);
}












/* Services Grid Professional - Updated */
.services {
    display: flex;
    justify-content: center; /* Horizontally centers the grid */
    align-items: center; /* Vertically centers the grid if there is extra space */
    flex-direction: column; /* Ensures content is stacked properly */
    padding: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
    justify-content: center;
    margin: 0 auto;
    gap: 4rem;
    padding: 3rem 0;
    max-width: 50vw;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Adjust to 2 columns for tablet */
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr; /* Adjust to 1 column for mobile */
    }
}

.service-card {
    background: #f2f2f2;
    padding: 1.5rem;
    text-align: center;
    border-radius: 20px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15), -10px -10px 20px rgba(255, 255, 255, 0.85); /* Stronger shadow on hover */
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-top: 1rem;
    color: var(--text-dark);
    text-transform: uppercase;
    font-family: 'Montserrat';
    font-weight: 600;
}


/* Responsive Typography */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-left, .nav-right {
        flex-direction: column;
        align-items: center;
    }
}

/* Timeline Section Styling */
.timeline-section {
    text-align: center;
    padding: 3rem 1rem;
    background: #f9f9f9;
}

.timeline-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;

}

/* Timeline Container */
.timeline-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 50px;
}

/* Timeline Card */
.timeline-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    width: 15rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.timeline-step {
    width: 3rem;
    height: 3rem;
    background: #4CADAD;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Timeline Details */
.timeline-details {
    margin-top: 2rem;
    text-align: center;
}

.timeline-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1B5F8C;
}

.timeline-details p {
    font-size: 1rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-card {
        width: 100%;
    }
}






/* Success Stories Section Styling */
#success-stories {
    padding: 2rem 2rem;
    background-color: var(--background-white);
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

/* Story Card */
.story-card {
    background-color: var(--background-white);
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-card h3 {
    font-family: 'Montserrat';
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.story-card p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Benefits */
.story-benefits {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit {
    background-color: var(--background-white);
    padding: 1.5rem;
    border-radius: 8px;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit i {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.benefit h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hover effect for benefits */
.benefit:hover h4{
    color: var(--primary-color);
}

.benefit:hover i{
    color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .story-benefits {
        flex-direction: column;
        align-items: center;
    }

    .benefit {
        width: 80%;
        margin-bottom: 1.5rem;
    }
}







/* Contact Section Styling */
#contact {
    padding: 4rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #fff;
}

/* Contact Container */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input, .contact-form textarea {
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-form textarea {
    font-family: 'Inter', sans-serif;
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    padding: 1rem;
    background-color: #333;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #555;
}

/* Contact Info Section */
.contact-info {
    width: 48%;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-info h3 {
    font-size: 1.75rem;
    font-weight: bold;
    color: #333;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
}

.contact-info .social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    font-size: 1.5rem;
    color: #333;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #0077b5; /* LinkedIn color or any hover color of your choice */
}
footer 
{
    text-align: center!important;
   
}
footer p a{
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}
footer p a:hover
{
    color: black;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-form, .contact-info {
        width: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 1200px) {
    h1 {
      font-size: 3rem;
    }
  
    h2 {
      font-size: 2.2rem;
    }
  
    h3 {
      font-size: 1.4rem;
    }
  
    p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }
  
    h2 {
      font-size: 2rem;
    }
  
    h3 {
      font-size: 1.2rem;
    }
  
    p {
      font-size: 0.9rem;
    }
  }



  /* Success Stories Carousel */

  #success-stories {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--text-primary);
  }

  #success-stories h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
  }

  .carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    height: 430px; /* Increased height for desktop readability */
  }

  .carousel-wrapper {
    position: relative;
    width: 100%;
    height: 380px; /* Increased content height for desktop */
    overflow: hidden;
  }

  .carousel-slide {
    display: none;
    animation: fadeInSlide 0.7s ease-in-out;
    height: 410px; /* Fixed height matching wrapper */
  }

  .carousel-slide.active {
    display: flex;
    height: 410px; /* Fixed height matching wrapper */
  }

  @keyframes fadeInSlide {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .slide-image {
    flex: 0 0 45%;
    min-width: 0;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 410px; /* Fixed height matching slide */
  }

  .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* This will fit the whole image without cropping */
    transition: transform 0.3s ease;
  }

  .slide-image img:hover {
    transform: scale(1.02);
  }

  .slide-text {
    flex: 0 0 55%;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
  }

  .slide-text h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    margin-top: 0.5rem;
  }

  .slide-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
  }

  /* Carousel Navigation Buttons */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(26, 95, 122, 0.85);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 1.3rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.15);
  }

  .carousel-btn.prev {
    left: 1.5rem;
  }

  .carousel-btn.next {
    right: 1.5rem;
  }

  /* Carousel Indicators */
  .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background-color: rgba(249, 249, 249, 0.95); /* Slightly transparent */
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: auto; /* Push to bottom of container */
  }

  .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .indicator.active {
    background-color: var(--secondary-color);
    transform: scale(1.4);
  }

  .indicator:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .carousel-container {
      height: 450px; /* Taller for mobile stack layout + indicators */
    }

    .carousel-wrapper {
      height: 400px; /* Content height for mobile */
    }

    .carousel-slide {
      flex-direction: column;
      height: 480px; /* Match wrapper height */
    }

    .slide-image {
      flex: 0 0 50%;
      height: 240px; /* Fixed pixel height for mobile */
    }

    .slide-text {
      flex: 0 0 50%;
      padding: 1rem;
      height: 240px; /* Fixed pixel height for mobile */
      overflow-y: auto; /* Allow scrolling if text is too long */
      justify-content: flex-start;
    }

    .slide-text h3 {
      font-size: 1.4rem;
      margin-bottom: 0.7rem;
      line-height: 1.2;
      margin-top: 0.3rem;
    }

    .slide-text p {
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .carousel-btn {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }

    .carousel-btn.prev {
      left: 1rem;
    }

    .carousel-btn.next {
      right: 1rem;
    }
  }

  @media (max-width: 480px) {
    .carousel-container {
      border-radius: 10px;
      height: 450px; /* Fixed height for small screens + indicators */
    }

    .carousel-wrapper {
      height: 400px; /* Content height for small screens */
    }

    .carousel-slide {
      flex-direction: column;
      height: 430px; /* Match wrapper height */
    }

    .slide-image {
      flex: 0 0 55%;
      height: 237px; /* Slightly larger image area on mobile */
    }

    .slide-text {
      flex: 0 0 45%;
      padding: 0.8rem 0.6rem;
      height: 193px;
      overflow-y: auto;
      justify-content: flex-start;
    }

    .slide-text h3 {
      font-size: 1rem;
      margin-bottom: 0.4rem;
      line-height: 1.0;
      margin-top: 0.2rem;
    }

    .slide-text p {
      font-size: 0.8rem;
      line-height: 1.3;
    }

    .carousel-btn {
      width: 35px;
      height: 35px;
      font-size: 0.9rem;
    }

    .carousel-btn.prev {
      left: 0.75rem;
    }

    .carousel-btn.next {
      right: 0.75rem;
    }

    .carousel-indicators {
      padding: 1rem;
      gap: 0.75rem;
    }

    .indicator {
      width: 10px;
      height: 10px;
    }
  }