/* ==== Google Font Import ==== */
@font-face{
    font-family: Poppins;
    src: url(/fonts/Poppins-Light.ttf);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* ==== Colours ==== */
:root{
    --body-color: #E3FDFD;
    --nav-color: #71C9CE;
    --side-nav: #A6E3E9;
    --text-color: #fff;
    --search-bar: #;
    --search-text: #;
}

body{
    height: 100vh;
    background-color: var(--body-color);
}

/*Navbar*/

nav{
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    width: 100%;
    background-color: var(--nav-color);
    z-index: 100;
}

nav .nav-bar{
    position: relative;
    height: 100%;
    max-width: 1000px;
    width: 100%;
    background-color: var(--nav-color);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

nav .nav-bar .sidebarOpen{
    color: var(--text-color);
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    display: none;
}


.nav-bar .logo a::before{
    content: '';
    position: absolute;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: var(--text-color);
}

.logo-txt{
    display: none;
}

.menu .logo-toggle{
    display: none;
}

.nav-bar .nav-links{
    display: flex;
    align-items: center;
}

.nav-bar .nav-links li{
    display: flex;
    margin: 0 5px;
    list-style: none;
}

.nav-links li a{
    position: relative;
    top: 4px;
    font-size: 18px;
    font-weight: 100;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px;
    text-decoration: none;
}

.nav-links li a:hover {
    color: #2db1d2;
    opacity: 1;
}

.subscribe-btn button{
    position: relative;
    left: 100%;
    bottom: 2px;
    font-size: 18px;
    padding: 10px;
    height: 100%;
    max-width: 100%;
    border:  #fff;
    border-radius: 10px;
}

/*Navbar*/

/*Hero Section*/


/*About-us Section*/

.heading{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}

.heading h1{
    font-size: 50px;
    color: var(--nav-color);
    margin-bottom: 25px;
    position: relative;
}

.heading h1::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: var(--side-nav);
}

.heading p{
    font-size: 18px;
    color: #000;
    margin-bottom: 35px;
}

.container{
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
}

.about{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.about-image{
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
}

.about-image2{
    flex: 1;
    margin-left: 60px;
    overflow: hidden;
}



.about-image img{
    max-width: 95%;
    height: 80%;
    display: block;
    transition: 0.5s ease;
}

.about-image:hover img{
    transform: scale(1.2);
}

.about-image2 img{
    max-width: 95%;
    height: 120%;
    display: block;
    transition: 0.5s ease;
}

.about-image2:hover img{
    transform: scale(1.2);
}

.about-content{
    flex: 1;
}

.about-content h2{
    font-size: 23px;
    margin-bottom: 15px;
    color: #000;
}

.about-content p{
    font-size: 20px;
    line-height: 1.5;
    color: #000;
}


/* Team Section */

.team{
    padding: 2em;
}

.row{
    display: flex;
    justify-content: center;
    padding: 2em 1em;
}

.row h1{
    font-size: 40px;
    color: var(--nav-color);
    margin-bottom: 25px;
    position: relative;
}

.row h1::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: var(--side-nav);
}

.column{
    display: inline-flex;
    text-align: center;
    color: #1f003b;
    padding: 0em 6em;
}

.card {
    box-shadow: 0 0 2.2em rgba(35, 8, 71, 0.15);   
    border-radius: 0.6em;
    cursor: pointer;
    transition: 0.3s;
    padding: 5em 5em;
}

.card .img-container {
    width: 8em;
    height: 8em;
    background-color: var(--nav-color);
    padding: 0.6em;
    border-radius: 50%;
    margin: 0 auto 2em auto;
}

.card img {
    width: 100%;
    border-radius: 50%;
}

.card h3 {
    text-align: center;
    font-weight: 500;
    font-size: 16px;
}

.card a{
    text-decoration: none;
    color: #000;
}

.card a:hover{
    text-decoration: none;
    color: #000;
}

.card p {
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0.4em 0 2em 0;
    letter-spacing: 2px;
}

.card:hover{
    background: linear-gradient( var(--nav-color), var(--body-color) );
}

.card:hover .img-container{
    transform: scale(1.15);
}

.heading-team{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}

.heading-team h1{
    font-size: 30px;
    color: var(--nav-color);
    margin-bottom: 25px;
    position: relative;
}

.heading-team h1::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: var(--side-nav);
}

.heading-team p{
    font-size: 18px;
    color: #000;
    margin-bottom: 35px;
}

.heading-team img{
    max-width: 95%;
    height: 200px;
    position: relative;
    transition: 0.5s ease;
}

.heading-team:hover img{
    transform: scale(1.2);
}




/* Contact */

.contact-heading{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 150px auto;
}

.contact-heading h1{
    font-size: 50px;
    color: var(--nav-color);
    margin-bottom: -80px;
    position: relative;
}

.contact-heading h1::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: var(--side-nav);
}

.contact{
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-container{
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-left-title h2{
    font-weight: 600;
    color: var(--nav-color);
    font-size: 40px;
    margin-bottom: 5px;
}

.contact-left-title hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: var(--nav-color);
    border-radius: 10px;
    margin-bottom: 20px;
}

.hr-line hr{
    border: none;
    width: 100.4%;
    height: 8px;
    background-color: var(--nav-color);
    border-radius: 10px;
    margin: -6px;
}

.contact-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: var(--nav-color);
    border-radius: 50px;
}

.contact-left textarea{
    height: 140px;
    padding: 15px;
    border-radius: 20px;
}

.contact-inputs:focus{
    border: 2px solid var(--side-nav);
}

.contact-inputs::placeholder{
    color: var(--nav-color);
}

.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, var(--nav-color), var(--nav-color));
    cursor: pointer;
}

.contact-left button img{
    height: 15px;
}

.contact-right img{
    width: 500px;
}


/* Gallery Section */

.gallery-heading{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 150px auto;
}

.gallery-heading h1{
    font-size: 50px;
    color: var(--nav-color);
    margin-bottom: -80px;
    position: relative;
}

.gallery-heading h1::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: var(--side-nav);
}

.gallery-container{
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    width: 100%;
    height: 80%;
    padding: 10px;
    box-shadow: 0 0 3px 0 rgba(0,0,0,0.3);
    margin: 0px auto;
    justify-content: space-evenly;
    align-items: center;
}

.gallery-item{
    flex-basis: 20.0%;
    margin-bottom: 0px;
    opacity: 0.85;
    cursor: pointer;
}

.gallery-item:hover{
    opacity: 1;
}

.gallery-item img{
    width: 80%;
    height: 50%;
    object-fit: cover;
}

/* Lightbox */

.lightbox{
    position: fixed;
    display: none;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    overflow: auto;
    top: 0;
    left: 0;
}

.lightbox-content{
    position: relative;
    width: 65%;
    height: 55%;
    top: 10%;
    margin: 5% auto;
}

.lightbox-content img{
    width: 100%;
    height: 140%;
    border: 6px solid #fff;
    object-fit:scale-down;
}

.lightbox-prev,.lightbox-next{
    position: absolute;
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    padding: 9px;
    top: 65%;
    cursor: pointer;
}

.lightbox-prev{
    left: 0;
}

.lightbox-next{
    right: 0;
}

/* blog */

.card-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 100px;
}

.card-blog{
    width: 325px;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
    margin: 20px;
}

.card-blog img{
    width: 100%;
    height: auto;
}

.card-content{
    padding: 16px;
}

.card-content h3{
    font-size: 28px;
    margin-bottom: 8px;
}

.card-content p{
    color: #666;
    font-size: 15px;
    line-height: 1.3;
}

/* Newsletter */



.sub-btn{
    padding: 10px 60px;
    background: #fff;
    border: 0;
    outline: none;
    cursor: pointer;
    font-size: 22px;
    font-weight: 500;
    border-radius: 30px;
}

.newsletter{
    background: var(--nav-color);
    margin: 0px auto;
    text-align: center;
    max-width: 330px;
    padding: 50px 30px;
    border-radius: 5px;
    color: #fff;
    position: relative;
    top: 0.7em;
    right: 35em;
}

.newsletter-sub{
    width: 330px;
    background: var(--nav-color);
    margin: 0px auto;
    text-align: center;
    position: absolute;
    padding: 50px 30px;
    border-radius: 5px;
    color: #fff;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;
}

.open-newsletter-sub{
    visibility: visible;
    top: 25em;
    transform: translate(-50%,-50%) scale(1);
}

.newsletter-sub h1{
    font-size: 30px;
    font-weight: 500;
    margin: 30px 0 10px;
}


.newsletter-sub button{
    position: relative;
    top: 15%;
    left: 0%;
    font-size: 18px;
    padding: 10px;
    height: 100%;
    max-width: 100%;
    border:  #fff;
    border-radius: 10px;
}

.newsletter-sub hr{
    width: 80px;
    height: 3px;
    margin: 30px auto;
    border: 0;
    background: var(--text-color);
}

.newsletter-sub p{
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.newsletter-sub input{
    border-radius: 3px;
    background-color: rgba(0,0,0,0.4);
    width: 100%;
    height: 55px;
    border: 0px;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    outline: none;
    box-sizing: border-box;
    font-size: 16px;
}

.newsletter-img{
    background-image: url(/images/twolv.png);
    background-size: cover;
}

.newsletter h1{
    font-size: 34px;
    font-weight: 500;
    margin: 30px 0 10px;
}

.newsletter hr{
    width: 70px;
    height: 3px;
    margin: 30px auto;
    border: 0;
    background: rgba(255, 255, 255, 0.5);
}



.newsletter p{
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.newsletter input{
    border-radius: 3px;
    background-color: rgba(0,0,0,0.4);
    width: 100%;
    height: 55px;
    border: 0px;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    outline: none;
    box-sizing: border-box;
    font-size: 16px;
}

::placeholder{
    color: rgba(255, 255, 255, 0.8);
}

.newsletter button{
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    height: 50px;
    background-color: transparent;
    color: #fff;
    padding: 0px 28px;
    cursor: pointer;

}

.newsletter button:hover{
    background-color: var(--nav-color);
    border-color: var(--text-color);
}

.newsletter.active {
    transition: all 300ms ease-in-out;
    transform: translate(-50%, -50%) scale(1);
}

/* thank you */

.popup{
    width: 400px;
    background: #fff;
    border-radius: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 30px 30px;
    color: #333;
}

.popup img{
    width: 100px;
    margin-top: -50px;
    border-radius: 50%;
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
}

.popup h2{
    font-size: 38px;
    font-weight: 500;
    margin: 30px 0 10px;
}

.popup button{
    width: 100%;
    margin-top: 50px;
    padding: 10px 0;
    background: var(--nav-color);
    color: #fff;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0,0,0,0.2);
}

.popup button a{
    text-decoration: none;
    color: #fff;
}

/* Footer */
.footer-container{
	max-width: 1170px;
	margin:auto;
}
.footer-row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: var(--side-nav);
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: mintcream;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: var(--nav-color);
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: var(--nav-color);
	text-decoration: none;
	font-weight: 300;
	color: #ffffff;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: var(--nav-color);
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: var(--text-color);
	background-color: var(--nav-color);
}






@media (max-width: 790px) {

    nav .nav-bar .sidebarOpen{
    display: block;
   }
    
    .menu{
        position: fixed;
        height: 100%;
        width: 320px;
        left: -100%;
        top: 0;
        padding: 20px;
        background-color: var(--side-nav);
        z-index: 100;
        transition: all 0.4s ease;
    }

    nav.active .menu{
        left: -0%;
    }

    nav.active .nav-bar .navLogo a{
        opacity: 0;
        transition: all 0.3s ease;
    }
 

    .logo{
        height: 80px;
    }

    .logo-txt{
    display: block;
    font-size: 40px;
    color: var(--text-color);
    }

    .menu .logo-toggle{
        display: block;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-toggle .sidebarClose{
        color: var(--text-color);
        font-size: 24px;
        cursor: pointer;
    }

    .nav-bar .nav-links{
        flex-direction: column;
        padding-top: 60px;
    }

    .nav-links li a{
        display: block;
        margin-top: 20px;
    }

    .subscribe-btn button{
    position: relative;
    top: 15%;
    left: 60%;
    font-size: 17px;
    padding: 10px;
    height: 100%;
    max-width: 100%;
    border:  #fff;
    border-radius: 10px;
    }
    .subscribe-btn{
    position: fixed;
    font-size: 10px;
    width: 300px;
    left: -120%;
    top: 90%;
    z-index: 100;
    transition: all 0.4s ease;
}

nav.active .subscribe-btn{
    left: -20%;
}

/*Hero Section*/

.hero-section{
    position: relative;
    top: 10%;
}

.hero-section img{
    width: 100%;
}

/*About-us Section*/

.heading{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 60px auto;
}

.heading h1{
    font-size: 40px;
    color: var(--nav-color);
    margin-bottom: 25px;
    position: relative;
}

.heading p{
    font-size: 14px;
    color: #000;
    margin-bottom: 35px;
}

.container{
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
}

.about{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.about-content h2{
    font-size: 18px;
    margin-bottom: 15px;
    color: #000;
}

.about-content p{
    font-size: 14px;
    line-height: 1.5;
    color: #000;
}

/* team */

.column{
    display: inline-flex;
    text-align: center;
    color: #1f003b;
    padding: 1em 2em;
}

.card {
    box-shadow: 0 0 2.2em rgba(25, 0, 58, 0.15);   
    border-radius: 0.6em;
    cursor: pointer;
    transition: 0.3s;
    padding: 5em 5em;
}


.contact-inputs{
    width: 80vw;
}

.contact-right{
    display: none;
}

/* Gallery */

.gallery-container{
width: 100%;
}

.gallery-item{
flex-basis: 49.80%;
margin-bottom: 3px;
}

.lightbox-content{
   width: 80%;
   height: 60%;
   margin: 15% auto;
}

.newsletter-img{
    background-image: url(/images/twolv.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.newsletter{
    background: var(--nav-color);
    margin: 0px auto;
    text-align: center;
    max-width: 330px;
    padding: 50px 30px;
    border-radius: 5px;
    color: #fff;
    position: relative;
    top: 0.7em;
    right: 3em;
}

.newsletter hr{
    width: 70px;
    height: 3px;
    margin: 30px auto;
    border: 0;
    background: rgba(255, 255, 255, 0.5);
}

.newsletter p{
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.newsletter input{
    border-radius: 3px;
    background-color: rgba(0,0,0,0.4);
    width: 100%;
    height: 55px;
    border: 0px;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    outline: none;
    box-sizing: border-box;
    font-size: 16px;
}

::placeholder{
    color: rgba(255, 255, 255, 0.8);
}

.newsletter button{
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    height: 50px;
    background-color: transparent;
    color: #fff;
    padding: 0px 28px;
    cursor: pointer;

}

}

@media (max-width: 320px) {

    nav .nav-bar .sidebarOpen{
    display: block;
   }
    
    .menu{
        position: fixed;
        height: 100%;
        width: 320px;
        left: -100%;
        top: 0;
        padding: 20px;
        background-color: var(--side-nav);
        z-index: 100;
        transition: all 0.4s ease;
    }

    nav.active .menu{
        left: -0%;
    }

    nav.active .nav-bar .navLogo a{
        opacity: 0;
        transition: all 0.3s ease;
    }
 

    .logo{
        height: 80px;
    }

    .logo-txt{
    display: block;
    font-size: 40px;
    color: var(--text-color);
    }

    .menu .logo-toggle{
        display: block;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-toggle .sidebarClose{
        color: var(--text-color);
        font-size: 24px;
        cursor: pointer;
    }

    .nav-bar .nav-links{
        flex-direction: column;
    }

    .nav-bar{
        position: relative;
        height: 10px;
        padding: 0px;
    }


    .nav-links li a{
        display: block;
        margin-top: 20px;
    }

    .sub-btn{
        display: none;
    }
   



/*Hero Section*/

.hero-section{
    position: relative;
}

.hero-section img{
    width: 100%;
}

.carousel-item img {
    margin-top: 100px;
    max-height: 200px; /* Adjust as needed */
    object-fit: contain; /* Crop images to fit */
  }

.container-sub{
    display: none;
}
/*About-us Section*/

.heading{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 60px auto;
}

.heading h1{
    font-size: 22px;
    color: var(--nav-color);
    margin-bottom: 15px;
    position: relative;
}

.heading p{
    font-size: 16px;
    color: #000;
    margin-bottom: 35px;
}

.container{
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
}

.about {
    flex-direction: column; /* Stack content and images vertically */
    align-items: stretch; /* Stretch items to fill width */
  }

  .about-content {
    margin: 20px 0; /* Add vertical spacing between content and images */
    margin-right: 0; /* Remove right margin */
  }

  .about-image,
  .about-image2 {
    margin: 0;
 /* Remove any margins on the image container */
  }

  /* team */
.column {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    text-align: center;
    color: #1f003b;
    padding: 1em 2em;
  }
  
  .card {
    box-shadow: 0 0 2.2em rgba(25, 0, 58, 0.15);
    border-radius: 0.6em;
    cursor: pointer;
    transition: 0.3s;
    padding: 2em 1em; /* Adjusted padding */
    box-sizing: border-box;
  }
  
  .contact-inputs {
    width: 80vw;
    max-width: 600px; /* Added max-width */
    box-sizing: border-box;
  }
  
  .contact-right {
    display: none; /* Hidden by default */
  }
  
  /* Gallery */
  .gallery-container {
    width: 100%;
    display: flex;
    margin: 0 auto;
    padding: 10px 20px;
    flex-wrap: wrap; /* Allow items to wrap */
  }
  
  .gallery-item {
    flex-basis: 49%; /* Slightly adjusted */
    margin-bottom: 3px;
    box-sizing: border-box;
  }
  
  .lightbox-content {
    width: 80%;
    max-height: 80%; /*added max height*/
    margin: 5% auto; /*adjusted margin*/
    box-sizing: border-box;
  }
  
  .newsletter-img {
    background-image: url(/images/twolv.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; /* Center the image */
  }
  
  .newsletter {
    background: var(--nav-color); /* Use CSS variable if available */
    margin: 0 auto;
    text-align: center;
    max-width: 330px;
    padding: 50px 30px;
    border-radius: 5px;
    color: #fff;
    position: relative;
    top: 0;
    right: 0;
    box-sizing: border-box;
  }
  
  .newsletter hr {
    width: 70px;
    height: 3px;
    margin: 30px auto;
    border: 0;
    background: rgba(255, 255, 255, 0.5);
  }
  
  .newsletter p {
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
  }
  
  .newsletter input {
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 55px;
    border: 0;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    outline: none;
    box-sizing: border-box;
    font-size: 16px;
  }
  
  ::placeholder {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .newsletter button {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    height: 50px;
    background-color: transparent;
    color: #fff;
    padding: 0 28px;
    cursor: pointer;
  }
  
   .footer-col h4 {
    font-size: 14px; /* Reduce the heading font size */
  }

  .footer-col ul li a{
    font-size: 12px;
  }

  .social-links a i {
    font-size: 10px; /* Reduce the icon font size */
    margin: 0 5px; /* Adjust the icon spacing */
  }

  .footer-col {
    padding: 10px 0; /* adjust the padding of the footer column */
  }

}

@media (max-width: 1024px) {

    .nav-bar {
        padding: 15px 20px;
    }

    .nav-bar .logo-txt {
        font-size: 1.5rem; /* Adjust logo text size */
    }

    .nav-links li a {
        font-size: 1rem; /* Adjust navigation link font size */
        padding: 10px 15px; /* Adjust padding */
    }
    
    .subscribe-btn .sub-btn{
    position: relative;
    left: 40%;
    }


    .heading h1 {
        font-size: 2.5rem; /* Adjust heading size */
    }

    .heading p {
        font-size: 1rem; /* Adjust paragraph size */
    }

    .newsletter{
        background: var(--nav-color);
        margin: 0px auto;
        text-align: center;
        padding: 50px 40px;
        border-radius: 5px;
        color: #fff;
        position: relative;
        top: 0.7em;
        right: 14em;
        max-height: 320px;
        max-width: 500px;
    }

    .newsletter h1{
        font-size: 30px;
        font-weight: 500;
    }

    .newsletter hr {
        width: 70px;
        height: 3px;
        margin: 10px auto;
        border: 0;
        background: rgba(255, 255, 255, 0.5);
      }
      
      .newsletter p {
        font-size: 12px;
        line-height: 24px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 30px;
      }
      
      .newsletter input {
        border-radius: 3px;
        background-color: rgba(0, 0, 0, 0.4);
        width: 80%;
        height: 35px;
        border: 0;
        padding: 0 20px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 12px;
        outline: none;
        box-sizing: border-box;
        font-size: 16px;
      }
      
    
      
      .newsletter button {
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 3px;
        height: 50px;
        background-color: transparent;
        color: #fff;
        padding: 0 28px;
        cursor: pointer;
      }

    .newsletter-img {
        background-image: url(/images/twolv.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        
      }


    .team {
        display: flex;
        flex-direction: column; /* Stack columns vertically */
        align-items: center; /* Center horizontally */
    }

    .column-container {
        display: flex;
        justify-content: center; /* Center cards horizontally */
        flex-wrap: wrap; /* Allow wrapping */
        width: 100%; /* Take full width */
    }

    .column {
        width: auto; /* Allow cards to take their natural width */
        margin: 10px; /* Spacing between cards */
        text-align: center; /* Center content */
    }

    .card {
        display: inline-block; /* Make cards inline-block */
        margin: 5px; /* Spacing between cards */
    }

    /* Adjust margins for the second row */
    .column-container .column:nth-child(2) .card {
        margin: 10px;
    }
    

    .about {
        flex-direction: column; /* Stack about sections vertically */
    }

    .about-image, .about-image2 {
        width: 100%; /* Make images full-width */
        margin-bottom: 20px; /* Add space below images */
    }

    .about-content {
        width: 100%; /* Make content full-width */
    }

    .team .column {
        width: 50%; /* Display team cards in two columns */
    }

    .footer-container {
        padding: 30px 20px; /* Adjust footer padding */
    }

    .footer-col {
        width: 50%; /* Display footer columns in two columns */
        margin-bottom: 30px; /* Add space between footer columns */
    }

    .footer-col:last-child {
        width: 100%; /* Make follow us full width */
    }

    
    
 

    
}


@media (max-width: 667px) {

nav .nav-bar .sidebarOpen{
display: block;
}

.menu{
    position: fixed;
    height: 100%;
    width: 300px;
    left: -100%;
    top: 0;
    padding: 20px;
    background-color: var(--side-nav);
    z-index: 100;
    transition: all 0.4s ease;
}

nav.active .menu{
    left: -0%;
}

.subscribe-btn button{
    position: relative;
    top: 15%;
    left: 60%;
    font-size: 14px;
    padding: 10px;
    height: 100%;
    max-width: 100%;
    border:  #fff;
    border-radius: 10px;
}

.subscribe-btn{
    position: fixed;
    font-size: 10px;
    width: 300px;
    left: -145%;
    top: 80%;
    z-index: 100;
    transition: all 0.4s ease;
}

nav.active .subscribe-btn{
    left: -45%;
}

.logo{
    height: 60px;
}

nav.active .nav-bar .navLogo a{
    opacity: 0;
    transition: all 0.3s ease;
}

.logo-txt{
display: block;
font-size: 16px;
color: var(--text-color);
}

.menu .logo-toggle{
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-toggle .sidebarClose{
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
}

.nav-bar .nav-links{
    flex-direction: column;
    padding-top: 60px;
}

.nav-links li a{
    display: block;
    margin-top: 20px;
}

.heading{
    padding: 0px 10px;
}

.heading h1{
    font-size: 12px;
}

.container{
    padding: 0px;
}

.about{
    padding: 40px;
}

.about-image{
    position: relative;
    left: 30px;
    margin-right: 40px;
    margin-bottom: 40px;
}

.about-image2{
    width: 100%;
    height: 100%;
    margin-right: 60px;
    margin-bottom: 10px;
}

.about-content p{
    padding: 40px;
    font-size: 16px;
}


}


@media (max-width: 608px) {

nav .nav-bar .sidebarOpen{
display: block;
}

.menu{
    position: fixed;
    height: 100%;
    width: 260px;
    left: -100%;
    top: 0;
    padding: 20px;
    background-color: var(--side-nav);
    z-index: 100;
    transition: all 0.4s ease;
}

nav.active .menu{
    left: -0%;
}

.subscribe-btn button{
    position: relative;
    top: 15%;
    left: 60%;
    font-size: 14px;
    padding: 10px;
    height: 100%;
    max-width: 100%;
    border:  #fff;
    border-radius: 10px;
}

.subscribe-btn{
    position: fixed;
    font-size: 10px;
    width: 300px;
    left: -145%;
    top: 80%;
    z-index: 100;
    transition: all 0.4s ease;
}

nav.active .subscribe-btn{
    left: -45%;
}




.logo{
    height: 50px;
}

nav.active .nav-bar .navLogo a{
    opacity: 0;
    transition: all 0.3s ease;
}

.logo-txt{
display: block;
font-size: 16px;
color: var(--text-color);
}

.menu .logo-toggle{
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-toggle .sidebarClose{
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
}

.nav-bar .nav-links{
    flex-direction: column;
    padding-top: 60px;
}

.nav-links li a{
    display: block;
    margin-top: 20px;
}


/* Gallery */

.gallery-item{
flex-basis: 100%;
margin-bottom: 1px;
}

.lightbox-content{
   width: 90%;
   margin: 20px auto;
}

}