        @font-face {
            font-family: 'opensans_medium';
            src: url('../assets/fonts/OpenSans-Medium.ttf');
        }
        @font-face {
            font-family: 'opensans_bold';
            src: url('../assets/fonts/OpenSans-Bold.ttf');
        }

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

        html, body {
           
        
            height: 100%;
         
    background-color: #fff;
    color: #191919;
    line-height: 2;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
        }
   
    .container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
    
    
        @media (min-width: 576px) {
            .container { max-width: 540px; }
        }
        @media (min-width: 768px) {
            .container { max-width: 720px; }
        }
        @media (min-width: 992px) {
            .container { max-width: 960px; }
        }
        @media (min-width: 1200px) {
            .container { max-width: 1140px; }
        }
        @media (min-width: 1400px) {
            .container { max-width: 1320px; }
        }

        header {
            position: sticky;
            top: 0;
            background-color:#bb2026;
            backdrop-filter: blur(10px);
            z-index: 100;
            box-shadow: 0 2px 10px #0000001a;

        }

        .header_container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
            min-height: 70px;
        }

        .navbar_logo {
            height: 80px;
            transition: transform 0.3s ease;
        }

        .navbar_logo:hover {
            transform: scale(1.1);
        }

        .row {
    margin-right: -15px;
    margin-left: -15px;
}
@media (min-width: 992px) {
    .col-md-6 {
        width: 50%;
    }
}
@media (min-width: 992px) {
    .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
        float: left;
    }
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .navbar_links {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }


        .navbar_links:hover {
            color: #1683ff;
        }

        .navbar_links:hover::after {
            width: 100%;
        }

        .hero_section {
            position: relative;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
        }

        .hero_banner {
            height: 100%;
            background-image: linear-gradient(#00000066, #00000066), url('../assets/images/banner.JPG');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero_content {
            text-align: center;
            color: white;
            z-index: 2;
            max-width: 800px;
            padding: 2rem;
        }

        .hero_content h1 {
            font-size: 3rem;
            font-family: 'opensans_bold', Arial, Helvetica, sans-serif;
            text-align: start;
            margin-bottom: 1rem;
            letter-spacing: 0.1rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease-out;
        }
        .texttt{
            text-align: center;
        }
.section-title h2, .section-title-s2 h2, .section-title-s3 h2, .section-title-s4 h2 {

    font-size: 35px;
    font-weight: 500;
    margin: 0.2em 0 0;
       font-family: 'opensans_bold', Arial, Helvetica, sans-serif;
    text-align: center;
    position: relative;
}
        .h2 {
            font-size: 50px;
            font-family: 'opensans_bold', Arial, Helvetica, sans-serif;
            text-align: start;
            margin-bottom: 1rem;
            letter-spacing: 0.1rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease-out;
        }
        .hero_content p {
            font-size: clamp(1rem, 2vw, 1.5rem);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.3s both;
        }


        .cta_button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(22, 131, 255, 0.3);
        }

        .about_section {
            padding: 5rem 0;
            background: #e9f5ff;
            position: relative;
            overflow: hidden;

        }

        .about_container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        /* Equal height for About image and content */
        .about-row {
            display: flex;
            align-items: stretch;
        }
        .about-row > .col {
            display: flex;
            flex-direction: column;
        }
        .about_image_wrapper,
        .about_content {
            height: 100%;
        }
        .about_image_wrapper {
            display: flex;
        }
        .about_image_wrapper .about_image {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

        .about_image {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
            border-radius: 20px;
        }

        .about_image:hover {
            transform: scale(1.05);
        }

        .about_content {
            padding: 0 0 2rem;
        }

        .about_content h1 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-family: 'opensans_bold', Arial, Helvetica, sans-serif;
            margin-bottom: 2rem;
            position: relative;
            color: #333;
        }

        .about_content h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(45deg, #1683ff, #0056b3);
            border-radius: 2px;
        }

        .about_content p {
           
             color: #191919;
    line-height: 2;
    font-size: 14px;
            margin-bottom: 1.5rem;
            font-family: 'opensans_medium', Arial, Helvetica, sans-serif;
            
        }

        footer {
            background: #34495e;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer_container {
            display: flex;
            gap: 4rem;
            color: #bdc3c7;
        }

        .footer_contents {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer_logo_container{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 30%;
        }

        .footer_logo{
            width: 10rem;
        }

        .footer_para{
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer_links{
            display: flex;
            gap: 2rem;
        }

        .footer_column h1 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
            font-family: 'opensans_bold', Arial, Helvetica, sans-serif;
        }

        .footer_column p {
            color: #bdc3c7;
            margin-bottom: 0.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
            max-width: 90%;
        }

        .footer_column p:hover {
            color: #1683ff;
        }

        .socialmedia_icons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            margin: 2rem;
        }

        .socialmedia_icons img {
            height: 2rem;
            cursor: pointer;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .copyright_image {
            height: 1rem;
        }
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .modal_container {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            max-width: 90%;
            max-height: 90%;
            position: relative;
            display: flex;
            gap: 2rem;
            box-shadow: 0 20px 40px #0000004d;
        }

        .modal_close {
            position: absolute;
            top: 2px;
            right: 2px;
            background: black;
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background-color 0.3s ease;
        }

        .modal_close:hover {
            background: #ff3742;
        }

        .modalImage_container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            padding: 0;
            background: transparent;
        }

        .modal_image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            object-position: center;
            border-radius: 10px;
            margin-top: 10px;
            display: block;
        }

        @media (max-width: 600px) {
            .modal_image {
                height: 260px;
            }
        }

        .modal_button {
              background: #bb2026;
    color: white;
    border: none;
    font-family: 'opensans_medium';
    padding: 6px 15px; /* requested: 10px t5px (interpreted as 10px 5px) */
    border-radius: 25px;
    font-size: 12px; /* requested: 12px */
    cursor: pointer;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
        }
      
        .modal_button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px #1683ff4d;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            .header_container {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem 0;
            }
            
            nav ul {
                gap: 1rem;
            }
            
            .navbar_links {
                font-size: 0.9rem;
            }
            
            .hero_banner {
                background-attachment: scroll;
            }
            
            .hero_content {
                padding: 1rem;
            }
            
            .about_container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            .about-row {
                display: block;
            }

            .footer_contents {
                display: flex;
                flex-direction: column;
                align-items: start;
                justify-content: space-between;
                gap: 2rem;
             }

             .footer_logo_container{
                display: flex;
                gap: 3rem;
                width: 80%;
             }
            
             .footer_para{
                display: flex;
                flex-direction: column;
                gap: 1rem;
             }

             
            .footer_links{
                display: flex;
                flex-direction: column;
                gap: 2rem;
            }


            .about_content {
                padding: 1rem;
            }
            
            .footer_container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .modal_container {
                flex-direction: column;
                padding: 1.5rem;
                gap: 1.5rem;
            }
            
            .modal_image {
                height: 150px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            
            .header_container {
                padding: 0.5rem 0;
            }
            
            .navbar_logo {
                height: 40px;
            }
            
            nav ul {
                gap: 0.5rem;
            }
            
            .navbar_links {
                font-size: 0.8rem;
            }
            
            .about_section {
                padding: 3rem 0;
            }
            
            .about_container {
                gap: 1.5rem;
            }
            
            .footer_container {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .footer_column h1 {
                font-size: 1.2rem;
            }
            
            .footer_column p {
                font-size: 0.9rem;
            }
            
            .copyright {
                font-size: 0.8rem;
                flex-direction: column;
                gap: 0.3rem;
            }
            
            .modal_container {
                padding: 1rem;
                gap: 1rem;
            }
            
            .modal_image {
                height: 210px;
            }
            
            .modal_button {
                padding: 0.6rem 1.5rem;
                font-size: 0.9rem;
            }
        }

.section-title.center-align {
  text-align: center;
}

.section-title.center-align h3,
.section-title.center-align h4,
.section-title.center-align h5 {
  margin: 4px 0; /* Reduce line spacing */
}

.section-title {
  text-align: center;
}

.section-title h3,
.section-title h4,
.section-title h5 {
  margin: 4px 0;
}

#welcomeModal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
}

.modal_container {
  background: #fff;
  border-radius: 32px;
  padding: 24px 16px;
  max-width: 700px;
  width: 95vw;
  max-height: 95vh;
  overflow-y: auto;
  box-sizing: border-box;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .modal_container {
    padding: 6px 2px;
    max-width: 98vw;
    width: 98vw;
    max-height: none;
    overflow-y: visible;
  }
  .modal_image {
    height: 185px;
  }
  .section-title h3 {
    font-size: 1.1rem;
  }
  .section-title h4 {
    font-size: 1rem;
  }
  .section-title h5 {
    font-size: 0.95rem;
  }
}

@media (min-width: 601px) {
  .modal_image {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .modal_container {
    max-width: 600px;
  }
  .section-title {
    padding: 0 16px;
  }
}

.pb-20{
    margin-bottom:25px;
     }

/* ---- Requested overrides: popup equal sizing, small gap, h3 line-height ---- */
.modal_container {
  gap: 8px; /* small gap between the two image blocks */
  align-items: stretch;
}

.modalImage_container {
  flex: 1 1 0;
}

.modal_image {
  width: 100%;
  height: 220px; /* equal height for both popup images */
  object-fit: cover;
}

.section-title h3 {
  line-height: 20px; /* requested h3 line-height */
}

@media (max-width: 768px) {
  .modal_container {
    gap: 8px; /* keep small gap on mobile too */
  }
  .modal_image {
    height: 185px; /* consistent equal height on smaller screens */
  }
}