/* Base Styles */
:root {
    --primary-color: #59a7fb;
    --secondary-color: #6c757d;
    --accent-color: #17a2b8;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
  }
  
  /* Section visibility */
  .section {
    display: none;
  }
  
  #home {
    display: block;
  }
  
  /* Utility Classes */
  .section-padding {
    padding: 100px 0;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
  }
  
  /* Navbar Styles */
  .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    padding: 1rem 0;
  }
  
  .navbar-brand img {
    height: 60px;
    transition: var(--transition);
  }
  
  .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
  }
  
  .nav-link:hover,
  .nav-link:focus,
  .nav-link.active {
    color: var(--primary-color);
  }
  
  .navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-nav .dropdown-item {
    color: var(--dark-color);
    transition: var(--transition);
  }
  
  .navbar-nav .dropdown-item:hover,
  .navbar-nav .dropdown-item:focus {
    background-color: var(--primary-color);
    color: #fff;
  }
  
  /* Hero Slider Styles */
  .parallax-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slide[data-index="0"] {
    background-image: url("https://i.ibb.co/Lh0SR0Jr/welding-work-with-metal-construction-busy-metal-factory.jpg");
  }
  .slide[data-index="1"] {
    background-image: url("https://i.ibb.co/Z1hW0PXd/employerpage31.png");
  }
  .slide[data-index="2"] {
    background-image: url("https://i.ibb.co/CKkPhdkB/ffacttoryy11.jpg");
  }
  
  .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slide-content {
    position: relative;
    text-align: center;
    color: #f3f3f4;
    width: calc(100% - 140px);
    max-width: 1000px;
    z-index: 1;
    padding: 0 20px;
  }
  
  .slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .slide-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #e6f7ff 0%, #7dd5fe 100%);
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  }
  
  /* Navigation Arrows */
  .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
  }
  
  .nav-arrow:hover {
    background: var(--primary-color);
  }
  
  .prev {
    left: 20px;
  }
  .next {
    right: 20px;
  }
  
  /* Navigation Dots */
  .slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }
  
  .nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .nav-dot:hover,
  .nav-dot.active {
    background: #fff;
    transform: scale(1.2);
  }
  
  /* Animated Background */
  .animated-bg {
    position: relative;
    overflow: hidden;
  }
  
  .animated-bg::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(-45deg, #000101, #b3e5fc, #030607, #010609);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    transform: translateZ(0);
    z-index: -1;
  }
  
  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  /* About Us Section Styles */
  #about-us {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #333;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #75d0fa, #81d4fa);
  }
  
  .about-wrapper {
    margin-bottom: 50px;
  }
  
  .content-box {
    margin-bottom: 40px;
  }
  
  .about-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  
  .industries-section {
    background: rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
  }
  
  .industries-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
  }
  
  .industries-subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }
  
  .industries-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .industry-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .industry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.8);
  }
  
  .icon-wrapper {
    background: linear-gradient(135deg, #4fc3f7, #81d4fa);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .industry-icon {
    width: 28px;
    height: 28px;
    color: #fff;
  }
  
  .card-content {
    flex: 1;
  }
  
  .card-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .card-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
  }
  
  .about-image-wrapper {
    height: 100%;
    display: flex;
    align-items: flex-start;
  }
  
  .about-image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .about-image:hover img {
    transform: scale(1.05);
  }
  
  .cta-wrapper {
    margin-top: 50px;
  }
  
/* Job Seekers Section Styles */
#job-seekers {
    background-image: url("https://i.ibb.co/V1G8Qy6/final-slider-1.jpg");
    background-size: cover;
    background-position: top; /* Changed from center to top */
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

#job-seekers::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

#job-seekers .container {
    position: relative;
    z-index: 1;
}

#job-seekers .section-title {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    display: inline-block;
    margin-top: 2rem; /* Added margin to move the heading down */
}

#job-seekers .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(50px + 1cm); /* Extended the underline by 1cm */
    height: 3px;
    background: linear-gradient(135deg, #4fc3f7, #81d4fa);
}

#job-seekers .content-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

#job-seekers .section-description {
    color: #f0f0f0;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

#job-seekers .features {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
}

#job-seekers .feature-item {
    flex-basis: 45%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#job-seekers .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#job-seekers .feature-item i {
    font-size: 2rem;
    color: #4fc3f7;
    margin-bottom: 1rem;
}

#job-seekers .feature-item p {
    color: #fff;
    font-size: 1rem;
}

#job-seekers .highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color:  #fff;
    margin: 2rem 0;
}

#job-seekers .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

#job-seekers .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color:#333;
    background: linear-gradient(135deg, #e6f7ff 0%, #7dd5fe 100%); /* Updated gradient */
    border: none;
    border-radius: 5px; /* Changed from 30px to 5px for rectangular shape */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#job-seekers .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(125, 213, 254, 0.4); /* Updated shadow color */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #job-seekers .section-title {
        font-size: 2.5rem;
    }
    #job-seekers .content-wrapper {
        padding: 2rem;
    }
    #job-seekers .features {
        flex-direction: column;
        gap: 1.5rem;
    }
    #job-seekers .feature-item {
        flex-basis: 100%;
    }
    #job-seekers .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    #job-seekers .cta-button {
        width: 100%;
        max-width: 250px;
    }
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    height: auto;
    min-height: 100%;
    box-sizing: border-box;
    animation-name: animatetop;
    animation-duration: 0.4s;
}

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

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: fixed;
    right: 20px;
    top: 10px;
    z-index: 1001;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.form-container {
    width: 100%;
    height: 100%;
}

.form-container iframe {
    width: 100%;
    height: 100vh;
    border: none;
}
  
  /* Footer */
  .footer {
    background: var(--dark-color);
    color: #fff;
    padding: 2rem 0;
  }
  
  .social-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
  }
  
  /* Responsive Design */
  @media (max-width: 991.98px) {
    .section-padding {
      padding: 60px 0;
    }
  
    .slide-content h1 {
      font-size: 2.5rem;
    }
  
    .slide-content p {
      font-size: 1.1rem;
    }
  }
  /* Responsive Adjustments */
  @media (max-width: 991.98px) {
    .section-padding {
      padding: 60px 0;
    }
  
    .slide-content h1 {
      font-size: 2.5rem;
    }
  
    .slide-content p {
      font-size: 1.1rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .social-links {
      justify-content: center;
      margin-top: 1rem;
    }
  
    .cta-buttons {
      flex-direction: column;
      gap: 15px;
    }
  
    .feature-card,
    .service-card {
      margin-bottom: 2rem;
    }
  
    .icon-wrapper {
      width: 60px;
      height: 60px;
    }
  
    .icon-wrapper i {
      font-size: 1.5rem;
    }
  
    .service-icon {
      font-size: 2.5rem;
    }
  
    .section-padding {
      padding: 60px 20px;
    }
  
    .animated-bg::before {
      background-size: 300% 300%;
    }
  }
  
  @media (max-width: 767.98px) {
    .navbar-nav {
      background: #fff;
      padding: 1rem;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
  
    .slide-content h1 {
      font-size: 2rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .social-links {
      justify-content: center;
      margin-top: 1rem;
    }
  
    .cta-buttons {
      flex-direction: column;
      gap: 15px;
    }
  
    .feature-card,
    .service-card {
      margin-bottom: 2rem;
    }
  
    .icon-wrapper {
      width: 60px;
      height: 60px;
    }
  
    .icon-wrapper i {
      font-size: 1.5rem;
    }
  
    .service-icon {
      font-size: 2.5rem;
    }
  
    .section-padding {
      padding: 60px 20px;
    }
  
    .animated-bg::before {
      background-size: 300% 300%;
    }
  
    .about-image-wrapper {
      margin-top: 2rem;
    }
  
    .about-image {
      border-radius: 10px;
    }
  
    .about-image img {
      border-radius: 10px;
    }
  
    .industries-list {
      flex-direction: column;
    }
  
    .industry-card {
      margin-bottom: 1rem;
    }
  
    .job-seeker-section {
      padding: 60px 20px;
    }
  
    .job-seeker-content {
      text-align: center;
    }
  
    .job-seeker-buttons {
      flex-direction: column;
      gap: 1rem;
    }
  
    .job-seeker-buttons button {
      width: 100%;
    }
  
    .modal-content {
      padding: 20px;
    }
  
    .form-container iframe {
      height: 100vh;
    }
  }
  
  /* Fullscreen section */
.fullscreen-section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  /* Animated Background */
  .animated-bg {
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
  }
  
  .animated-bg::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(-45deg, #e6f7ff, #b3e5fc, #81d4fa, #4fc3f7);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    transform: translateZ(0);
    z-index: -1;
  }
  
  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  /* Section Titles */
  .section-title,
  .subsection-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
  }
  
  .subsection-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(50px + 1cm);
    height: 3px;
    background: linear-gradient(135deg, #aee0f8, #81d4fa);
  }
  
  /* Glassmorphism Cards */
  .glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .glassmorphism:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
  }
  
  /* Feature Cards */
  .feature-card {
    text-align: center;
    height: 100%;
  }
  
  .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4fc3f7, #81d4fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }
  
  .icon-wrapper i {
    color: #fff;
    font-size: 2rem;
  }
  
  .feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .feature-card p {
    color: #666;
  }
  
  /* Service Cards */
  .service-card {
    text-align: center;
    height: 100%;
  }
  
  .service-icon {
    font-size: 3rem;
    color: #4fc3f7;
    margin-bottom: 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .service-card p {
    color: #666;
  }
  
  /* CTA Section */
  #cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
  }
  
  .cta-bg {
    background-image: url("https://i.ibb.co/nM3mdpFS/pexels-khwanchai-4175026.jpg");
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
  }
  
  .cta-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
  }
  
  .cta-bg:hover::before {
    background: rgba(0, 0, 0, 0.7);
  }
  
  .cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
  }
  
  .cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  .cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
  }
  
  .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #e6f7ff 0%, #7dd5fe 100%);
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  }
  
  /* Ensure CTA Section is only visible in the Employers: Hire Help section */
  #employers-hire-help {
    display: block;
  }
  
  #employers-hire-help .section {
    display: block;
  }
  
  #employers-hire-help #why-choose-us,
  #employers-hire-help #our-services,
  #employers-hire-help #cta-section {
    display: block;
  }
  
  /* Additional styles for the Employers: Hire Help section */
  #employers-hire-help {
    padding: 0;
  }
  
  /* Updated styles to ensure employers section visibility */
  #employers-hire-help {
    display: none;
  }
  
  #employers-hire-help.active {
    display: block;
  }
  
  #employers-hire-help .section-padding {
    display: block;
  }
  
  #employers-hire-help #why-choose-us,
  #employers-hire-help #our-services,
  #employers-hire-help #cta-section {
    display: block;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .fullscreen-section {
      min-height: auto;
    }
  
    .section-title,
    .subsection-title {
      font-size: 2rem;
      padding-bottom: 0.75rem;
    }
  
    .cta-title {
      font-size: 2rem;
    }
  
    .cta-text {
      font-size: 1rem;
    }
  }
  /* Contact Section */
/* Animated Background */
.animated-bg {
    position: relative;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(-45deg, #e6f7ff, #b3e5fc, #81d4fa, #4fc3f7);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    transform: translateZ(0);
    z-index: -1;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Glassmorphism */
.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glassmorphism:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
}
/* CTA Section Styles */
#cta-section {
    background-image: url('https://i.ibb.co/nM3mdpFS/pexels-khwanchai-4175026.jpg');
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    min-height: 40vh; /* Less than half of the page */
    display: flex;
    align-items: center;
}

#cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
}

#cta-section:hover::before {
    background: rgba(0, 0, 0, 0.7);
}

.cta-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #e6f7ff 0%, #b3e5fc 100%);
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    #cta-section {
        min-height: 50vh;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 0.9rem;
    }
}
/* Contact Section Styles */
#contact.animated-bg {
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px; /* Adjust padding for better spacing */
}

#contact.animated-bg::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(-45deg, #e6f7ff, #b3e5fc, #81d4fa, #4fc3f7);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    transform: translateZ(0);
    z-index: -1;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#contact .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#contact .section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #555; /* Change to white for better contrast */
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1); /* Add subtle text shadow */
    margin-top: 2rem
}

#contact .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    linear-gradient (135deg, #4fc3f7, #81d4fa);
}

#contact .section-subtitle {
    font-size: 1.2rem;
    color: #555; /* Change to white for better contrast */
    margin-top: 1rem;
    font-weight: 300; /* Make it lighter */
}

.contact-info {
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2); /* Lighter background */
    color: #4fc3f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.info-item:hover i {
    background: rgba(255, 255, 255, 0.3); /* Slightly darker on hover */
    transform: scale(1.1);
}

.info-item a {
    color:#333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #e6f7ff; /* Lighter color on hover */
}

.map-container, .contact-form {
    height: 450px; /* Reduced height by approximately 25% */
    overflow: hidden;
}

.map-container iframe {
    border-radius: 10px;
    height: 100%;
    width: 100%;
}

/* Glassmorphism effect */
.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glassmorphism:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
}

/* Ensure both columns have the same height */
#contact .row {
    display: flex;
    flex-wrap: wrap;
}

#contact .col-lg-6 {
    display: flex;
    flex-direction: column;
}

#contact .col-lg-6 > div {
    flex-grow: 1;
}

/* Custom scrollbar for the form container */
.contact-form {
    overflow-y: auto;
}

.contact-form::-webkit-scrollbar {
    width: 8px;
}

.contact-form::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.contact-form::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.contact-form::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    #contact .section-title {
        font-size: 2rem;
    }

    #contact .section-subtitle {
        font-size: 1.1rem;
    }

    .map-container, .contact-form {
        height: 400px; /* Adjust for smaller screens */
    }
}

@media (max-width: 767.98px) {
    #contact.animated-bg {
        padding: 60px 0 40px;
    }

    #contact .section-title {
        font-size: 1.8rem;
    }

    #contact .section-subtitle {
        font-size: 1rem;
    }

    .contact-info, .map-container {
        margin-bottom: 1.5rem;
    }

    .map-container, .contact-form {
        height: 350px; /* Further adjust for mobile screens */
    }
}
