body {
    font-family: 'Poppins', sans-serif;
}

:root {
    --baby-blue: #eef1f7;
    --aquamarine-light: #bee2ff;
    --aquamarine: #43b0f1;
    --royal-blue: #057DCD;
    --blue-grotto: #0070ac;
    --navy-blue: #003371;
    --dark-black: #050315;
    --dark-gray: #333;
    --red: #ff3e5b;
    --light-red: #e20426;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* scollbar */

::-webkit-scrollbar {
  width: 10px;              /* Width of the scrollbar */
}


::-webkit-scrollbar-track {
  background: var(--aquamarine-light);       /* Sky Blue */
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--aquamarine);       /* Navy Blue */
  border-radius: 5px;
}


::-webkit-scrollbar-thumb:hover {
  background: var(--blue-grotto);       /* Blue Grotto highlight */
}


/* header */

.header, .header.sticky {
    width: 100%;
    z-index: 999;
    transition: all 0.3s linear;
}

.head_nav {
  background-color: #fff;
}

.header.sticky {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 10px;
    background-color: #fff;
    top: 0px;
    width: 100%;
}

.header.sticky {
    position: fixed;
    top: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    transition: all 0.3s linear;
    background: #fff;
}
.header-top {
    background-color: var(--navy-blue);
    padding: 5px 0;
}

.h-contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2px 0;
}

ul.sociallink {
    overflow: hidden;
    margin-bottom: 0;
}

ul.sociallink li {
    display: block;
    width: 30px;
    height: 30px;
    float: left;
    border-radius: 50%;
    border: 2px solid var(--baby-blue);
    padding: 2px;
    margin-right: 10px;
    text-align: center;
}

ul.sociallink li a {
    color: var(--baby-blue);
}

ul.sociallink li:hover a {
    color: var(--aquamarine-light);
}

.border-left {
    border-left: 1px solid #e8eef18c;
    margin: 0 10px;
}

.phone-email li a {
    color: #fff;
    font-size: 16px;
}

.phone-email {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.phone-email li {
    padding-left: 10px;
}

.animation-btn {
    animation: blinkbtn 1s infinite;
    padding: 5px 10px;
    transition: all 0.5s linear;
}

.highlight-text {
    background-color: var(--aquamarine-light);
    padding: 6px 0;
    overflow: hidden;
    display: flex;
}

.text-blink {
    font-weight: 600;
    font-size: 16px;
    animation: blinkredtext 1s infinite;
    color: #d00020;
    text-transform: capitalize;
}

.regi-now {
    color: var(--navy-blue);
    font-weight: bold;
}

.navbar-brand img {
    max-width: 100%;
    width: 180px;
}

#navbarSupportedContent .nav-link {
    padding: 0 !important;
}

.navbar-nav li a {
    font-weight: 500;
    color: #000;
    font-size: 15px;
}

.nav-item.nav-item {
    position: relative;
    text-decoration: none;
    color: #333;
    padding: 0 !important;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.drop-arrow {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.dropdown-content li {
    border-bottom: 1px solid var(--aquamarine-light);
    transition: all 0.3s linear;
}

.dropdown-content li:hover {
    background-color: var(--aquamarine-light);
}

/* Container for the dropdown */
.dropdown {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Border Bottom Effect */
.nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--aquamarine);
    /* border color */
    transition: width 0.3s ease;
}

/* Hover Effect */
.nav-item:hover::after {
    width: 100%;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: max-content;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 99;
    top: 100%;
    padding: 0;
}

/* Dropdown links */
.dropdown-content a {
    color: var(--dark-black);
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.submenu {
    position: relative;
}

.submenu-list {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    min-width: max-content;
    z-index: 1000;
}

/* Show submenu on hover */
.submenu:hover .submenu-list {
    display: block;
}

.submenu-list li a {
    padding: 10px 15px;
    display: block;
    color: #000;
    text-decoration: none;
}

.submenu-list li a:hover {
    background-color: #f1f1f1;
}

.dropdown-content ul {
    padding-left: 0;
}


@keyframes blinkredtext {
    0% {
        color: #ff3e5b;
    }

    50% {
        color: #d00020;
    }

    100% {
        color: #ff3e5b;
    }
}

@keyframes blinkbtn {
    0% {
        background-color: var(--light-red);
    }

    50% {
        background-color: var(--red);
    }

    100% {
        background-color: var(--light-red);
    }
}


/* btn */

.light-btn {
    background: var(--baby-blue);
    padding: 6px 20px;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    border-radius: 30px;
    text-transform: uppercase;
}


/* Hero section */

.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Dark overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000003d;
    /* background: linear-gradient(120deg, var(--aquamarine), rgb(145 193 216 / 0%)); */
    z-index: 1;
}

/* Hero content */
.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    color: #fff;
    z-index: 2;
    padding: 0 20px;
    animation: fadeInLeft 1s ease forwards;
}

.hero-content.left-align {
    left: 10%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.3;
    margin-bottom: .5rem;
    background: linear-gradient(120deg, var(--baby-blue), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-family: 'Poppins';
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: var(--baby-blue);
    line-height: 26px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.8;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--navy-blue) !important;
    font-weight: bold !important;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    background: var(--aquamarine-light);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 20px !important;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px) translateY(-50%);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

.cta-btn {
    display: inline-block;
    padding: 12px 55px;
    background: linear-gradient(120deg, #82cfff, #ddf4ff);
    text-decoration: none;
    font-weight: 600;
    color: var(--navy-blue);
    border-radius: 30px;
    transition: all 0.3s linear;
    font-size: 18px;
    text-transform: uppercase;
}

.cta-btn:hover {
    background: linear-gradient(120deg, #ddf4ff, #82cfff);
}

.cta-btn-dark {
    display: inline-block;
    padding: 12px 55px;
    background: linear-gradient(120deg, var(--blue-grotto), var(--aquamarine));
    text-decoration: none;
    font-weight: 600;
    color: var(--baby-blue);
    border-radius: 30px;
    transition: all 0.3s linear;
    font-size: 18px;
    text-transform: uppercase;
    border:none;
}

.cta-btn-dark:hover {
    background: linear-gradient(120deg, var(--aquamarine), var(--blue-grotto));
}

.heading {
    color: var(--dark-black);
    font-size: 42px;
    font-weight: 600;
    font-family: 'Poppins';
    line-height: 46px;
    text-transform: capitalize;
}

.chairman_container {
    position: relative;
}
figure{
    margin-bottom: 0 !important;
}
.chairman_container figure img {
    border-radius: 6px;
    /* position: absolute;
    bottom: 0; */
    width: 100%;
    background: #8c8c8c;
}

.content-info p {
    color: var(--dark-gray);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

.chairman_msg,
.client-logos-section,
.event-section,
.additional-info {
    background-image: url(../images/shaded-bg.webp);
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    background-position: center;
    background-size: cover;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pt-200 {
    padding-top: 200px;
}


.content-info h6 {
    color: var(--dark-black);
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 0;
}

.content-info span {
    color: var(--dark-gray);
    font-size: 18px;
    font-weight: 400;
}


/* counter */

.counter-section {
    position: relative;
    background: url("../images/banner_3.jpg") center/cover no-repeat;
    padding: 80px 20px;
    color: #fff;
}

.counter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(145deg, var(--navy-blue) 0%, var(--aquamarine) 100%);
    opacity: 0.8;
    z-index: 1;
}

.counter-container {
    position: relative;
    z-index: 2;
}

.counter-box {
    border-radius: 8px;
    text-align: center;
    padding: 20px 10px;
    border: 1px solid #ffffff66;
    background: #1040717d;
    backdrop-filter: blur(10px);
}

.counter-box h2 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    font-family: Roboto;
}

.counter-box p {
    font-size: 18px;
    font-weight: 500;
    color: #eee;
    margin: 0;
    position: relative;
    display: inline-block;
    font-family: poppins;
}


/* services */

.our-services .box {
    background: var(--baby-blue);
    border-bottom: 4px solid var(--aquamarine-light);
    border-radius: 14px;
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    min-height: 350px;
}

.service-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 30px auto;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff00;
    border: 2px solid #bee2ff4a;
    transition: all 0.5s linear;
}

.our-services .box img {
    max-width: 100%;
    padding: 10px;
    width: 65px;
    margin: 0 auto;
}

.our-services .box h4 {
    color: var(--dark-black);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 24px;
}

.our-services .box p {
    color: var(--dark-gray);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.our-services .box:hover {
    background-image: linear-gradient(180deg, var(--navy-blue) 0%, var(--aquamarine) 100%);
}

.our-services .box:hover .service-icon {
    background: var(--baby-blue);
    transform: scale(1.0);
}

.our-services .box:hover h4,
.our-services .box:hover p {
    color: #fff;
}

/* client logo */


.gradient-heading {
    background: linear-gradient(120deg, var(--navy), var(--lightblue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.logo-img {
    max-width: 100%;
    max-height: 100px;
    margin: auto;
    display: block;
    /* filter: grayscale(100%); */
    transition: all 0.3s ease;
}

.logo-img:hover {
    /* filter: grayscale(0%); */
    transform: scale(1.05);
}

.client-logos .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
    border: 1px solid #e1e1e166;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
}

/* team */


.team-section .swiper-slide {
    background: var(--baby-blue);
    border-bottom: 4px solid var(--aquamarine-light);
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    height: 100%;
    padding: 14px;
}

.team-section .swiper-slide:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    background: #8c8c8c;
}

.team-name {
    color: var(--dark-black);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 24px;
}

.team-role {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
    font-weight: 500;
}

/* lead form */

.lead-form {
    position: relative;
    z-index: 99;
}

.form-container {
    background: var(--baby-blue);
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    border-radius: 8px;
    max-width: 900px;
}

.lead-title {
    color: var(--dark-black);
    margin-bottom: 30px;
    text-transform: capitalize;
    line-height: 24px;
    font-size: 25px;
}

.formInfo .form-control {
    height: auto;
    padding: 10px 12px;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 14px;
    width: 100%;
}

.form-control {
 border: none !important;
 background: transparent !important;
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--aquamarine-light);
    border-radius: 40px;
    background: #f9f9fb;
    padding: 5px 12px;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--aquamarine-light);
    justify-content: space-between;
    width: 100%;
    flex-wrap: nowrap;
    margin-bottom: 1rem;
}

.input-group:hover {
    border-color: var(--aquamarine);
    box-shadow: 0 3px 10px var(--aquamarine-light);
}

.formInfo .fa-caret-down {
    color: var(--dark-gray) !important;
}

/* event */

.event_section .nav-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
}

.event_section .nav-tabs .nav-link {
    color: #000;
    background: #87ceeb;
    border-radius: 0;
    border: 0;
}


.event_section .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background: var(--navy-blue) !important;
    color: var(--baby-blue) !important;
    border-radius: 40px;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
}

.event_section .nav-tabs .nav-link {
    color: var(--dark-black);
    background: var(--aquamarine-light);
    border-radius: 40px;
    border: 0;
    font-weight: 600;
    font-size: 18px;
}

.event_section .nav-tabs button {
    width: 23.5%;
}

.event-img {
    background: #eef1f7;
    padding: 10px;
    border-radius: 5px;
}

.event-img img {
    border-radius: 4px;
}

/* footer */

.additional-info {
    /* background: linear-gradient(90deg, #04586B, #056B80, #07849A, #0898AD); */
    /* padding: 50px 20px; */
}

.footer_bottom {
    background: #023876;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    border-top: 1px solid #ffffff2b;
}

.footer_bottom p {
    margin-bottom: 0;
    color: var(--baby-blue);
    font-size: 14px;
    padding-top: .6rem;
}


.footer-box h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    font-family: 'Poppins';
    line-height: 36px;
    text-transform: capitalize;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    margin: auto;
}

.footer-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0px;
    text-align: center;
    padding: 60px 25px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer-box h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #04586B;
    /* darkest shade */
}


.cta-section {
    color: var(--dark-black);
    border-radius: 0px;
    background: linear-gradient(to bottom, #ffffff, #40abec);
    border-bottom: 8px solid #eff9ff;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-black);
}

.brochure-btn {
    background: #fff;
    color: #003371;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    padding: 12px 55px;
    font-size: 18px;
}

.brochure-btn:hover {
    background: var(--aquamarine-light);
    color: #003371;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.inner_head {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.swiper {
    overflow: hidden;
    position: relative;
}

.our-services {
    position: relative;
}

.blue-1 {
    background-color: var(--navy-blue);
    transition: all 0.3s linear;
}

.blue-1:hover {
    opacity: 0.7;
}

.blue-2 {
    background-color: var(--blue-grotto);
    transition: all 0.3s linear;
}

.blue-2:hover {
     opacity: 0.7;
}

.blue-3 {
    background-color: var(--aquamarine);
    transition: all 0.3s linear;
}

.blue-3:hover {
     opacity: 0.7;
}

.footlink {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

ul.footlink li {
    display: inline-block;
    vertical-align: top;
}



.footlink li .ftxtblk {
    padding-bottom: 20px;
}


.footlink li .ftxtblk span {
    font-size: 20px;
    line-height: 16px;
    font-family: "Poppins";
    padding-bottom: 15px;
    color: #fff;
    display: block;
    font-weight: 600;
}

.footer_link li {
    width: 35px !important;
    height: 35px !important;
}

ul.footlink li .ftxtblk span a {
    color: var(--aquamarine-light);
}

ul.ftxtblklist li {
    width: 100%;
    margin-bottom: 0px;
}

ul.ftxtblklist li a {
    color: #fff;
    font-size: 13px;
    line-height: 26px;
    font-weight: 400;
}

ul.ftxtblklist li a:hover {
    color: var(--red);
}


.footerbg .custom-border {
    border-top: 1px solid #ffffff66;
    margin-top: 30px;
    list-style: none;
}

.footerbg {
    margin-top: 0px;
    padding-top: 40px;
    background-image: linear-gradient(359deg, var(--navy-blue) 0%, var(--aquamarine) 100%);
}


.sociallink.footer_link {
    padding: 0;
    margin-top: 25px;
}

.sociallink.footer_link i {
    color: #fff;
    line-height: 30px;
}

.sub-para {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    line-height: 23px;
    font-weight: 400;
}

.column.sidebar1 {
    width: 23%;
    vertical-align: top;
}

.column.sidebar2 {
    width: 56%;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 20px;
    padding-right: 20px;
    vertical-align: top;
}

.ftxtblk ul.ftxtblklist {
    padding-left: 0 !important;
}

.column {
    display: table-cell;
}

.content-table {
    width: 100%;
    display: table;
    border-collapse: separate;
}

.content-row {
    display: table-row;
}

.text-justify{
    text-align: justify;
}

.offcanvas-body {
    padding: 1rem 0 !important;
}


#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: none;
    font-size: 18px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    z-index: 99;
    background: var(--dark-black);
    padding: 10px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 8px;
}

#backToTop:hover {
    background: var(--aquamarine);
}


.video-box {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: #000;
  aspect-ratio: 16 / 9;
  height: 295px;
  width: 100%;
}

.video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.video-box:hover img {
  opacity: 0.7;
}

.thumbnail {
  border-radius: 8px;
}

.yt-icon {
  font-size: 40px;
  color: #c90000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*=================================== Responsive Css ===================================*/


@media (min-width: 1200px) {

    .container,
    .container-fluid {
        padding: 0;
    }
}

@media (max-width: 1250px) {
    .hero-content h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .sub-para {
        font-size: 14px;
        line-height: 22px;
    }

    .our-services .box p {
        font-size: 14px;
        line-height: 22px;
    }

    .event_section .nav-tabs .nav-link {
        font-size: 16px;
    }

    .cta-btn-dark,
    .cta-btn {
        font-size: 16px;
    }

    .footer-box h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .brochure-btn {
        font-size: 16px;
    }

    .heading {
        font-size: 40px;
    }

    .phone-email li a {
        font-size: 14px;
    }

    .navbar-nav li a {
        font-size: 14px;
    }

    .content-info p {
        font-size: 16px;
    }
}

/* ========= HEADER MOBILE VIEW ========= */
@media (max-width: 1200px) {
    .offcanvas-body ul {
        padding-left: 0;
    }

    .offcanvas-body ul li {
        list-style: none;
        border-bottom: 1px solid #f1f1f1;
    }

    .offcanvas-body ul li a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: var(--dark-black);
    }

    .offcanvas-body ul li a:hover {
        background: #f1f1f1;
        border-radius: 5px;
    }

    .submenu-list-mobile {
        display: none;
        margin-left: 15px;
        padding-left: 10px;
        border-left: 2px solid var(--aquamarine);
    }

    .submenu-mobile.open>.submenu-list-mobile {
        display: block;
    }

    .toggle-arrow {
        cursor: pointer;
        padding: 10px;
        color: var(--aquamarine);
    }

    .toggle-arrow i {
        transition: transform 0.3s;
    }

    .offcanvas-header {
        background-color: var(--baby-blue);
    }

    .offcanvas-logo img {
        width: 130px;
    }

    .btn-close {
        opacity: 1 !important;
        background-color: #fff;
    }

    .py-80 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .pt-80 {
        padding-top: 50px;
    }

    .pb-80 {
        padding-bottom: 50px;
    }

    .counter-section {
        padding: 50px 20px;
    }
}

@media (max-width: 1100px) {

.brochure-btn {
  padding: 12px 20px;
}
    .footer-box h3 {
        font-size: 18px;
        line-height: 27px;
    }



}

@media (max-width: 992px) {
    .footlink {
        grid-template-columns: 1fr 1fr;
        padding: 0;
    }

 

}
@media (max-width: 900px) {
 .footer-box {
    width: 315px;
    margin-bottom: 1rem;
}
   .footer-grid {
    overflow-x: auto;
}
}
@media (max-width: 768px) {
.hero-section {
    height: 85vh;
}
    .column.sidebar2,
    .column.sidebar1 {
        width: 100%;
    }

    .content-info h6 {
        font-size: 18px;
        line-height: 24px;
    }

    .content-info span {
        font-size: 16px;
    }

    .heading {
        font-size: 36px;
        line-height: 40px;
    }

    .column.sidebar2 {
        margin-left: 0px;
        padding-left: 0px;
        margin-top: 30px;
    }

    .column {
        display: block;
    }

    .form-container {
        padding: 20px;
    }

    .hero-content.left-align {
        left: 5%;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .team-photo {
        height: 280px;
    }

    .brochure-btn {
        padding: 12px 30px;
    }

    .cta-btn-dark,
    .cta-btn {
        padding: 12px 30px;
    }

    .light-btn {
        font-size: 14px;
        padding: 6px 14px;
    }

    .navbar-brand img {
        max-width: 100%;
        width: 140px;
    }

    ul.sociallink li {
        margin-right: 5px;
    }

    .border-left:first-child {
        border-left: none;
    }

    .swiper-button-prev,
    .swiper-button-next,
    .swiper-rtl .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px !important;
    }
}

@media (max-width:605px) {
    .heading {
        font-size: 36px;
        line-height: 42px;
    }

    .info_top .sociallink {
        display: none;
    }

    .info_top div.border-left {
        border-left: 1px solid #ffffff00;
        margin: 0 !important;
    }

    .phone-email li:first-child {
        padding: 0;
    }

    .event_section .nav-tabs .nav-link {
        width: 47%;
    }

    .event_section .nav-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .lead-form .heading {
        font-size: 24px;
        line-height: 36px;
        ;
    }

    .heading {
        font-size: 32px;
        line-height: 40px;
    }
}
@media (max-width:500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

     .footer-box {
        width: 100%;
        margin-bottom: 0;
    }
}
@media (max-width:450px) {
    .info_top {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        padding-bottom: 2px;
    }

    .footlink {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

@media (max-width: 480px) {}

@media (max-width: 410px) {
    .heading {
        font-size: 30px;
        line-height: 36px;
    }
}

@media (max-width: 375px) {
    .event_section .nav-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .event_section .nav-tabs .nav-link {
        width: 48%;
    }

    .event_section .nav-tabs .nav-link {
        font-size: 13px;
        padding: .5rem;
    }

    .hero-content.left-align {
        left: 0%;
        max-width: 100%;
    }
}

@media (max-width: 330px) {

    .cta-btn-dark,
    .cta-btn {
        padding: 12px 20px;
    }

    .cta-btn-dark,
    .cta-btn {
        font-size: 14px;
    }
}


@media only screen and (max-width: 320px) and (max-height: 560px) {
    .hero-section {
        height: 95vh;
    }
}