html,
body {
    margin: 0;
    padding: 0;
    font-family: "General Sans", sans-serif;
    overflow-x: hidden;
}

.font-geometria {
    font-family: "geometria";
}

.font-calibri {
    font-style: "calibri";
}

/* Fonts */

@font-face {
    font-family: "General Sans";
    /*  Give it a name you'll use in your styles */
    src: url("/fonts/general-sans-regular.woff2") format("woff2");
    /*  Path to the font file */
    font-weight: normal;
    /*  Or 'bold', 'light', etc., depending on your style */
    font-style: normal;
    /* Or 'italic', if applicable */
}

/* Banner */
.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Adjust height as needed */
    overflow: hidden;
}

/* Fullscreen video */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Overlay container for navbar and content */
.overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    color: black;
    background: linear-gradient(180deg,
            rgba(0, 35, 51, 0.21) 0%,
            rgba(0, 35, 51, 0.7) 100%);
}

/* Custom header layout */
.custom-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 30px 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border: 1px;
    border-bottom: 1px;
    background-color: rgba(255, 255, 255, 0.064);
    /* semi-transparent */
    backdrop-filter: blur(10px);
    /* blur effect */
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Logo styling */
.logo img {
    width: 250px;
    height: 50px;
}

/* Center navigation */
.center-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 35px;
    display: flex;
    gap: 40px;
}

.center-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;

    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
}

.center-nav a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease;
}

.center-nav a:hover::after {
    width: 100%;
}

/* Scroll Down cue */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
}

.scroll-down .line {
    width: 40px;
    height: 1px;
    background-color: white;
    margin: 6px auto 0;
}

.header-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1px;
    background-color: white;
    z-index: 3;
}

/* Hamburger icon */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    background: white;
    border-radius: 2px;
}

/* Mobile nav toggle style */
@media (max-width: 768px) {
    .custom-header {
        padding: 20px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .logo img {
        width: 180px;
        height: auto;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        width: 25px;
        height: 2px;
        background-color: white;
        border-radius: 2px;
        transition: 0.3s;
    }

    /* Toggle menu styles */
    .center-nav {
        display: none;
        flex-direction: column;
        align-items: flex-end;
        /* Align to right */
        position: fixed;
        top: 60px;
        /* Adjust depending on header height */
        right: 20px;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        padding: 10px 20px;
        border-radius: 8px;
        gap: 15px;
        width: fit-content;
    }

    .center-nav a {
        color: white;
        text-decoration: none;
        font-size: 16px;
        text-align: right;
    }

    .center-nav.show {
        display: flex;
    }
}

/* About Us Section */
.about-us-section {
    margin: 40px 0;
    margin-bottom: 100px;
}

/* .about-us-wrapper{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.about-us-wrapper::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 35, 51, 0.5); 
} */

.about-us-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(40%);
}

.about-text {
    position: absolute;
    top: 10%;
    left: 5%;
    color: white;
    max-width: 40%;
    font-family: "General Sans", sans-serif;
    overflow: auto;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
    letter-spacing: 0.3px;
}

.about-text a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
    padding-bottom: 2px;
}

@media (max-width: 768px) {
    .about-text {
        max-width: 100%;
        top: 5%;
        left: 5%;
    }

    .about-image {
        filter: brightness(50%);
        height: 150%;
    }
}

/* projects Section */

.projects-title h1 {
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -1px;
}

.projects-section .badge {
    backdrop-filter: blur(3px);
    font-size: 12px;
    font-weight: 500;
    padding: 20px;
    border-radius: 1;
    font-family: "General Sans", sans-serif;
}

.projects-section .badge-right {
    backdrop-filter: blur(3px);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 10px;
    border-radius: 1;
    font-family: "General Sans", sans-serif;
}

.projects-section .card-body h5 {
    font-family: "General Sans", sans-serif;
    font-size: 16px;
}

.projects-section .card-body p {
    font-size: 13px;
    letter-spacing: 0.3px;
}

.project-gap {
    gap: 20px !important;
    /* reduce gap for mobile */
    flex-wrap: wrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    /* smooth scroll on iOS */
}

.project-gap a {
    flex-shrink: 0;
    /* prevents shrinking when overflowing */
}

.project-image {
    filter: brightness(80%);
/*     height: 100%; */
	max-height:300px;
}

.projects-section {
    margin-bottom: 100px;
}

.section-subtitle {
    font-size: 14px;
    color: #060606;
    letter-spacing: 1px;
}

.section-title {
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 1.2;
}

.border-left {
    position: relative;
}

.border-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: -25px;
    width: 1px;
    height: 100%;
    background-color: #eee;
}

/* footer section */

footer {
    /* font-family: Arial, sans-serif; */
    background-color: #fff;
}

.footer-logo img {
    width: 300px;
    height: 66px;
}

.footer-nav {
    gap: 100px;
}

.footer-nav a {
    color: #000;
    text-decoration: none;
    margin: 0 12px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-section {
    margin-top: 70px;
}

.footer-section h6 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-section p {
    font-size: 0.75rem;
    color: #060606;
    margin: 0 0 4px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.footer-section p span {
    margin: 0 6px;
    color: #999;
}

.footer-bottom {
    font-size: 0.75rem;
    color: #777;
    border-top: 1px solid #eee;
    margin-bottom: 20px;
}

.insta-tag {
    font-weight: 500;
    font-size: 1rem;
    margin-top: 2px;
}

@media (max-width: 767px) {
    .footer-nav {
        text-align: center;
        margin-top: 15px;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .insta-tag {
        font-size: 0.9rem;
    }
}

/* === Project Details Page === */
/* Banner image */
.banner-project-details img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.project-container {
    max-width: 960px;
    margin: 40px auto;
    padding: 0 20px;
}

.scroll-down p {
    color: #fff;
}

#project-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

#project-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.image-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.image-gallery img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
}

.project-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    margin: 0 auto 60px;
    padding: 0 20px;
    font-weight: bold;
}

.project-nav a {
    text-decoration: none;
    color: #444;
}

.project-nav a:hover {
    text-decoration: underline;
}

.center-button {
    font-size: 1.4rem;
}

.project-details-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    /* color: white; */
    background: linear-gradient(180deg,
            rgba(0, 35, 51, 0.21) 0%,
            rgba(0, 35, 51, 0.7) 100%);
}

/* Prjects Category page */

.projects-section {
    margin-top: 100px;
}

.projects-section .card-body a {
    color: #000;
}

.project-categories .nav-link {
    color: black;
    text-transform: uppercase;
    font-weight: 500;
    margin-left: 20px;
}

.project-categories .nav-link.active {
    color: #ff6600;
    /* Highlight active category */
    border-bottom: 2px solid #ff6600;
}

.projects-section h6 {
    margin-top: 10px;
}

.projects-section p {
    margin-bottom: 0;
}

/* ---------Suchismita's Css--------- */
img {
    width: 100%;
}

.bg-blue {
    background: rgba(106, 141, 145, 0.09);
}

.history {
    padding: 60px 0;
}

.headingPart {
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.headingPart .span {
    font-size: 20px;
    font-weight: 400;
    text-transform: lowercase;
    display: block;
    margin-bottom: 12px;
}

.headingPart .heading {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -2px;
    max-width: 780px;
    margin: 0 auto;
}

.swiper.timelineSlider {
    width: 100%;
    height: 100%;
    position: relative;
    margin-top: 83px;
}

.swiper.timelineSlider::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #373435;
    content: "";
}

.timelineSlider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.swiper.timelineSlider::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #d4dee8;
    content: "";
}

.timelineSlider .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timelineSlider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timelineSlider .title {
    color: #13426b;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -1.04px;
    margin-bottom: 18px;
    text-align: left;
}

.timelineSlider .subtitle {
    color: #6d7e8d;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: -0.6px;
    text-align: left;
    margin-bottom: 0;
}

.eachSLider {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.eachSLider img {
    max-width: 190px;
    border-radius: 14px;
}

.eachSLider::before {
    position: absolute;
    top: 250px;
    left: 0;
    width: 14px;
    height: 14px;
    border: 2px solid #8fc74a;
    border-radius: 50px;
    content: "";
    background: #f0f7fe;
}

.timelineSlider .swiper-slide:nth-child(even) .eachSLider {
    flex-direction: column-reverse;
}

.eachSLider .eachContent {
    min-height: 170px;
    max-width: 230px;
}

.timelineSlider .prev_next_btn {
    position: absolute;
    top: 46%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.timelineSlider .prev_btn,
.timelineSlider .next_btn {
    width: 32px;
    height: 32px;
    background-color: #8fc74a;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
}

.timelineSlider .prev_btn {
    position: absolute;
    left: 0;
}

.timelineSlider .next_btn {
    position: absolute;
    right: 0;
}

.green-colour {
    color: #8fc74a;
}

.subtitle {
    color: #6d7e8d;
}

/* ============ Inner Banner Section ============ */
/*   .inner-banner {
    background-size: cover;
    height: 700px;
    color: #fff;
    /* border-bottom-left-radius: 60% 100px;
  border-bottom-right-radius: 60% 100px; */
/*      background-repeat: no-repeat; */
/*     background-position: center;  */
/*  }    */ 


.inner-banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.inner-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}






 

/* ============ Project Details Section ============ */
.project-details .subtitle {
    font-weight: 600;
	color: black;
}

.des-para {
    text-align: left;
    margin-bottom: 0;
    font-size: 16px;
}

.des-content {
    margin-top: 10px;
}

.project-details {
    padding: 60px 0;
}

.project-details img {
    width: 100%;
	margin-top:20px;
}

.pl-lg-5 {
    padding-left: 30px;
	padding-top:15px;
}

.heading {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.paragraph {
    font-size: 16px;
    color: black;
	margin: 0px ;
}

.projects,
.details-content {
    margin-top: 40px;
}

.projects img {
    /* max-height: 202px; */
    max-height: 145px;
    object-fit: cover;
}

.projects .row {
    --bs-gutter-y: 30px;
}

.project-details .row {
    --bs-gutter-y: 20px;
}

/* ============ Contact us Section ============ */


.contact-top {
    padding: 130px 0;
/*     padding: 81px 0; */
	
	
}



.contact-top .heading,
.location-content .heading,
.teams .heading {
    font-size: 67px;
	font-weight:400;
/* 	text-align:center; */
}

.contact-top .paragraph,
.location-content .paragraph {
    font-size: 18px;
    margin-bottom: 0;
}

.contact-left {
    margin-right: 50px;
/* 	padding:110px 0px 0px 0px; */
}

.tab-wrapper {
    text-align: center;
    display: block;
    margin: auto;
    border-bottom: 1px solid #e5e5e5;
}

.tabs {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-evenly;
}

.tab-link {
    margin: 0 1%;
    list-style: none;
    padding: 10px 40px;
    color: #aaa;
    cursor: pointer;
    font-weight: 500;
    transition: all ease 0.5s;
    border-bottom: solid 1px transparent;
    letter-spacing: 1px;
}

.tab-link:hover {
    color: #999;
    border-color: #8fc74a;
}

.tab-link.active {
    color: #333;
    border-color: #8fc74a;
}
 .content-wrapper {
    padding: 20px 0 0;
	
}

.query-form .row {
    --bs-gutter-y: 20px;
}

.query-form {
    background: #fff;
    padding: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border-radius:12px;
}

/* ==========================
   INPUT / SELECT / TEXTAREA
   ========================== */

.eachInput input,
.eachInput .form-select,
.eachInput textarea {
    width: 100%;
    font-size: 16px;
    border: none;
    border-bottom: 2px solid #ccc; /* gray underline */
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    padding: 10px 0;
    transition: all 0.3s ease;
}

/* Focus (active typing/selecting) */
.eachInput input:focus,
.eachInput .form-select:focus,
.eachInput textarea:focus {
    border-bottom: 2px solid #8fc74a !important; /* green underline */
    outline: none !important;
    box-shadow: none !important;
}

/* Placeholder color */
.eachInput input::placeholder,
.eachInput textarea::placeholder {
    color: #999;
}

/* Remove default Bootstrap focus glow */
.form-control:focus,
.form-select:focus {
    box-shadow: none !important;
    border-color: #8fc74a;
}

/* Textarea tweaks */
.eachInput textarea {
    resize: none;
    min-height: 120px;
}

/* Remove spin buttons from number fields */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

/* ==========================
   TAB & CONTENT STYLING
   ========================== */

.tab-content {
    display: none;
    text-align: center;
    color: #888;
    font-weight: 300;
    font-size: 15px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeIn 0.5s ease 1 forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    100% {
        opacity: 1;
        transform: none;
    }
}

/* ==========================
   BUTTON
   ========================== */

.btn {
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-block;
    overflow: hidden;
    background-color: #000;
    transform: perspective(1px) translateZ(0);
    color: #fff;
    transition: all 0.6s ease-in-out;
    padding: 17px 33px;
    border-radius: 0;
    border: none;
    line-height: 20.8px;
    position: relative;
}

.btn::before {
    content: "";
    position: absolute;
    border-radius: 0;
    z-index: -1;
    top: 0px;
    left: -100%;
    background-color: #8fc74a;
    opacity: 0;
    transition: 0.4s;
    width: 100%;
    height: 100%;
}

.btn:hover {
    color: #fff;
}

.btn:hover::before {
    left: 0;
    opacity: 1;
}

.btn i {
    margin-left: 8px;
}










/* ===== MULTI SELECT DROPDOWN FIXED ALIGNMENT ===== */
.multi-select-dropdown {
  position: relative;
  width: 100%;
}

/* Main button style */
.dropdown-toggle-select {
  background: transparent;
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 10px 0;
  font-size: 16px;
  color: #666;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-toggle-select:focus {
  outline: none;
  border-bottom: 2px solid #8fc74a;
  color: #000;
}

/* Dropdown arrow */
.dropdown-arrow {
  font-size: 14px;
  color: #999;
  transition: transform 0.3s ease;
}

.multi-select-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
  color: #8fc74a;
}

/* Dropdown list */
.dropdown-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  max-height: 180px;
  overflow-y: auto;
  z-index: 99;
  display: none;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 4px 12px;
  padding: 6px 0;
}

.multi-select-dropdown.active .dropdown-list {
  display: block;
}

/* Each list item */
.dropdown-list li {
  list-style: none;
  padding: 6px 14px;
  display: flex;
  align-items: center; /* checkbox and text inline */
  gap: 8px;
  text-align: left;
}

/* Label text alignment */
.dropdown-list label {
  cursor: pointer;
  font-size: 15px;
  color: #333;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

/* Checkbox */
.dropdown-list input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
}

/* Hover effect */
.dropdown-list li:hover {
  background: #f8f8f8;
}

/* Hover underline effect */
.dropdown-toggle-select:hover {
  border-bottom: 2px solid #8fc74a;
}

/* Selected items inside button */
.selected-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

/* Each selected tag */
.selected-tag {
  background: #e6f4d7;
  border: 1px solid #8fc74a;
  border-radius: 14px;
  padding: 2px 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Cross icon */
.selected-tag .remove-tag {
  cursor: pointer;
  font-size: 16px;
  color: #555;
  font-weight: bold;
}

.selected-tag .remove-tag:hover {
  color: #000;
}











/* ============ Location Section ============ */
.location {
    padding: 60px 0;
}

.location-content {
    text-align: center;
}

.all-location {
    margin-top: 40px;
}

.location-image {
    margin-bottom: 20px;
}

.flag {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.location-part h6 {
    margin-bottom: 17px;
    font-size: 30px;
}

.location-image img {
    max-height: 147px;
    object-fit: cover;
}

.location-part .paragraph {
    font-size: 18px;
	color:black;
}

.google-map {
    color: #8fc74a;
    margin-top: 10px;
    display: block;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.google-map i {
    margin-right: 10px;
}

.tj-contact-list {
    display: flex;
    align-items: center;
/*     box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1); */
    background: #ffffff;
/*     padding: 15px 30px; */
    padding: 15px 3px;
	background: rgba(106, 141, 145, 0.0);
    position: relative;
    cursor: pointer;
    gap: 20px;
}

.tj-contact-list i {
    font-size: 24px;
    color: #b3b3b3;
}

.tj-contact-list h6 {
    margin-bottom: 0;
/*     color: #adadad; */
	color: #333;
}

.tj-contact-list a {
    color: #000;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
}

.contact-header a {
    display: block;
}

.location-right .row {
    --bs-gutter-y: 20px;
}

.location-first {
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.location-first:last-child {
    margin-top: 50px;
    border-bottom: none;
}

.social-parts {
    margin-bottom: 0;
    margin-top: 15px;
	margin-left: 13px;
}

.social-parts a {
    width: 45px;
/*     height: 66px; */
/*     background-color: #8fc74a; */
/*     border-radius: 50px; */
    display: flex;
/*     justify-content: center; */
/*     align-items: center; */
/*     animation: bounceAnimation 0.7s infinite; */
}

.social-parts li {
    display: inline-block;
}

/* .social-parts li+li {
    margin-left: 20px;
} */

@keyframes bounceAnimation {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.social-parts i {
    color: black;
    font-size: 22px;
    transition: transform 0.3s ease;
}

/* ============ Header Section ============ */
.main_header {
    width: 100%;
    display: block;
    margin: 0;
    padding: 9px 0;
    top: 0;
    left: 0;
    z-index: 99;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    position: absolute;
}

.main_header.sticky-header {
    position: fixed;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
    background: #fff;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

.main_header.spclHeader {
    background-color: #000;
}

.main_header.spclHeader.sticky-header {
    background: #fff;
}

.main_header .stickylogo {
    display: none;
}

.main_header.sticky-header .stickylogo {
    display: block;
}

.main_header.sticky-header .normalLogo {
    display: none;
}

.main_header .logo {
    width: 90%;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.main_header .logo img {
    width: 100%;
	height:70px;
}

.main_header .navigation_sec {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

.action-container {
    text-align: end;
}

/* Start navigation */
.navigation_sec .nav_sec {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

.navigation_sec .nav_sec>ul {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

.navigation_sec .nav_sec>ul>li {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    position: relative;
    transition: all 0.9s ease-in-out;
}

.navigation_sec .nav_sec>ul>li+li {
    margin-left: 45px;
}

.navigation_sec .nav_sec>ul>li a {
    text-transform: capitalize;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: all 0.9s ease-in-out;
    position: relative;
}

.main_header.spclHeader .nav_sec>ul>li a {
    color: #fff;
}

.main_header.spclHeader.sticky-header .nav_sec>ul>li a,
.main_header.sticky-header .navigation_sec .nav_sec>ul>li a {
    color: #000;
}

.navigation_sec .nav_sec>ul>li:hover a,
.navigation_sec .nav_sec>ul>li.active a,
.main_header.spclHeader.sticky-header .nav_sec>ul>li:hover a,
.main_header.spclHeader.sticky-header .nav_sec>ul>li.active a,
.main_header.sticky-header .navigation_sec .nav_sec>ul>li:hover a,
.main_header.sticky-header .navigation_sec .nav_sec>ul>li.active a {
    color: #8fc74a;
}

span.toggle-menu {
    display: none;
}

/* ============ Media Page ============ */
/* Publications Section */
.publications {
    padding: 100px 0 60px;
    position: relative;
}

.all-publication {
    margin-top: 30px;
}

.publication-left {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-bottom: 30px;
}

.publication-left:last-child {
    margin-bottom: 0;
}

.publication-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 213px;
}

.publication-content {
    padding: 20px 15px;
}

.publication-content .heading {
    margin-bottom: 0;
    font-size: 20px;
    text-align: center;
}

.publication-content .subheading {
    margin-top: 10px;
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
}

/* Life at AAPL Section */
.life {
    padding: 60px 0;
}

.life-slider {
    margin-top: 30px;
}

.life-slider img {
    min-height: 338px;
    max-height: 338px;
    object-fit: cover;
}

.swiper-pagination {
    bottom: 3% !important;
}

.swiper-wrapper {
    margin-bottom: 40px;
}

.swiper-pagination-bullet-active {
    background-color: #8fc74a !important;
}

/* ============ Projects Page ============ */
.project {
    padding: 110px 0;
}

.portfolio-flters {
    margin: 0 auto 15px auto;
    list-style: none;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 50px;
}

.portfolio-flters li {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 4px solid transparent;
    color: #7e7e7e;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    position: relative;
}

.portfolio-flters li.filter-active {
    border-bottom: 4px solid #000;
    color: #000;
}

.portfolio-info .heading {
    color: #000;
    margin-top: 10px;
    text-transform: capitalize;
    display: block;
    margin-bottom: 0;
    font-size: 18px;
}

.portfolio-container img {
    max-height: 204px;
}

.portfolio-container.row {
    --bs-gutter-y: 30px;
}

/* ============ About Us Section ============ */
/* about us */
.aboutUs {
    padding: 110px 0 0;
}

.about-left img {
    -webkit-mask-image: url(/resources/about-left.png);
    -webkit-mask-size: 85%;
    -webkit-mask-position: center left;
    -webkit-mask-repeat: no-repeat;
    filter: brightness(56%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}

.about-right span {
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
    color: #8fc74a;
}

/* Team */
.teams {
    padding: 60px 0;
    position: relative;
}

.teams .heading {
    text-align: center;
}

.all-members {
    margin-top: 60px;
}

.team-member h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
    margin-top: 20px;
    text-align: center;
}

.other-content {
    padding: 60px 0;
}

.website {
    font-weight: 600;
    color: #8fc74a;
}

.content-part .row:last-child {
    margin-top: 30px;
}

.content-part .subheading {
    margin-bottom: 0;
}

/* Awards & Publications */
.awards {
    padding: 60px 0;
}

.award-left h2 {
    margin-bottom: 0;
}

.award-left ul {
    margin-top: 20px;
}

.award-left ul li {
    font-size: 18px;
    position: relative;
    margin-left: 20px;
}

.award-left ul li+li {
    margin-top: 15px;
}

.award-left ul li::before {
    content: "\f269";
    color: #8fc74a;
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    margin-left: -20px;
}

/* membership */
.membership {
    padding: 60px 0;
    text-align: center;
}

.membership h2 {
    /* text-align: center; */
}

/* ============ Responsive ============ */
@media only screen and (max-width: 991px) {
    .main_header {
        padding: 12px 0;
    }

    span.toggle-menu img {
        float: left;
    }

    .banner {
        height: 60vh;
    }

    .main_header {
        width: 100%;
        background: transparent;
        padding: 10px 0;
        z-index: 1000;
    }

    .main_header .cta {
        float: inline-end;
        padding: 6px 20px;
    }

    span.toggle-menu {
        width: auto;
        float: right;
        margin: 0;
        padding: 7px;
        display: block;
        cursor: pointer;
        background: #000;
        border-radius: 5px;
    }

    .overlay {
        position: fixed;
        z-index: 999;
        right: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.75);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .navigation_sec .nav_sec {
        width: 280px;
        height: 100%;
        float: none;
        position: fixed;
        z-index: 9999;
        top: 0;
        right: -100%;
        padding: 70px 0 0;
        background: #000;
        display: block;
        -webkit-transition: all 0.8s ease-in-out;
        -moz-transition: all 0.8s ease-in-out;
        -o-transition: all 0.8s ease-in-out;
        transition: all 0.8s ease-in-out;
    }

    .navigation_sec .nav_sec.slidein {
        right: 0;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

    .navigation_sec .nav_sec .cls-btn {
        width: 32px;
        height: 32px;
        position: absolute;
        top: 15px;
        right: 15px;
        cursor: pointer;
        background: url(./resources/cross.png) no-repeat center;
    }

    .navigation_sec .nav_sec>ul {
        text-align: left;
    }

    .navigation_sec .nav_sec ul>li {
        display: block;
        padding-bottom: 0;
        width: 100%;
        margin: 0;
        border-top: none !important;
    }

    .navigation_sec .nav_sec ul>li:hover {
        background-color: #000;
        border-radius: 0;
    }

    .navigation_sec .nav_sec ul>li+li {
        margin-left: 0;
    }

    .navigation_sec .nav_sec ul>li a {
        color: #fff;
        padding: 11px 15px;
        font-size: 15px;
        border-radius: 0;
        display: block;
    }

    .main_header .logo {
        display: block;
    }

    .navigation_sec .nav_sec img {
        display: inline-block;
        vertical-align: middle;
    }

    .navigation_sec .nav_sec i {
        float: right;
        font-style: normal;
        color: #fff;
        line-height: 30px;
        font-size: 21px;
        font-weight: 600;
    }

    .navigation_sec .nav_sec ul>li:hover ul {
        display: block;
        background: #fff;
    }

    .nav_sec li.active {
        background: none;
        border-radius: 23px;
        padding: 0 !important;
    }

    .navigation_sec .nav_sec ul>li ul {
        width: 100%;
        background: #8fc74a;
        position: static;
        top: 100%;
        left: 0;
        text-align: left;
        display: none;
        border-radius: 0;
        padding: 0;
    }

    .navigation_sec .nav_sec ul li ul li+li {
        border-top: 1px solid #8fc74a;
    }

    .navigation_sec .nav_sec ul li ul li a {
        padding: 6px 24px;
        color: #8fc74a;
        font-size: 14px;
    }

    .navigation_sec .nav_sec ul ul>li:hover>a,
    .navigation_sec .nav_sec ul ul>li.active>a {
        background: #8fc74a;
        color: #fff;
    }

    .navigation_sec .nav_sec ul li .arw-nav {
        width: 40px;
        height: 45px;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 999;
        cursor: pointer;
        background: url(../images/arw.png) no-repeat center;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .navigation_sec .nav_sec ul li .arw-nav.actv {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .navigation_sec .nav_sec>ul>li a {
        font-size: 16px;
    }

    .navigation_sec .nav_sec>ul>li:hover a {
        color: #fff;
    }

    .contact-top {
        padding: 50px 0;
    }
}

.enquiry-message {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 16px;
}

.enquiry-message.success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.enquiry-message.error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.video {
    width: 100%;
    height: 75%;
    /* border-radius: 10px; */
    /* background-color: aqua; */
}

.video img,
.video video {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(10, 10, 10, 0.54);
}












/* ----- PROJECT DETAILS SECTION ----- */
.project-details {
  padding: 60px 0;
}

.project-details .subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
  color: #222;
}

.project-details .des-para {
  margin-bottom: 0.6rem;
  color: #555;
  font-size: 1rem;
}

.project-details .des-para span {
  font-weight: 500;
  color: #000;
}

/* ----- DESCRIPTION PARAGRAPHS ----- */
.project-details .des-content .paragraph {
  font-size: 1.15rem;           /* bigger text */
  line-height: 1.8;             /* better readability */
  color: #333;
  margin-bottom: 1.2rem;
}


/* ----- IMAGES SECTION ----- */
.project-details img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-details img:hover {
  transform: scale(1.03);       /* zoom on hover */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ----- RESPONSIVE TWEAKS ----- */
@media (max-width: 991px) {
  .project-details .col-lg-4,
  .project-details .col-lg-8 {
    margin-bottom: 30px;
  }
}
















/*  sahil css */

.location-part
{
	padding: 35px 0px 15px 0px;
}


.social-parts i:hover {
  color: #7ac142; /* your brand green */
}




/* === Vertically Center the Contact Form on the Right === */
#contact-top {
  min-height: 100vh; /* full screen height */
  display: flex;
  align-items: center; /* vertically center the row */
}

/* make the row itself stretch full height */
#contact-top .row {
  width: 100%;
  align-items: center !important; /* vertical center inside row */
}

/* right column containing the form */
#contact-top .col-lg-5 {
  display: flex !important;
  flex-direction: column;
  justify-content: center !important; /* center vertically */
  height: 100%; /* occupy full height of parent */
}

/* keep the form box neat and centered */
#contact-top .wrapper {
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}


.location-icon {
    color: #b3b3b3 !important;   /* apna desired color */
    font-size: 24px !important;  /* icon size change */
}















/* ================================
   General Sans – Global Font
================================ */

/* Regular */
@font-face {
  font-family: 'General Sans';
  src: url('https://sienna-tarsier-300158.hostingersite.com/wp-content/uploads/2025/12/GeneralSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Medium */
@font-face {
  font-family: 'General Sans';
  src: url('https://sienna-tarsier-300158.hostingersite.com/wp-content/uploads/2025/12/GeneralSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: 'General Sans';
  src: url('https://sienna-tarsier-300158.hostingersite.com/wp-content/uploads/2025/12/GeneralSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =====================================
   General Sans – Safe Global Typography
===================================== */

/* Text only */
body,
p,
span,
a,
li,
h1, h2, h3, h4, h5, h6,
button,
input,
textarea,
select,
label {
  font-family: 'General Sans', sans-serif !important;
}

/* FIX: Restore Bootstrap Icons */
.bi,
.bi::before {
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal;
  display: inline-block;
}

/* FIX: Restore Font Awesome (if used) */
.fa,
.fas,
.far,
.fab,
.fa::before {
  font-family: "Font Awesome 5 Free" !important;
}

/* FIX: SVG icons */
svg {
  font-family: initial !important;
}












/* Section spacing */
.membership {
    padding: 70px 0;
}

/* Swiper smooth autoplay */
.membership-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Card */
.membership-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 14px 18px;          /* smaller card */
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    max-width: 300px;
	 min-height: 90px; 
}

/* Logo box */
.membership-logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: #f2f6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;            /* IMPORTANT */
}

/* Logo image */
.membership-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;         /* show full logo */
}

/* Name text */
.membership-name {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    white-space: normal;         /* allow next line */
    word-break: break-word;
}

.membership-swiper .swiper-slide {
    width: auto !important;
}

.membership-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
	margin-top: 20px;
}
