/* Base Styles */
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #777;
    --white: #fff;
    --black: #000;
    --transition: all 0.3s ease;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

   .container43 {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px; 
    padding: 30px;
    margin-top: 100px;
    margin-bottom: 10px;
}



section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: black;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #60B3D9;
    margin: 15px auto;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
:root {
    --white: #ffffff;
    --black: #000000;
    --primary-color: #4a6bff;
    --secondary-color: #333333;
    --text-color: #444444;
    --light-color: #f5f7ff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
    transform: translateY(0);
    background-color: white;
}

/* Header Scroll Animation */
.header.hide {
    transform: translateY(-100%);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    padding: 5px 0;
}

.container1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Animation */
.logo img {
    height: 50px;
    transform-origin: center;
    padding: 3px 25px;
}

/* Navigation Links Animation */
.nav-list {
    display: flex;
    list-style: none;
    background-color: white;
}

.nav-list li {
    margin-left: 30px;
    position: relative;
}

.nav-list a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    position: relative;
    padding: 3px 0;
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.nav-list a:hover::before {
    width: 100%;
}

.nav-list a i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown Menu Animation */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    transform: translateY(15px);
    z-index: 100;
    list-style: none;
    padding: 10px 0;
    color:black;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 100%;
    width: 320px;
}

.dropdown-menu li {
    margin: 0;
    padding: 0 10px;
    font-weight: 500;
    color:black;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    transition: var(--transition);
    border-radius: 4px;
    margin: 0 5px;
    color:black;
}

.dropdown-menu a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 25px;
    transform: translateX(5px);
}

/* Hamburger Menu Animation */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--secondary-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0;
    transform-origin: left center;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.hamburger span:nth-child(3) {
    bottom: 0;
    transform-origin: left center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: -1px;
    left: 4px;
}

.hamburger.active span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 1px;
    left: 4px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        /* height: 100vh; */
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-list li {
        margin: 15px 0;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        overflow: hidden;
        max-height: 0;
        padding: 0;
        background: var(--light-color);
        border-radius: 0;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .dropdown-menu.active {
        max-height: 500px;
        padding: 10px 0;
    }

    .dropdown-menu a {
        padding: 12px 20px;
    }

    .hamburger {
        display: block;
    }
}

/* Hero Slider */
.hero-slider {
    margin-top: 0;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .hero-slider .swiper {
    height: 100%;
  }

  .hero-slider .swiper-wrapper {
    height: 100%;
  }

  .hero-slider .swiper-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Dark overlay for better text visibility */
  .hero-slider .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    height: 700px;
    /* background: rgba(0, 0, 0, 0.4); */
    z-index: 1;
  }

  /* Slide Content - Centered with Animation */
  .slide-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    padding: 40px;
    z-index: 10;
    color: white;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Text Styling */
  .slide-content h1 {
    font-size: 45px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    
  }

  .slide-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    
  }

  .slide-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    
  }

  /* Button Styling */
  .slide-content .btn {
    margin-top: 30px;
    padding: 15px 40px;
    font-size: 1.2rem;
    background-color: #64a4e8;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .slide-content .btn:hover {
    background-color: #64a4e8;
    transform: scale(1.05);
  }

  /* Navigation Arrows & Pagination */
  .swiper-pagination,
  .swiper-button-next,
  .swiper-button-prev {
    z-index: 20;
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: white;
    width: 50px;
    height: 50px;
    /* background: rgba(0, 0, 0, 0.3); */
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.6);
  }

  .swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
    width: 12px;
    height: 12px;
  }

  .swiper-pagination-bullet-active {
    background: #64a4e8;
    opacity: 1;
  }

/* Three Column Section */
:root {
    --primary: #0f55c6;
    --secondary: #1a1a2e;
    --dark: #121212;
    --darker: #0a0a0a;
    --light: #e2e2e2;
    --transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  }
  
 .three-column {
    padding: 80px 20px;
    background-color: white;
   }

.columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.column {
    flex: 1 1 300px;
    max-width: 390px;
    background-color: white;
    border-radius: 12px;
    overflow: visible; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Immediate hover detection */
.column:hover {
    z-index: 10;
    background: lab(72.71% -9.42 -39.5);
    color: white;
}

.column-icon {
    /* height: 200px; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.column-icon i {
    font-size: 60px;
    color: #6aa4e3;
    transition: var(--transition);
}

.column:hover .column-icon i {
    color: white;
    transform: scale(1.1);
}

.column h3 {
    color: black;
    margin-bottom: 15px;
    font-size: 1.3rem;
    transition: var(--transition);
    text-align: center;
}

.column:hover h3 {
    color: white;
}

.column p {
    color: black;
    line-height: 1.7;
    margin-bottom: 0;
    transition: var(--transition);
    text-align: center;
}

.column:hover p {
    color: white;
}

/* Immediate glow effect */
.column::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    box-shadow: 0 0 0 0 var(--primary);
    transition: var(--transition);
    pointer-events: none;
}

.column:hover::after {
    box-shadow: 0 0 15px 5px rgba(58, 134, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .column {
        flex: 1 1 100%;
        max-width: 400px;
    }
    
    .column:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .column:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }
    
    .column:hover::after {
        box-shadow: none;
    }
    
    .column-icon {
        height: 150px;
    }
    
    .column-icon i {
        font-size: 80px;
    }
}

/* Parallax Section */
/* Parallax Section - Full Working Version */
.parallax123 {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    isolation: isolate; /* Creates new stacking context */
    margin: 0;
    padding: 0;
}

.parallax-inner123 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/post1.png'); 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translateZ(0);
    z-index: -1;
    will-change: transform;
}

.parallax-content123 {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    margin: 0;
}

.text-background123 {
    /* background-color: rgba(0, 0, 0, 0.5); */
    padding: 80px;
    border-radius: 10px;
    /* backdrop-filter: blur(5px); */
    /* -webkit-backdrop-filter: blur(5px);  */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
}

.parallax123 h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.parallax123 p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.btn123 {
    display: inline-block;
    background-color: #4ea8e0;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
    font-size: 1rem;
}

.btn123:hover {
    background-color: white;
    color: #4ea8e0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .text-background123 {
        padding: 60px;
        width: 95%;
    }
}

@media (max-width: 768px) {
    .parallax123 {
        height: 350px;
    }
    
    .parallax123 h2 {
        font-size: 2.2rem;
    }
    
    .parallax123 p {
        font-size: 1rem;
    }
    
    .text-background123 {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .parallax123 {
        height: 300px;
    }
    
    .parallax123 h2 {
        font-size: 1.8rem;
    }
    
    .text-background123 {
        padding: 25px 20px;
    }
    
    .btn123 {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Mobile devices with touch screens */
@media (hover: none) and (pointer: coarse) {
    .parallax-inner123 {
        background-attachment: scroll !important;
    }
}

/* Fallback for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(5px)) {
    .text-background123 {
        background-color: rgba(0, 0, 0, 0.7);
    }
}
/* Popup Section */
:root {
    --primary-color: #3b9ada;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --dark-bg: #1a1a1a;
    --dark-card: #2d2d2d;
    --dark-text: #f5f5f5;
    --light-text: #cccccc;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.popup-section {
    padding: 60px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: black;
}

.popup-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 15px;
    border: 1px solid red;
}

.popup-column {
    flex: 1 1 300px;
    max-width: 300px;
    background-color: #fff;
    color: #333;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    opacity: 0;
    transform: translateY(30px);
    border: 2px solid red;

    }

.popup-column.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.popup-column h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #333;
    transition: color 0.3s ease;
}

.popup-column p {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.popup-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-color: #64a4e8;
}

.popup-column:hover h3,
.popup-column:hover p {
    color: white !important;
}

.popup-trigger {
    width: 40px;
    height: 40px;
    background-color: #64a4e8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
}

.popup-column:hover .popup-trigger {
    background-color: white;
    color: #64a4e8;
}

.popup-trigger:hover {
    transform: scale(1.1) rotate(90deg);
}

.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.7); */
    background: #64a4e8;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.popup-modal.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    width: 100%;
    max-width: 800px;
    padding: 50px 40px 40px;
    border-radius: 12px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 20px;
}

.close-popup {
    position: sticky;
    top: 10px;
    right: 10px;
    float: right;
    font-size: 1.8rem;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-bottom: 10px;
    background: white;
    border-radius: 50%;
    z-index: 10;
}

.close-popup:hover {
    color: #64a4e8;
    background: #f5f5f5;
}

/* Popup Content Text Styling */
.popup-content h3.web-text-title {
    color: #222;
    margin: 15px 0 20px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
    clear: both; 
}

.popup-content h3.web-text-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #64a4e8;
}

.popup-content p.p-text {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}


.popup-content {
    transition: none;
}
.popup-content:hover {
    background-color: #64a4e8;
    color: white;
}
.popup-content h3.web-text-title:hover,
.popup-content p.p-text:hover {
    color: inherit;
    background-color: transparent;
}

.popup-content .web-text-title:hover,
.popup-content .p-text:hover {
    color: white;
    background-color: #64a4e8;
}

.popup-content ul {
    margin: 0 0 25px 0;
    padding: 0;
    list-style: none;
}

.popup-content ul:hover{
  color:white;
  background-color:#64a4e8;
}

.popup-content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.popup-content li:hover{
  color:white;
   background-color:#64a4e8;
}
.popup-content li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #64a4e8;
    font-size: 1.2rem;
}

.popup-content button {
    background-color: #64a4e8;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: 10px;
}

.popup-content button:hover {
    background-color: #4a8fd6;
    transform: translateY(-2px);
}

/* Scrollbar styling */
.popup-content::-webkit-scrollbar {
    width: 8px;
}
.popup-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.popup-content::-webkit-scrollbar-thumb {
    background: #64a4e8;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .popup-columns {
        gap: 20px;
    }
    .popup-column {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .popup-column {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 20px;
    }
    .popup-content {
        padding: 40px 20px 30px;
        width: 95%;
        max-height: 85vh;
    }
    .popup-content h3.web-text-title {
        font-size: 1.5rem;
    }
    .popup-content p.p-text,
    .popup-content li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .popup-section {
        padding: 40px 0;
    }
    .popup-content {
        padding: 35px 15px 25px;
    }
    .close-popup {
        top: 5px;
        right: 5px;
        font-size: 1.5rem;
    }
    .popup-content h3.web-text-title {
        font-size: 1.3rem;
    }
    .popup-content p.p-text,
    .popup-content li {
        font-size: 0.9rem;
    }
}


/* Accordion Section */

:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --dark-text: #ffffff;
    --light-text: #b0b0b0;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.accordion-section {
    /* background-color: rgba(94, 171, 223, 0.8); */
    padding: 80px 0;
     font-family: 'Poppins', sans-serif;
}

.section-title {
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    perspective: 1000px;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background-color: rgba(94, 171, 223, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    /* padding: 10px; */
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.accordion-header {
    padding: 22px 25px;
    background-color: rgba(94, 171, 223, 0.8);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.accordion-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.accordion-header h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
}

.accordion-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 2px;
}

.accordion-icon::before {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}

.accordion-icon::after {
    width: 2px;
    height: 16px;
    left: 11px;
    top: 4px;
}

.accordion-item.active .accordion-icon::before {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-icon::after {
    opacity: 0;
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease, transform 0.3s ease;
    background: white;
    color: rgb(128, 28, 28);
    opacity: 0;
    transform: translateY(-10px);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding: 0 25px 25px;
}

.accordion-content p {
    margin: 15px 0;
    color: black;
    line-height: 1.6;
    font-size: 1.05rem;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .accordion-header {
        padding: 18px 20px;
    }

    .accordion-header h3 {
        font-size: 1.1rem;
    }

    .accordion-item.active .accordion-content {
        padding: 20px;
    }
}

/* Custom Slider */
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --dark-text: #ffffff;
    --light-text: #b0b0b0;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}





/* Rest of your CSS remains the same */
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.3, 0, 0, 1);
    transition-delay: 0.3s;
    text-align: center;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.custom-swiper .swiper-slide-active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.3, 0, 0, 1);
    transition-delay: 0.4s;
    opacity: 0;
    font-weight: 600;
}

.slide-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.3, 0, 0, 1);
    transition-delay: 0.5s;
    opacity: 0;
    margin-bottom: 0;
    color: rgba(255,255,255,0.9);
}

.custom-swiper .swiper-slide-active .slide-content h3,
.custom-swiper .swiper-slide-active .slide-content p {
    transform: translateY(0);
    opacity: 1;
}

.custom-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    z-index: 10;
    gap: 15px;
}

.custom-button-prev,
.custom-button-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    opacity: 0.8;
}

.custom-button-prev:hover,
.custom-button-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .custom-swiper {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .custom-swiper {
        height: 400px;
    }
    
    .slide-content {
        padding: 30px;
    }
    
    .slide-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .custom-swiper {
        height: 350px;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .custom-nav {
        bottom: 20px;
        right: 20px;
    }
    
    .custom-button-prev,
    .custom-button-next {
        width: 50px;
        height: 50px;
    }
}

:root {
    --primary: #3a86ff;
    --secondary: #1a1a2e;
    --dark: #121212;
    --darker: #0a0a0a;
    --light: #e2e2e2;
    --transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  }
  
  /* Section Structure */
  .hiring-section {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
  }
  
  /* Background image styling */
  .fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    animation: bgZoom 20s infinite alternate;
  }
  
  @keyframes bgZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
  }
  
  .scroll-content {
    position: absolute;
    width: 100%;
    height: 90%;
    overflow-y: auto;
    scroll-behavior: smooth;
    background-color:white;
    margin-bottom: 60px;
  }
  
  .hiring-overlay {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(94, 171, 223, 0.8), rgba(88, 161, 239, 0.5));
    padding: 20px;
  }
  
  /* Content Animations */
  .hiring-content {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
  }
  
  .hiring-section.in-view .hiring-content {
    opacity: 1;
    transform: translateY(0);
  }
  
  .hiring-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
    position: relative;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: textGlow 3s infinite alternate;
  }
  
  @keyframes textGlow {
    0% { text-shadow: 0 0 10px rgba(255,255,255,0.3); }
    100% { text-shadow: 0 0 20px rgba(255,255,255,0.6); }
  }
  
  .hiring-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
    animation: lineExtend 1s 0.5s forwards;
    transform-origin: center;
    transform: scaleX(0);
  }
  
  @keyframes lineExtend {
    to { transform: translateX(-50%) scaleX(1); }
  }
  
  /* Button Styles */
  .button-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .join-button {
    position: relative;
    padding: clamp(12px, 3vw, 18px) clamp(30px, 6vw, 45px);
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 700;
    color: white;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
  }
  
  .join-button span {
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
  }
  
  .button-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary) 20%, transparent 20%) 0 0 / 20px 20px;
    opacity: 0.3;
    transform: translateY(100%);
    transition: var(--transition);
    z-index: -1;
  }
  
  .join-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.4);
    background: rgba(58, 134, 255, 0.1);
  }
  
  .join-button:hover .button-dots {
    transform: translateY(0);
    animation: dotsMove 2s linear infinite;
  }
  
  @keyframes dotsMove {
    to { background-position: 20px 20px; }
  }
  
  /* Scroll Indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
    display:none;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .hiring-title {
      margin-bottom: 30px;
      letter-spacing: 2px;
    }
    
    .hiring-title::after {
      bottom: -10px;
    }
  }
  
  @media (max-width: 480px) {
    .fixed-bg {
      position: absolute;
      animation: none;
    }
    
    .hiring-overlay {
      padding: 20px 15px;
    }
    
    .hiring-title {
      font-size: 1.8rem;
      margin-bottom: 25px;
    }
  }

/* Footer */
.footer {
  background-color: white;
  color: black;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  animation: gradientBG 8s ease infinite;
  background-size: 400% 400%;
}

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

.container1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  padding: 0 15px;
  color: black;
}

.footer-column43{
   flex: 1;
  min-width: 300px;
  padding: 0 15px;
  color: black;
}

.logo-column {
  flex: 1.5;
}

.footer-logo img {
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  height: 70px;
  width: auto;
  background-color: #60B3D9;
}

.footer-about {
  margin-bottom: 20px;
  line-height: 1.6;
  color: black;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #60B3D9;
}

.footer-links li, .footer-contact li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
  transition: all 0.3s ease;
  list-style: none;
}

.footer-links li:hover, .footer-contact li:hover {
  transform: translateX(5px);
}

.footer-links a, .footer-contact li {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #60B3D9;
}

.footer-links i, .footer-contact i {
  position: absolute;
  left: 0;
  top: 5px;
  color: #60B3D9;
  font-size: 12px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  color: #60B3D9;
  font-size: 30px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  transition: all 0.3s ease;
  background-color: #60B3D9;
  text-align: center;
  justify-content:center
}

.social-icon i {
  height: 20px;
  width: 20px;
}

.social-icon:hover {
  transform: translateY(-3px);
  color: white;
}

.newsletter {
  margin-top: 20px;
  display: flex;
  align-items: center;
  position: relative;
}

.newsletter input {
  padding: 8px 12px;
  border: none;
  background: #f0f0f0;
  color: #333;
  border-radius: 4px 0 0 4px;
  width: 200px;
}

.newsletter input::placeholder {
  color: #777;
}

.subscribe-btn {
  background-color: #6da7e4;
  color: white;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0 4px 4px 0;
}

.subscribe-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.success-message {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 10px;
  background: #4CAF50;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  animation: fadeIn 0.5s;
}

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

.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: black;
  font-size: 14px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #60B3D9;
}

.year {
  color: #60B3D9;
  text-align: center;
}

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.footer-column {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
  .footer-column {
      flex: 0 0 calc(50% - 15px);
      box-sizing: border-box;
  }
  
  .footer-columns {
      gap: 15px;
  }
  
  .logo-column {
      flex: 0 0 calc(50% - 15px);
  }
  
  .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 10px;
      padding: 20px;
  }
  
  .footer-legal {
      justify-content: center;
      flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .footer {
      padding: 30px 0 0;
  }
  
  .container1 {
      padding: 0 15px;
  }
  
  .footer-column {
      flex: 0 0 calc(50% - 10px);
      padding: 0 5px;
  }
  
  .logo-column {
      flex: 0 0 calc(50% - 10px);
  }
  
  .footer-columns {
      gap: 10px;
      row-gap: 20px;
  }
  
  .footer-logo img {
      height: 60px;
  }
  
  .footer-title {
      font-size: 16px;
      margin-bottom: 15px;
  }
  
  .footer-links li, .footer-contact li {
      margin-bottom: 8px;
      padding-left: 20px;
      font-size: 14px;
  }
  
  .footer-about {
      font-size: 14px;
  }
  
  .social-links {
      font-size: 24px;
      gap: 10px;
  }
  
  .social-icon {
      width: 30px;
      height: 30px;
  }
  
  .newsletter {
      flex-direction: column;
      gap: 10px;
  }
  
  .newsletter input {
      width: 100%;
      padding: 8px;
      font-size: 14px;
  }
  
  .subscribe-btn {
      padding: 8px 15px;
      font-size: 14px;
      width: 100%;
  }
  
  .footer-bottom {
      padding: 15px;
  }
  
  .footer-legal {
      gap: 10px;
  }
  
  .footer-legal a {
      font-size: 12px;
  }
  
  .footer-bottom p {
      font-size: 12px;
  }
}

/* company description */
.container-for-description {
    padding: 1rem 0;
    background-color: #f9f9f9;/* light background for separation */
}

.company-description {
    max-width: 100%;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: left; /* 👈 FIXED: Aligns all text to the left */
}

/* Heading styling */
.company-description h1 {
    color: #000;
    text-align: center; /* 👈 Title centered only */
    margin-bottom: 1.5rem;
}


/* Optional subheading */
.company-description h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000;
    text-align: center;
}

/* Paragraph styling */
.company-description p {
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
    text-align:left;   /* 👈 Ensures text starts from left */
    margin-bottom: 1rem;
}

.company-description #section{
text-align:left;


/* Responsive Typography & Padding */
@media screen and (max-width: 768px) {
    .company-description {
        padding: 1.5rem;
    }

    .company-description h3 {
        font-size: 1.5rem;
    }

    .company-description p {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .company-description {
        padding: 1rem;
    }

    .company-description h3 {
        font-size: 1.3rem;
    }

    .company-description p {
        font-size: 0.9rem;
    }
}

/* Popup Overlay - Fixed positioning and high z-index */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  margin-top: 350px;
}

/* Popup Box - Centered properly */
.popup-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  margin: 20px auto; 
}

/* Make sure hero section has lower z-index */
.hero-section {
  position: relative;
  z-index: 1; /* Lower than popup */
}

/* Close Button - Common for all popups */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: black;
  background: none;
  border: none;
  padding: 0;
}

.close-btn:hover {
  color: #000;
}

/* Form Styling - Common for forms in popups */
.career-form {
  display: flex;
  flex-direction: column;
}

.career-form h3{
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  color:black;
}

.career-form input,
.career-form textarea,
.career-form select {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

.career-form textarea {
  resize: vertical;
  min-height: 100px;
}

.career-form label {
  margin: 8px 0 4px 0;
  font-weight: 500;
  color: black;
}

.career-form button {
  width: 100%;
  padding: 14px;
  margin-top: 15px;
  background-color: #2c3e50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.career-form button:hover {
  background-color: #1a252f;
}

.career-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.popup-content {
  line-height: 1.6;
  color: black;
}

.popup-content p {
  margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .popup-box {
    padding: 20px;
    width: 95%;
  }
  
  .career-form input,
  .career-form textarea,
  .career-form select {
    padding: 10px;
    font-size: 14px;
  }
  
  .career-form button {
    padding: 12px;
  }
}


