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

html,
body {
	height: 100%;
	width: 100%;
	scroll-behavior: smooth;
	cursor: none;
	background-color: #17161f;
	
	/* overflow-y: auto; */
	font-family: "Helvetica", sans-serif;

}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica.ttf") format("truetype");
 
}

@font-face {
  font-family: "Helvetica-Bold";
  src: url("../fonts/Helvetica-Bold.ttf") format("truetype");
 
}

.cursor-dot {
	position: fixed;
	width: 8px;
	height: 8px;
	background-color: #ffff00;
	border-radius: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 10000;
}

.cursor-ring {
	position: fixed;
	width: 40px;
	height: 40px;
	border: 2px solid #ffff00;
	border-radius: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 9999;
	transition: transform 0.15s ease-out;
}



.footer-section {
	scroll-snap-align: start;
}

img {
	width: 100%;
	height: auto;
}

/* a {
	text-decoration: none;
}
h2 {
	font-size: 40px;
	font-family: "Githera", serif;
}
p {
	font-size: 18px;
	font-family: "Githera", serif;
} */

.hero-sec {
	height: 100%;
	width: 100%;
	/* font-family: Arial, sans-serif; */

	color: #fff;
	display: flex;
	overflow: hidden;
}

/* Sidebar */
.sidebar {
	width: 70px;
	height: 100%;
	border-right: 2px solid #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	position: fixed;
}

.sidebar img {
	width: 35px;
	margin-bottom: 30px;
}

.vertical-text {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-size: 22px;
	margin: 40px 0;
	color: #fff;
}

.sidebar .social {
	display: flex;
	flex-direction: column;
	gap: 15px;
	font-size: 18px;
}

.sidebar .social a {
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}

.sidebar .social a:hover {
	color: #fcd703;
}

/* Main Content */
.main {
	flex: 1;
	width: 56%;
	height: 100%;
	padding: 30px 60px;
	position: relative;
	overflow: hidden;
	left: 6%;
}

/* Navbar */
.navbar-menu {
	display: flex;
	gap: 40px;
	margin-bottom: 80px;
	justify-content: flex-start;
}

.navbar-menu a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	transition: 0.3s;
}

.navbar-menu a:hover {
	color: #fcd703;
}

/* Hero */
.hero {
	max-width: 600px;
	margin-top: 20%;
}

.hero h1 {
	font-size: 36px;
	line-height: 1.3;
	margin-bottom: 20px;
	font-family: "Helvetica-Bold", sans-serif;
}

.hero h1 .yellow {
	color: #fcd703;
}

.hero p {
	font-size: 14px;
	margin-bottom: 25px;
	color: #ccc;
}

.btn {
	background: #fff;
	color: #000;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	font-weight: bold;
	border-radius: 3px;
	transition: 0.3s;
}

.btn:hover {
	background: #fcd703;
}

#particles-js {
	height: 100%;
	width: 44%;
}

.about-section {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
	text-align: left;
	padding: 0 15%;
}

.what-to-do {
	height: 100%;
	/* display: flex;
	flex-direction: column;
	
	align-items: center;
	text-align: left; */
	padding: 0 15%;
display: flex;
  flex-direction: column;
  justify-content: center;
}

.what-to-do .title {
	color: #fff;
}

.about-section h2 {
	color: #fff;
	margin-bottom: 36px;
	font-size: 32px;
}

.about-section p {
	font-size: 20px;
/* 	line-height: 1.8; */
	color: #ccc;
	text-align: justify;
}

.read-more {
	color: #ffd700;
	font-weight: bold;
	text-decoration: none;
}

.read-more:hover {
	text-decoration: underline;
}



/* What We Do START */


/* .what-we-do_body {

	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: sans-serif;
	padding: 20px;
} */

.what-we-do__container {
	display: flex;

/* 	justify-content: center; */
	gap: 20px;
	max-width: 1000px;
	width: 100%;
}

.what-we-do__card {
	position: relative;
	width: 300px;
	height: 400px;
	overflow: hidden;
	border-radius: 20px;
	cursor: pointer;
	flex-shrink: 0;
}

.what-we-do__card img {
	/* width: 100%; */
	height: 100%;
	object-fit: cover;

	display: block;
}

.what-we-do__shade {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background: rgba(100, 100, 100, 0.9);
	z-index: 1;
	transition: height 0.5s ease;
	border-radius: 20px;
}

.what-we-do__card:hover .what-we-do__shade {
	height: 100%;
}

.what-we-do__content {
	position: absolute;
    margin-right: 20px;
	left: 20px;
	/* bottom: -60px; */
	bottom: -186px;
	z-index: 2;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: transform 0.5s ease;
}

.what-we-do__icon {
	width: 32px;
	height: 32px;
	margin-bottom: 5px;
}

.what-we-do__name {
	font-weight: 600;
	font-size: 18px;
	line-height: 1;
}

.what-we-do__extra {
	margin-top: 10px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.4s ease;
}

.what-we-do__extra-icon {
	width: 24px;
	height: 24px;
	margin-top: 10px;
}

.what-we-do__card:hover .what-we-do__content {
	/* transform: translateY(-80px); */
	transform: translateY(-234px);
}

.what-we-do__card:hover .what-we-do__extra {
	opacity: 1;
	transform: translateY(0);
}

.what-we-do__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	padding: 2px;
	background: linear-gradient(302.67deg, #000000 33.6%, #FFFF00 100%);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 3;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.what-we-do__card:hover::before {
	opacity: 1;
}

/* ✅ Responsive behavior */
@media (max-width: 960px) {
	.what-we-do__card {
		width: 45%;
	}
}

@media (max-width: 640px) {
	.what-we-do__card {
		width: 100%;
	}
}

.what-we-do__title {

  color: #fff;
}


/* What We Do END */



.what-we-do__container {
	display: flex !important;
	
	justify-content: center !important; /* Centers the cards horizontally */
/* 	gap: 7% !important; */
	max-width: 1000px !important;
	width: 100% !important; 
	margin: 0 auto !important; /* 🔥 Centers the container itself */
	padding: 20px !important;   /* Optional: adds spacing on small screens */
}


@media (max-width: 480px) {
	.what-we-do__container {
		padding: 10px !important;
	}
	.what-we-do__card {
		width: 100% !important;
		height: auto !important; /* Optional: let height adjust based on content */
	}
}










@media (min-width: 1920px){

.initiative-container{
		max-width: 1414px !important;
	}
	.initiative-image{
		    width: 471px !important;
	}
	.initiative-text{
		width: 883px !important;
	}
.footer{
margin-left: 3.7% !important;
}
.gallery-section{
margin-left: 3.7% !important;
}





.what-we-do__container{
gap: 7% !important;
}

.what-we-do__card{
width: initial !important;
height: initial !important;
}
.what-we-do__content{
bottom: -126px;
}
.gallery-card{
width: initial  !important;
}
.hero h1{
font-size: 42px;
}
.hero p{
font-size: 18px;
}
.about-section p{
font-size: 28px;
}
.about-section h2{
font-size: 36px !important;
}
.initiative-title{
font-size: 36px !important;
}
.gallery-heading{
font-size: 36px !important;
}
.what-we-do__name{
font-size: 20px !important;
}
.initiative-content{
font-size: 18px !important;
}
.founder-left h2{
font-size: 32px !important;
}
.founder-name{
font-size: 20px !important;
}

.founder-desk{
font-size: 20px !important;
}
.founder-contain{
font-size: 18px !important;
}
.gallery-card{
margin: 30px !important;
}
.gallery-content p{
font-size: 16px !important;
}
}
}







































/* Section Title */
.what-to-do {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.section-title {
	color: #fff;
	margin-top: 50px;
}
.section-title h2{

margin-bottom: 36px;
}

/* h2 {
            font-size: 32px;
            color: #fff;
        } */

/* Cards Container */
.cards-container {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 50px 0;
}

/* Card Styles */
.card {
	width: 300px;
	height: 400px;
	background-color: #333;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

/* .card:hover {
            transform: scale(1.05);
        } */

.card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.card-text {
	padding: 20px;
	text-align: center;
}

.card-text h3 {
	font-size: 24px;
	color: #fff;
}

/* 
.hero-section {
	background-image: url("../images/founder/founder-bg.png"); 
	background-size: cover;
	background-position: center;
	height: 100vh;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 5%;
	color: white;
	margin-left: 5%;
}

.founder,
.co-founder {
	
	border-radius: 10px;
}

#founder h2,
#co-founder h2 {
	margin-bottom: 10px;
	font-size: 28px;
}

#founder p,
#co-founder p {
	font-size: 16px;
	line-height: 1.5;
}


@media (max-width: 768px) {
	.hero-section {
		flex-direction: column;
		text-align: center;
	}

	.founder,
	.co-founder {
		width: 80%;
		margin-bottom: 20px;
	}
} */

/* Founder START*/

.founder-section {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url("../images/founder/founder-bg.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: white;
	overflow: hidden;
	margin-left: 6%;
}

.founder-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom right,
			rgba(0, 0, 0, 0.35),
			rgba(0, 0, 0, 0.35));
	z-index: 1;
}

.founder-text {
	position: absolute;
	top: 16px;
	z-index: 2;
	max-width: 45%;
	padding: 12px 16px;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	line-height: 1.2;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
	transform: translate(-50%, -50%);
	top: 50%;
}

.founder-left {
	/* left: 16px; */
	left: 25%;
	text-align: left;
}

.founder-right {
	/* right: 16px; */
	right: -8%;
	text-align: right;
	right: -19%;
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: end;
}

.founder-center {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 20px;
}

.founder-center h1 {
	font-size: clamp(1.4rem, 4vw, 2.8rem);
	margin-bottom: 8px;
}

.founder-center p {
	font-size: clamp(0.9rem, 2.2vw, 1.1rem);
	opacity: 0.95;
}

@media (max-width: 720px) {
	.founder-text {
		position: relative;
		top: auto;
		max-width: 100%;
		left: 0;
		right: 0;
		text-align: center;
		margin: 10px;
		background: rgba(0, 0, 0, 0.25);
		border-radius: 8px;
	}

	.founder-section {
		padding: 14px 0;
		min-height: 50vh;
	}
}

.quotation-sign {
	width: 10%;
}

.founder-contain {
	max-width: 65%;
	margin-top: 20px;
}

/* Founder END*/




/* Our initiative START */


.initiative-body {
        font-family: Arial, sans-serif;
      
        color: #fff;
        margin: 0;
        padding: 20px;
        overflow-x: hidden;
      }

      .initiative-container {
        max-width: 1300px;
        margin: auto;
        padding: 0 20px;
        position: relative;
      }

      /* ✅ Title row with nav */
      .initiative-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        position: relative;
      }

      .initiative-title {
        /* font-size: 22px; */
/*         font-weight: bold; */
      
        /* text-decoration: underline; */
        text-underline-offset: 4px;
        margin: 0;
      }

      /* Nav buttons right fixed */
      .initiative-nav {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        gap: 10px;
		cursor: pointer;
      }

      .initiative-nav button {
        background: none;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        color: #fff;
        font-size: 24px;
        border: none;
        cursor: pointer;
        transition: background 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
      }
/*       .initiative-nav button:hover {
        background: rgba(255, 255, 255, 0.35);
      } */

      .initiative-item {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        position: relative;
      }

      /* Image Box */
      .initiative-image {
        /* width: 375px; */
        width: 422px;
        height: 413px;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        background: #1c1b22;
        flex-shrink: 0;
      }

      .initiative-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .initiative-image .initiative-card-title {
        position: absolute;
        top: 15px;
        left: 15px;
        font-weight: bold;
        font-size: 18px;
      }

      /* Text Box */
      .initiative-text {
        width: 777px;
        height: 413px;
        border-radius: 10px;
        background: #1c1b22;
        position: relative;
        /* padding: 30px 25px; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
      }

      .initiative-text p,
      .initiative-text button {
        position: relative;
        z-index: 1;
      }

      .initiative-text p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
      }

      .initiative-text button {
        background: transparent;
        border: 1px solid #fff;
        color: #fff;
        padding: 10px 20px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        transition: 0.3s;
        width: fit-content;
      }

      .initiative-text button:hover {
        background: #fff;
        color: #131219;
      }

      /* 🔥 IMAGE-CARD ANIMATION (Left + Top) */
      .initiative-images::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 200%;
        background: linear-gradient(180deg, transparent, #f5e90b, transparent);
        animation: initiative-border-left-move 6s linear infinite;
      }

      @keyframes initiative-border-left-move {
        0% {
          transform: translateY(100%);
          opacity: 1;
        }
        40% {
          transform: translateY(-100%);
          opacity: 1;
        }
        50% {
          opacity: 0;
        }
        100% {
          opacity: 0;
        }
      }

      .initiative-image::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 200%;
        height: 3px;
        background: linear-gradient(90deg, transparent, #f5e90b, transparent);
        animation: initiative-border-top-left-move 6s linear infinite;
      }

      @keyframes initiative-border-top-left-move {
        0% {
          opacity: 0;
        }
        40% {
          opacity: 0;
        }
        50% {
          transform: translateX(-100%);
          opacity: 1;
        }
        90% {
          transform: translateX(100%);
          opacity: 1;
        }
        100% {
          opacity: 0;
        }
      }

      /* 🔥 TEXT-CARD ANIMATION (Right + Top) */
      .initiative-text::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 3px;
        height: 200%;
        background: linear-gradient(180deg, transparent, #f5e90b, transparent);
        animation: initiative-border-right-move 6s linear infinite;
      }

      @keyframes initiative-border-right-move {
        0% {
          transform: translateY(100%);
          opacity: 1;
        }
        40% {
          transform: translateY(-100%);
          opacity: 1;
        }
        50% {
          opacity: 0;
        }
        100% {
          opacity: 0;
        }
      }

      .initiative-text::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 200%;
        height: 3px;
        background: linear-gradient(270deg, transparent, #f5e90b, transparent);
        animation: initiative-border-top-right-move 6s linear infinite;
      }

      @keyframes initiative-border-top-right-move {
        0% {
          opacity: 0;
        }
        40% {
          opacity: 0;
        }
        50% {
          transform: translateX(100%);
          opacity: 1;
        }
        90% {
          transform: translateX(-100%);
          opacity: 1;
        }
        100% {
          opacity: 0;
        }
      }

      /* Hide default owl nav */
      .owl-nav {
        display: none;
      }

      /* Owl dots */
      .owl-theme .owl-dots .owl-dot span {
        background: #555;
      }
      .owl-theme .owl-dots .owl-dot.active span {
        background: #f5e90b;
      }

      /* Responsive */
      @media (max-width: 1200px) {
        .initiative-item {
          flex-direction: column;
          align-items: flex-start;
        }
        .initiative-image,
        .initiative-text {
          width: 100%;
          height: auto;
        }
        .initiative-header {
          flex-direction: column;
          align-items: center;
          gap: 10px;
        }
        .initiative-nav {
          position: static;
          transform: none;
        }
      }






/* Our initiative END */





















/* Gallery START*/
.gallery-section {
	height: 100%;
	padding: 40px 20px;
	background: url("../images/gallery-bg.png");
	background-size: cover;
	margin-left: 70px;
}

.gallery-heading {
	text-align: center;
/* 	font-size: 24px; */
	font-weight: 700;
	margin-bottom: 15px;
	color: #fff;
}

.gallery-controls {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-bottom: 30px;
}

.gallery-controls button {
	background: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff; 
  font-size: 24px;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

/* Card base */
.gallery-card {
	background: #1a1a1a;
	border: 3px solid #fff;

	overflow: hidden;
	transition: border-color 0.25s, transform 0.35s;
	margin: 10px;
	width: 280px;
	will-change: transform;
}

.gallery-card:hover {
	border-color: #00aaff;
}

.gallery-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

.gallery-content {
	padding: 15px;
	text-align: left;
}

.gallery-content p {
	font-size: 14px;
	margin: 0 0 10px;
	color: #ccc;
}

.gallery-content span {
	font-size: 13px;
	color: #bbb;
}

/* Extra space so lifted cards aren’t clipped */
.owl-stage-outer {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.owl-carousel .owl-stage {
	align-items: flex-start;
}

/* Zigzag effect */
/* Apply floating animations */

/* Even cards → float up */
.gallery-card[data-index="2"],
.gallery-card[data-index="4"],
.gallery-card[data-index="6"] {
	animation: floatUp 4s ease-in-out infinite;
}

/* Odd cards → float down */
.gallery-card[data-index="1"],
.gallery-card[data-index="3"],
.gallery-card[data-index="5"] {
	animation: floatDown 4s ease-in-out infinite;
}

/* Floating animations */
@keyframes floatUp {

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

	50% {
		transform: translateY(-3rem);
	}
}

@keyframes floatDown {

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

	50% {
		transform: translateY(3rem);
	}
}

.gallery-card img {
	height: auto;
	padding: 12px;
}

.gallery {
	cursor: grab;
}

/* .udyog-gallery-owl{
padding-left: 6%;
} */

/* Gallery END*/






















/* Footer START */

.footer {
	display: flex;
	justify-content: space-between;
	align-items: end;
	padding: 40px;
	background-color: #121018;
	color: #fff;
	margin-left: 70px;
}

.footer-column {
	flex: 1;
	padding: 0 20px;
}

.footer-logo {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.footer-logo img {
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

.footer-column p {
	font-size: 14px;
	line-height: 1.5;
}

.footer-column a {
	color: #fff;
	text-decoration: none;
	display: block;
	margin-bottom: 10px;
	font-size: 14px;
}

.footer-contact {
	font-size: 14px;
	margin-bottom: 8px;
}

.footer-form {
	display: flex;
	margin-top: 10px;
}

.footer-form input[type="email"] {
	padding: 8px;
	border: none;
	border-bottom: 1px solid #fff;
	background-color: transparent;
	color: #fff;
	margin-right: 10px;
}

.footer-form button {
	padding: 8px 12px;
	background-color: #fff;
	color: #121018;
	border: none;
	cursor: pointer;
}

.footer-form input::placeholder {
	color: #ccc;
}


 #particles-footer {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 40%;
            /* covers right side only */
            height: 100%;
            z-index: 0;
            /* stay behind footer text */
            pointer-events: none;
        }

        .footer {
            position: relative;
            overflow: hidden;
        }

/* Footer END */



.about-word {
  opacity: 0.2; 
  display: inline-block;
  font-size: 18px;
}

.our-initiative{
    height: 100%;
	margin-left: 12%;
   display: flex;
   
    align-items: center;
}



.initiative-item-title{
	padding: 20px;
	font-size: 28px;

	
	font-family: "Helvetica", sans-serif;
}
.initiative-content{
	background-color: #C0B9B92B;
	padding: 4%;
}
.initiative-btn{
	margin-top: 18%;
	padding: 8px 16px;
	border: 1px solid #FFFFFF;
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
}
.initiative-button{
	margin-top: 8%;
}



.hero {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 1s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: Stagger animation for child elements */
.hero h1,
.hero p,
.hero button {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 1s ease-out forwards;
}

.hero h1 {
    animation-delay: 0.3s;
}
.hero p {
    animation-delay: 0.5s;
}
.hero button {
    animation-delay: 0.7s;
}

.fade-in-on-scroll {
  opacity: 0; /* initially hidden */
}
.fade-in-on-scroll.animate__fadeInUp {
  opacity: 1; /* visible when Animate.css class added */
}


.delay-1s { transition-delay: 0.3s; }
.delay-2s { transition-delay: 0.6s; }
.delay-3s { transition-delay: 0.9s; }



.custom-duration {
    --animate-duration: 1.8s;
  }









.fade-in-on-scroll {
  opacity: 0; /* initially hidden */
}
.fade-in-on-scroll.animate__fadeInUp {
  opacity: 1; /* visible when Animate.css class added */
}


.delay-1s { transition-delay: 0.3s; }
.delay-2s { transition-delay: 0.6s; }
.delay-3s { transition-delay: 0.9s; }



.custom-duration {
    --animate-duration: 1.8s;
  }


  .what-we-do-read-more{
	color: #FFFF00;
	text-decoration: none;
  }



/* What We Do */
.second-card-content{
	bottom: -162px !important;
}
@media (min-width: 1920px) {
   .second-card-content{
	bottom: -100px !important;
}
}


 .inner-banner-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.inner-banner-wrapper::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* Black shade with 60% opacity */
  z-index: 1;
  pointer-events: none; /* Prevents overlay from blocking clicks */
}

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

.inner-banner-text {
  position: absolute;
  bottom: 20px;
  width: 100%; /* Ensures it spans the full container width */
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  z-index: 99;
  
}

.inner-banner-text h2 {
  font-size: 40px;
  margin: 0; /* Remove default margin */
}

.careerpage h2 {
  font-size: 30px;
  font-weight: bold;
  color: #ffffff;
  text-align: left;
  margin: 80px 0 20px;
}

.text-boxcareer {
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 43px 25px;
  border-radius: 8px;
  border: 1px solid #FFFF00;
  margin-bottom: 60px;
}

.text-boxcareer h3,
.text-boxcareer h2 {
  margin-top: 0;
  padding-bottom: 8px;
}

.text-boxcareer i {
  color: #FFFF00;
  margin-right: 8px;
}

.contactinfo a {
  color: #FFFF00;
  text-decoration: none;
}
.contactinfo{
  padding-bottom: 32px;
}
.mt-40{
  margin-top: 60px;
}
.contact a{
color: #FFFF00;
}

.herocareer{
position:absolute;
top:47%;
margin:0;
}
.herocareer h1{
color:#FFFF00;
}























@media (max-width: 600px) {
	.about-section p {
		font-size: 12px;
	}

	
}
@media (min-width: 600px) {
	
}
@media (min-width: 768px) {
	
}
@media (max-width: 992px) {
		.what-to-do, .our-initiative{
		height: initial !important;
	}
	.our-initiative{
		margin-left: initial;
	}
	.about-section{
		padding: 0 5%;
	}
	.what-to-do{
		padding: 0 5%;
	}
	.initiative-header{
		flex-direction: row;
	}
	.sidebar{
		display: none;
	}
	.main{
		padding-left: 16px;
		padding-top: 60px;
	}
	.navbar{
		display: none;
	}
		.about-section{
		padding: 0 5%;
	}
	.what-to-do{
		padding: 0 5%;
	}
	.initiative-header{
		flex-direction: row;
	}
	.what-we-do__content{
		bottom: -46px;
	}
	.what-we-do__card{
		width: 100%;
		height: auto%;
	}
	
}
@media (min-width: 1200px) {
	
}
@media (min-width: 1920px) {
	
}

@media (hover: none) and (pointer: coarse) {

	.cursor-dot,
	.cursor-ring {
		display: none;
	}
}



.second-card-content {
	bottom: -164px !important;
}


@media (max-width: 992px) {
	.gallery-card{
		width: initial;
	}
	.gallery-section{
		margin-left: initial;
	}
	
    #particles-js {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1; /* push behind content */
        height: 100%;
    }
	.what-we-do__container{
		flex-direction: column;
	}

    .hero-sec {
        flex-direction: column;
        position: relative;
    }

    .main {
        width: 100%;
        left: 0;
        padding: 16px;
    }
	.initiative-second-box{
display: initial !important;
	}
	.footer{
		flex-direction: column;
		align-items: normal;
		margin-left: initial;
	}
	
}
@media (max-width: 992px) {
    .hero-sec {
        flex-direction: column;
        position: relative;
    }
}
.initiative-second-box{
	display: flex;
	justify-content: space-between;
	height: 100%;
}



















.md-header{
	/* width: 100%;
	position: absolute; */

	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.md-logo{
	width: 40px;
}
.md-brand-name{
	font-size: 18px;
	font-weight: 400;
	margin: 0;
}
.md-container {
	width: 100%;
	position: absolute;
		top: 0;
		border-bottom: 2px solid #fff;
		padding-bottom: 12px;
		z-index: 8;
}
.md-menu{
	display: flex;
	justify-content: center;
		gap: 28px;
}
.md-social{
	display: flex;
	gap: 12px;
}
.md-social img{
	width: 16px;
}


@media (max-width: 992px) {
   .hero {
  
    margin-top: 40%;
}
}



.md-menu a{
	text-decoration: none;
	color: #fff;


}
  
@media (max-width: 992px) {
    .navbar-menu {
        display: none;
    }
}

