/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

/* Local Font */
@font-face {
    font-family: "neuzon";
    src: url("../fonts/neuzon.ttf");
}

:root {
    --white: #fff;
    --black: #000;
    --primary: #03A8EA;
    --secondary: #333333;

}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Archivo", sans-serif;
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: "neuzon";
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 15px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    display: inline-block;
    padding: 1.04em 1.96em;
    border-radius: 500px;
    line-height: normal;
    font-family: 'neuzon';
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}

.heading {}

.subtitle {}

/* !GLOBAL CSS */


/* mouse animation css  */


/* .bounce-element {
	animation: bounce 0.9s infinite alternate;
	-webkit-animation: bounce 0.9s infinite alternate;
}
@keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
@-webkit-keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
.mouse {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 11;
	text-align: center;
} */


/* mouse animation css  */


/* NAV HEADER CSS */

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    transition: 0.3s ease-in-out;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    align-items: center;
    gap: 60px;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
    position: relative;
}

.navbar-nav .nav-item .nav-link::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 0;
    background-color: var(--primary);
    bottom: -2px;
    transition: 0.6s ease;
    border-radius: 50px;
}

.navbar-nav .nav-item .nav-link:hover::before {
    width: 100%;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

li.nav-item .themeBtn {
    font-size: 1rem;
    border-radius: 500px;
}

.slideOne .themeBtn {
    margin-top: 6rem;
    background: #fff;
    color: #15171A;
}

/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 1106px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 16rem;
    width: fit-content;
    left: 26%;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 4.35rem;
    height: 4.35rem;
    font-size: 1rem;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next {
    right: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    display: inline-block;
    margin: 0 7.5rem !important;
    opacity: 1;
    border: 1px solid var(--white);
    background: #FFFFFF;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 0;
    color: var(--white);
    font-size: 48px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
}

.main-slider p {
    color: var(--white);
    font-weight: 400;
    line-height: 1.5;
    margin-top: 2rem;
    font-size: 1.125rem;
    width: 81%;
}

.slideOne {
    margin-top: 11rem;
}

.slide-inner::before {
    position: absolute;
    content: "";
    background: #ffffff45;
    width: 100%;
    height: 1px;
    bottom: 269px;
    /* z-index: 1; */
}

.slide-inner {
    position: relative;
}

/* !MAIN HERO SLIDER CSS */


.mainHead {
    font-size: 48px;
    font-weight: 400;
    color: #151619;
    text-transform: uppercase;
}


/* section1 */

.shrink-wrap-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.text-content {
    padding-left: 20px;
}

.section-title-about {
    color: #01AAE0;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.section-desc-abt {
    color: #616161;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 40px;
    width: 92%;
}

@media (max-width: 991.98px) {
    .text-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .shrink-wrap-section {
        padding: 60px 0;
    }
}

section.shrink-wrap-section .themeBtn {
    border: 1px solid #000000;
    background: transparent;
    color: #000000;
}

section.shrink-wrap-section .themeBtn:hover {
    background: #000;
    color: #fff;
}

figure.aboutfigure {
    display: flex;
    align-items: center;
    gap: 37px;
}

.aboutcontent {
    padding-left: 9rem;
}

/* section1 */


/* section2 */

.services-section {
    padding: 5rem 0 2rem;
    background: #C9E9FA;
}

.service-card {
    background: #ffffff;
    margin-bottom: 45px;
    /* flex-direction: column; */
    /* height: 100%; */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
}

.card-content {
    padding: 55px 35px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}


.card-title {
    font-size: 28px;
    font-weight: 500;
    color: #151619;
    margin-bottom: 34px;
    margin-top: 39px;
}

.card-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #616161;
    margin-bottom: 30px;
}

.read-more-btn {
    background-color: #4FB0F8;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
    font-family: 'neuzon';
}

.read-more-btn:hover {
    background-color: #3a9de6;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(79, 176, 248, 0.4);
}

.card-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}


/* section2 */




/* footer  */
.page-container {
    overflow-x: hidden;
}

.top-context-area {
    height: 100px;
    background-color: #ffffff;
}

.cta-section {
    position: relative;
    z-index: 10;
    padding: 0;
}

.cta-box {
    background: linear-gradient(rgba(64, 172, 235, 0.85), rgba(64, 172, 235, 0.85)), url('../images/footertop.webp') no-repeat center center;
    background-size: cover;
    padding: 8rem;
    text-align: center;
}

.cta-title {
    color: #ffffff;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.4;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

.cta-btn {
    background-color: #111111;
    color: #ffffff;
    border-radius: 50px;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    border: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    font-family: 'neuzon';
}

.cta-btn:hover {
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
}

.site-footer {
    background-color: #151517;
    color: #ffffff;
    padding-top: 180px;
    margin-top: -120px;
    position: relative;
    z-index: 1;
}

.footer-main-row {
    padding-top: 20px;
}

.footer-logo {
    /* max-width: 220px; */
    /* height: auto; */
}

.footer-heading {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 31px;
    letter-spacing: 0.5px;
    color: #fff;
}

.footer-links li {
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: #40aceb;
    text-decoration: none;
}

.footer-contact-list li {
    color: #aaaaaa;
    font-size: 13px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.footer-contact-list i {
    color: #ffffff;
    margin-right: 15px;
    margin-top: 4px;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    margin-right: 12px;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #40aceb;
}

.footer-bottom {
    background-color: #09090a;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    margin-top: 2rem;
}

.copyright-text,
.credit-text {
    color: #999999;
    font-size: 20px;
    font-weight: 400;
}

.copyright-text strong,
.credit-text strong {
    color: #ffffff;
    font-weight: 700;
}

section.videosec {
    padding: 0;
}

.footer-contact-list li span {
    color: #fff;
    font-size: 1rem;
}

.col-md-6.text-center.text-md-right .credit-text {
    font-size: 1rem;
}

/* footer  */

/* videosec */
figure.videfig {
    position: relative;
}

figure.videfig a {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    border: 2px solid #fff;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    margin: auto;
}

/* videosec */


/* gallery */
.swiper.galleryslider1 {
    padding-bottom: 20px;
}

section.gallery-sec .themeBtn {
    border: 1px solid #000000;
    background: transparent;
    color: #000000;
}

.gallery-sec {
    overflow: hidden;
}

.gallery-sec .swiper {
    overflow: hidden;
    /* margin-bottom: 20px; */
    /* slider 1 aur slider 2 ke darmiyan gap */
}

.gallery-sec .swiper-slide {
    width: auto;
}

.gallery-sec .swiper-slide img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 0px;
}

/* Ensure Swiper wrapper gap works properly */
.gallery-sec .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* gallery */

section.gallery-sec .themeBtn:hover {
    background: var(--primary);
    border-color: transparent;
    color: #fff;
}

.slideOne .themeBtn:hover {
    background: var(--primary);
    color: #Fff;
}

li.nav-item .themeBtn:hover {
    background: #fff;
    color: var(--primary);
}



/* innerpages Start */

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 45%;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan h2 {
    font-size: 48px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
}

.innerBan {
    position: relative;
}

section.gallery-sec.gallerypage1.aos-init.aos-animate {
    padding-bottom: 0;
}

figure.gallerypageimg img {
    width: 100%;
    margin-top: 50px;
}



.contact-page-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
    max-width: 1200px;
}

/* --- Contact Info Cards Section --- */
.info-cards-section {
    padding: 5rem 13rem;
}

.custom-row-gap {
    margin-left: -15px;
    margin-right: -15px;
}

.custom-col-pad {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
}

.info-card {
    background-color: #f7f7f7;
    padding: 60px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.info-icon {
    font-size: 32px;
    color: #111111;
    margin-bottom: 25px;
}

.info-title {
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #000000;
}

.info-text {
    font-weight: 400;
    font-size: 15px;
    color: #5C5C5C;
    line-height: 2;
    word-break: break-word;
}

/* --- Contact Form Section --- */
.form-section {
    padding: 1rem 14rem 0;
}

.form-row-spacing {
    margin-bottom: 55px;
}

.form-row-spacing-large {
    margin-bottom: 50px;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.form-label {
    font-weight: 400;
    font-size: 22px;
    color: #000000;
    font-family: 'neuzon';
    display: block;
    letter-spacing: 0.3px;
    margin: 0;
}

.form-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #777777;
    background: transparent;
    /* padding: 0 0 8px 0; */
    font-size: 14px;
    color: #000000;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-bottom-color: #000000;
}

/* Specific style for textarea to match the wide gap design */
.message-input {
    height: 120px;
    resize: none;
}

/* --- Submit Button --- */
.submit-btn {
    background-color: #131313;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 16px 65px;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #333333;
}

.submit-btn:active {
    transform: scale(0.98);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-card {
        padding: 40px 20px;
    }

    .form-row-spacing,
    .form-row-spacing-large {
        margin-bottom: 40px;
    }
}

/* Services Detail Section Styling */
.services-detail-sec {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.service-detail-item {
    background: var(--white);
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 6px solid var(--primary);
    /* Blue accent from theme */
    transition: transform 0.3s ease;
}

.service-detail-item:hover {
    transform: translateY(-5px);
}

.service-detail-item h3 {
    font-family: "neuzon", sans-serif;
    color: var(--black);
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.service-detail-item p {
    font-family: "Archivo", sans-serif;
    color: var(--secondary);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-detail-item ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.service-detail-item ul li {
    font-family: "Archivo", sans-serif;
    position: relative;
    padding-left: 26px;
    color: var(--secondary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

/* Custom Bullet Points using Theme Primary Color */
.service-detail-item ul li::before {
    content: "\f058";
    /* FontAwesome Circle Check icon */
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    color: var(--primary);
    font-size: 20px;
    transform: translateY(-50%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-detail-sec {
        padding: 60px 0;
    }

    .service-detail-item {
        padding: 25px;
    }

    .service-detail-item h3 {
        font-size: 26px;
    }

    .service-detail-item ul {
        grid-template-columns: 1fr;
    }
}

.info-text a {
    color: #5C5C5C;
}