body{
    padding: 0px 0px;
    margin: 0px 0px;
    box-sizing: border-box;
}

.container{
    width: 90%;
    margin: auto;
}

.menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
	width: 230px;
}

.navbar ul li {
	display: inline-block;
	padding: 0 16px;
}

header {
	background: #000;
    padding: 10px 0px;
}

.navbar ul li a {
	text-decoration: none;
	color: #fff;
	font-family: "Figtree", sans-serif;
}

.btn a {
	background: #00ff35;
	text-decoration: none;
	font-family: "Figtree", sans-serif;
	color: #000;
	padding: 13px 26px;
	border-radius: 10px;
}

.hero {
    background-image: url('../image/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 600px;
}

.hero-text {
	color: #fff;
    text-align: center;
}

.hero-text h1 {
	background: linear-gradient( 90deg, #d78c07, #00ff35, #fcf65f );
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientMove 3s linear infinite;
	font-family: "Figtree", sans-serif;
	font-size: 44px;
	font-weight: 900;
}

@keyframes gradientMove {
    to {
        background-position: 200% center;
    }
}

.hero-text h3 {
	font-family: "Figtree", sans-serif;
	font-size: 22px;
	font-weight: 600;
}

.hero-text p {
	font-family: "Inter", sans-serif;
	line-height: 26px;
	padding: 0 200px;
}

.hero-text a {
	background: #fad41a;
	text-decoration: none;
	color: #000;
	padding: 17px 80px;
	display: inline-block;
	font-size: 18px;
	font-family: "Figtree", sans-serif;
	border-radius: 50px;
     animation: zoomInOut 3s ease-in-out infinite;
     margin-top: 20px;
}


@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.hero-text{
    padding-top: 90px;
}

.about {
	margin-top: 70px;
}

.row-about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-content: center;
    gap: 30px;
}

.col-about img {
	width: 100%;
    border-radius: 10px;
}

 h4 {
	color: #fad41a;
    font-family: "Figtree", sans-serif;
}

.col-about h2 {
	font-size: 24px;
    font-family: "Figtree", sans-serif;
}

.col-about p {
	font-family: "Inter", sans-serif;
	line-height: 26px;
}

.col-about a {
	background: #fad41a;
	text-decoration: none;
	color: #000;
	padding: 17px 80px;
	display: inline-block;
	font-size: 18px;
	font-family: "Figtree", sans-serif;
	border-radius: 50px;
    margin-top: 20px;
}

.ser-text h2 {
	font-size: 24px;
    font-family: "Figtree", sans-serif;
}

.ser-text p {
	font-family: "Inter", sans-serif;
	line-height: 26px;
	padding-right: 300px;
}

.services-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}


/* ===========sdfsfd====== */

.ser-card {
    position: relative;
    overflow: hidden;
   background: linear-gradient(135deg, #071a13, #0b3d2e, #159957);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: 0.4s ease;
    z-index: 1;
}

/* Animated Background */
.ser-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
   background: linear-gradient(135deg, #0b1f3a 0%, #164e8a 50%, #fe7751 100%);
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.35;
    top: -80px;
    right: -80px;
    animation: cardGlow 5s ease-in-out infinite alternate;
    z-index: -1;
}

.ser-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: #4887ef;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    bottom: -80px;
    left: -60px;
    animation: cardGlow2 6s ease-in-out infinite alternate;
    z-index: -1;
}

/* Hover */
.ser-card:hover {
    transform: translateY(-8px);
    border-color: rgba(72, 135, 239, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@keyframes cardGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-40px, 30px) scale(1.3);
    }
}

@keyframes cardGlow2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, -30px) scale(1.2);
    }
}

.ser-card h5 {
	background: #00ff35;
	padding: 11px 11px;
	text-align: center;
	border-radius: 50px;
	font-size: 22px;
}

.ser-card h2 {
	color: #00ff35;
	font-family: "Figtree", sans-serif;
	font-size: 20px;
}

.ser-card p {
	color: #fff;
	font-family: "Inter", sans-serif;
	line-height: 30px;
}

.services {
	margin-top: 70px;
}

.faq-text h2 {
	font-size: 24px;
	font-family: "Figtree", sans-serif;
}




/* ============faq==============start============ */


* {
    box-sizing: border-box;
}

.faq-section {
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    background: #070d17;
    margin-top: 70px;
}

/* Background Glow */
.faq-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: #4887ef;
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.12;
    top: -180px;
    left: -150px;
}

.faq-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #fe7751;
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.10;
    bottom: -200px;
    right: -150px;
}

.faq-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

/* Header */

.faq-header {
    text-align: center;
    margin-bottom: 55px;
}

.faq-tag {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(72, 135, 239, 0.35);
    border-radius: 50px;
    color: #000;
    background:#00ff35;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
    font-family: "Figtree", sans-serif;
}

.faq-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    font-family: "Figtree", sans-serif;
}

.faq-header h2 span {
    background: linear-gradient(
        90deg,
        #dd9104,
        #00ff35
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
}

.faq-header p {
    max-width: 650px;
    margin: 18px auto 0;
    color: #8995a8;
    font-size: 16px;
    line-height: 1.7;
    font-family: "Inter", sans-serif;
}

/* FAQ List */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.025)
    );
    backdrop-filter: blur(15px);
    transition: 0.35s ease;
}

.faq-item:hover {
    border-color: rgba(72, 135, 239, 0.4);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: #ffffff;
    padding: 23px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: "Figtree", sans-serif;
}

.faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #dd9104,
        #00ff35
    );
    color: #ffffff;
    font-size: 23px;
    font-weight: 300;
    transition: 0.35s ease;
}

/* Answer */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-family: "Inter", sans-serif;
}

.faq-answer p {
    margin: 0;
    padding: 0 25px 25px;
    color: #9ca8ba;
    font-size: 15px;
    line-height: 1.8;
}

/* Active */

.faq-item.active {
    border-color: rgba(72, 135, 239, 0.35);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Mobile */

@media (max-width: 768px) {

    .faq-section {
        padding: 70px 15px;
    }

    .faq-header {
        margin-bottom: 35px;
    }

    .faq-header h2 {
        font-size: 34px;
    }

    .faq-header p {
        font-size: 14px;
    }

    .faq-question {
        padding: 20px;
        font-size: 15px;
        gap: 15px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 14px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
}

@media (max-width: 480px) {

    .faq-header h2 {
        font-size: 29px;
    }

    .faq-question {
        font-size: 14px;
    }
}

.blog_text h2 {
	font-size: 24px;
	font-family: "Figtree", sans-serif;
}

.blog_text p {
	font-family: "Inter", sans-serif;
	line-height: 26px;
	padding-right: 300px;
}

.blog_row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}

.blog_card img {
	width: 100%;
}

.blog_card h2 {
	font-size: 24px;
	font-family: "Figtree", sans-serif;
}

.blog_card p {
	font-family: "Inter", sans-serif;
	line-height: 26px;
}

.blog_card a {
	text-decoration: none;
	text-transform: capitalize;
    font-family: "Figtree", sans-serif;
}

.blog {
	margin-top: 70px;
}

.cta {
	background: #02360d;
	text-align: center;
	padding: 80px 0;
	margin-top: 70px;
}

.cta h4 {
	color: #fff;
}

.cta h2 {
	font-size: 24px;
	font-family: "Figtree", sans-serif;
}

.cta h2 {
	font-size: 24px;
	font-family: "Figtree", sans-serif;
	color: #fff;
	font-size: 35px;
}


.cta p {
	font-family: "Inter", sans-serif;
	line-height: 26px;
	color: #fff;
	padding: 0 200px;
}

.cta a {
	background: #fbef52;
	text-decoration: none;
	padding: 18px 80px;
	display: inline-block;
	border-radius: 50px;
	color: #000;
    font-family: "Figtree", sans-serif;
    font-weight: 600;
    margin-top: 20px;
}

.call {
	display: flex;
	align-items: center;
	background: #fbef523b;
	padding: 13px 20px;
	border-radius: 5px;
	margin: 20px 0;
    width: 650px;
}

.icon {
	background: #02360d;
	padding: 17px 17px;
	border-radius: 5px;
	color: #fff;
	margin-right: 19px;
}



.contact_row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}

.contact_col form input {
	width: 100%;
	padding: 15px 5px;
	margin: 10px 0;
    font-family: "Figtree", sans-serif;
}

.contact_col form select {
	width: 100%;
	padding: 15px 5px;
	margin: 10px 0;
    font-family: "Figtree", sans-serif;
}

.contact_col form textarea {
	width: 100%;
	padding: 15px 5px;
	margin: 10px 0;
    font-family: "Figtree", sans-serif;
}

.contact_col form ul li{
    list-style: none;
}

button {
	background:#02360d;
    color: #fff;
	border: 0;
	width: 100%;
	padding: 20px 0;
	border-radius: 50px;
    font-family: "Figtree", sans-serif;
}

.cotext h2, p {
	margin: 0 0;
    font-family: "Inter", sans-serif;
}

.cotext h2 {
	font-size: 18px;
	margin-bottom: 8px;
}

.contact_col h2 {
	 font-family: "Figtree", sans-serif;
}

.contact {
	margin-top: 70px;
}

.contact_col ul {
	padding: 0 0;
}

.footer {
	background: #000;
	margin-top: 70px;
	padding: 90px 0;
}

.footer-col img {
	width: 200px;
}

.footer-col p {
	color: #fff;
	line-height: 24px;
}

.footer-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 100px;
}

.footer-col h2 {
	color: #fff;
     font-family: "Figtree", sans-serif;
     text-transform: capitalize;
}

.footer-col ul li {
	padding: 10px 0;
}

.footer-col ul li a {
	color: #fadc29;
	text-decoration: none;
     font-family: "Figtree", sans-serif;
}

.footer-col ul {
	padding: 0 0;
}




/* =========responsive====== */

@media screen and (max-width: 767px) {
 
.navbar {
	background: #000;
	position: absolute;
	width: 100%;
	top: 82px;
	height: 100vh;
	left: -774px;
    transition: all 0.5s linear;
}

.footer-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}



.navbar.active {
	left: 0;
}

.call {
    width:100%;
}
.navbar ul li {
	display: block;
	padding: 12px 16px;
}

.mobile {
  display: inline-block;
  cursor: pointer;
}

.btn a {
	display: none;
}

.hero-text p{
    padding: 0 0;
}

.row-about {
	grid-template-columns: 1fr;
}

.services-row {
	grid-template-columns: 1fr;
}

.blog_text p{
    padding: 0 0;
}

.blog_row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

.ser-text p {
	padding-right: 0px;
}

.cta p {
	padding: 0 0px;
}

.contact_row {
	grid-template-columns: 1fr;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}

}

@media screen and (max-width: 500px) {
 
   .hero {
	min-height: 750px;
}

.hero-text h1 {
	font-size: 32px;
}

.hero-text h3 {
	font-size: 18px;
	line-height: 27px;
}

.cta h2 {
	font-size: 24px;
}

}