@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

p {
  font-family: "Jost", sans-serif;
}

/* ANIMATIONS */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 1s ease-out;
}

.reveal-left {
  transform: translateX(-120px);
}

.reveal-right {
  transform: translateX(120px);
}

.reveal {
  transform: translateY(50px);
}

.active {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

body {
  background: #0d0f1a;
  color: #fff;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h3 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

p {
  color: var(--text-dim);
  margin-bottom: 20px;
}

.header {
  background: #0d0f1a;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  color: #aaa;
  margin: 0 15px;
  text-decoration: none;
}

.nav a:hover {
  color: #00f0b5;
}

.logo img {
  width: auto;
  height: 100px;
}

.inner_section {
  padding: 100px 0;
}


.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  text-align: center;
  background: linear-gradient(to right, #0d0f1a, #12152a);
}



.btn {
  background: #00f0b5;
  color: #000;
  padding: 10px 25px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  margin: 10px;
  font-weight: 600;
}

.btn-outline {
  border: 1px solid #00f0b5;
  background: transparent;
  color: #00f0b5;
  padding: 10px 25px;
  border-radius: 5px;
}

.brands {
  padding: 60px 0;
  text-align: center;
  background: #11132a;
}

.brand-logos span {
  margin: 15px;
  color: #888;
}

.services {
  padding: 80px 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.card {
  background: #161a33;
  padding: 30px;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  background: #1d2142;
}

.stats {
  padding: 60px 0;
  background: #11132a;
}

.features {
  padding: 80px 0;
  text-align: center;
}

.feature-card {
  background: #161a33;
  padding: 40px;
  border-radius: 10px;
}

.testimonial {
  padding: 80px 0;
  text-align: center;
  background: #11132a;
}

.cta {
  padding: 80px 0;
  text-align: center;
}

.footer {
  padding: 60px 0;
  background: #0b0d18;
}

.footer p {
  color: #aaa;
  margin: 8px 0;
}

/* Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.photo_text {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  z-index: 1;
}

.photo_text h5 {
  font-size: 26px;
  margin: 10px auto;
}

.image-wrapper::after {
  background: #9bafc4;
  background: linear-gradient(360deg, rgba(155, 175, 196, 1) 0%, rgba(95, 95, 222, 0.72) 50%, rgba(31, 74, 184, 1) 95%);
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 10px;
}






/* new_index_css */


/* --- CSS VARIABLES & RESET --- */
:root {
  --primary: #0ea5e9;
  /* Light Blue */
  --secondary: #10b981;
  /* Green/Teal */
  --dark-bg: #111827;
  /* Very Dark Blue/Gray */
  --card-bg: #1f2937;
  /* Lighter Dark */
  --text-light: #f3f4f6;
  --text-gray: #d0d4db;
  --gradient-main: linear-gradient(135deg, #0ea5e9, #10b981);
  --gradient-hover: linear-gradient(135deg, #10b981, #0ea5e9);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

/* --- UTILITIES --- */
/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
} */

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient-main);
  color: white;
}

.btn-primary:hover {
  background: var(--gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: white;
}

.btn-outline:hover {
  border-color: var(--secondary);
  background: rgba(16, 185, 129, 0.1);
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* --- ANIMATIONS --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- HEADER --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.nav-links a:hover {
  color: var(--secondary);
}

/* --- HERO SECTION --- */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.8)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.hero h1 {
  font-size: 40px;
  max-width: 800px;
  margin: 0 auto 20px;
  padding: 20px 0;
}

.hero p {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
}

.hero-btns {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* --- LOGO CAROUSEL --- */
.logos-section {
  background: var(--card-bg);
  padding: 40px 0;
  text-align: center;
}

.logos-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 30px;
  opacity: 0.6;
}

.logos-grid span {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* --- ABOUT (SPLIT) --- */
.about_section {
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
  background: radial-gradient(circle, rgb(0 0 0) 0%, rgb(0 0 0) 50%, rgb(0 0 0) 100%);
  z-index: 2;
}

/* .about_section::after{
  position: absolute;
  content: '';
  left:0 ;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000000;
    background: radial-gradient(circle, rgb(0 0 0) 0%, rgb(0 0 0) 50%, rgb(0 0 0) 100%);
    z-index: 2;

} */
.backgrounde_about {
  left: 0;
  right: 0;
  top: 65px;
  opacity: .1;
  position: absolute;
  z-index: 0;
  width: 72%;
  margin: 0 auto;
}

.about_contact {
  background: #000000;
  background: linear-gradient(262deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 31%, rgba(0, 0, 0, 1) 100%);
}

.about_contact p {
  font-size: 16px;
  font-weight: 300;
  padding: 10px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.image-wrapper {
  position: relative;
  border-radius: 10px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.year-badge {
  position: absolute;
  top: -28px;
  right: -19px;
  background: white;
  color: black;
  padding: 15px;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

.year-badge span {
  font-size: 2rem;
  color: var(--secondary);
}

.year-badge small {
  font-size: 0.7rem;
  text-align: center;
}

/* --- STATS --- */



/* --- SERVICES GRID --- */
.we_offer_section .cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.we_offer_section .card {
  background: #1f293765;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 35px 30px;
  border-radius: 10px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 380px
}

.we_offer_section .card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.we_offer_section .card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.we_offer_section .card h4 {
  font-size: 22px;
  padding: 14px 0;
}

.we_offer_section .card p {
  font-size: 12px;
  font-weight: 300;
  padding: 10px 0;
}

.services_card_images {
  height: 100px;
  width: auto;
  margin: 30px auto;
  display: flex;
  justify-self: center
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 10px;
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: var(--secondary);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* --- GREEN SPLIT SECTION --- */
.green-split {
  background: linear-gradient(90deg, #166534 0%, #1f2937 60%);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;

}

.green-content {
  padding: 80px;
  position: relative;
  overflow: hidden;
}

.green-content .green_bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .1;
  z-index: -1;
}

.green-image img {
  height: 100%;
  width: 100%;
}

.feature-list .feature-icon {
  font-size: 1.5rem;
  color: #f5f5f5;
  background: #4ade80;
  padding: 21px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.feature-list li {
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
  background: rgb(255 255 255 / 23%);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ffffff7a;
}

.feature-icon {
  font-size: 1.5rem;
  color: #4ade80;
}

/* --- PROCESS & WHY CHOOSE --- */
.process-card {
  background-color: transparent;
  background-image: linear-gradient(135deg, #FFFFFF00 0%, #FFFFFF2B 100%);
  padding: 50px 35px;
  text-align: center;
  border-top: 3px solid var(--secondary);
  border-radius: 16px;
  border: 1px solid #ffffff79;
}

.process-card i {
  margin: 10px auto;
}

.process-card h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 10px auto;
}

.process-card p {
  font-size: 15px;
  font-weight: 400;

}

.wide-card {
  display: flex;
  gap: 20px;
  background: var(--card-bg);
  padding: 25px;
  border-radius: 8px;
  align-items: flex-start;
}

/* --- CTA FOOTER --- */
.cta-box {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  padding: 60px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: -50px;
  position: relative;
  z-index: 10;
}

/* --- FOOTER --- */
footer {
  background: #000;
  padding-top: 100px;
  padding-bottom: 30px;
  border-top: 1px solid #333;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-links h4 {
  color: white;
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: .5s ease-in-out;
}

.footer-links ul li a:hover {
  color: var(--secondary);
  font-weight: 500;
  font-size: 15px;
  transition: .2s ease-in-out;
}

.socials a {
  color: white;
  margin-right: 15px;
  font-size: 1.2rem;
}

/* about css */

.subtitle {
  color: var(--accent-green);
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}

.center {
  text-align: center;
}

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid var(--text-dim);
  padding: 12px 30px;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}

/* Sections */
.hero-title {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  width: 80%;
  max-width: 800px;
}

.who-we-are {
  display: flex;
  gap: 50px;
  align-items: center;
}

.content-box,
.image-box {
  flex: 1;
}

.video-placeholder {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.video-placeholder img {
  width: 100%;
  display: block;
  opacity: 0.7;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: var(--primary);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  color: var(--bg-dark);
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  width: 100px;
  height: 100px;
}

.experience-badge span {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-green);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.value-card {
  background-color: transparent;
  background-image: linear-gradient(180deg, #12111600 0%, #FFFFFF2B 100%);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #c2bebea1;
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box.red {
  background: rgba(255, 0, 0, 0.2);
  color: #ff4d4d;
}

.icon-box.blue {
  background: rgba(0, 150, 255, 0.2);
  color: #00bfff;
}

.icon-box.purple {
  background: rgba(150, 0, 255, 0.2);
  color: #bf00ff;
}

.stats-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  padding: 150px 0;
  margin-bottom: 80px;
}

.stats-overlay {
  display: flex;
  align-items: center;
  gap: 50px;
  background: rgba(255, 255, 255, 0.05);
  padding: 50px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.stats-text {
  flex: 1.5;
}



.stat-item h3 {
  font-size: 2rem;
  color: var(--accent-green);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.team-card {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 20px;
}

.team-info h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 10px auto;
}

.team-info p {
  font-size: 12px;
  font-weight: 300;
}

.socials {
  margin-bottom: 10px;
  color: var(--accent-green);
}

.socials i {
  margin: 0 5px;
  cursor: pointer;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  opacity: 0.6;
  font-weight: bold;
  font-size: 1.2rem;
}

.clients span {
  color: var(--accent-green);
}

.cta {
  text-align: center;
  border-top: 1px solid #333;
}





.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255 255 255 / 13%) 33%, rgb(255 255 255 / 21%) 100%);
  border-radius: 20px;
  position: absolute;
  bottom: -230px;
  left: 0;
  right: 0;
}

.stat-item {
  border-right: 1px solid #fff;
  margin: 20px 4px 20px 4px;
  padding: 0px 78px 0px 45px;
}

.stats-grid:nt(4).stat-item {
  border: none;
}

.we_offer_section {
  padding: 120px 0;
  position: relative;
}

.services_bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: .1;
}

.cards-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 20px auto;
}

.how_it_work_section a {
  font-size: 14px;
  font-weight: 400;
  padding: 10px 22px;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  margin-top: 0;
}


.why_choose_section .cards-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 20px auto;
  flex-wrap: wrap;

}

.why_choose_section .wide-card {
  background-color: transparent;
  background-image: linear-gradient(135deg, #FFFFFF00 0%, #FFFFFF2B 100%);
  border: 1px solid #ffffff7a;
  padding: 40px 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 569px;
  height: 180px;
}

.why_choose_section .wide-card img {
  height: 100px;
  width: auto;
}

.wide-card-content h4 {
  font-size: 26px;
  color: #04dcf8;
  padding-bottom: 10px;
  font-weight: 400;
}

.wide-card-content p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

pointer {
  position: relative;
  padding: 120px 0;
}

.help_bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 83%;
  opacity: .1;
  margin: 0 auto;
  z-index: -1;
}

.help_section {
  overflow: hidden;
  position: relative;
  padding: 120px 0;
}

.help_section::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000000;
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 33%, rgba(0, 0, 0, 1) 100%);
  z-index: -1;
  width: 100%;
  height: 100%;

}

.help_section .card {
  background: #ffffff0f;
  padding: 30px 20px;
  border-radius: 10px;
  transition: 0.3s;
  border: 1px solid #ffffff82;
  text-align: left;
  width: 400px;
  height: auto;
}

.help_section .card a {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 400;
}

.help_section .card h4 {
  font-size: 26px;
  font-weight: 400;
  margin-top: 25px;
}

.help_section .card p {
  font-size: 14px;
  font-weight: 300;
  padding-bottom: 20px;
  margin: 5px auto;
}

.help_section .card img {
  height: 80px;
}

.cta_section .btn_Book {
  border: 1px solid #fafafa;
  padding: 15px 35px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  background: transparent;
  transition: all 0.9s;
}

.cta_section .btn_Book:hover {
  background: #fff;
  color: #000;
  transform: translateY(-5px);
}

.button_book {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.cta_section .btn_start {
  border: 1px solid #10055b;
  padding: 15px 35px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  background: #10055b;
  transition: all 0.9s;
}

.cta_section .btn_start:hover {
  background: #fff;
  color: #000;
  transform: translateY(-5px);
}

.footer_logo {
  width: auto;
  height: 40px;
  object-fit: cover;
}

.footer-grid p {
  font-size: 14px;
  font-weight: 300;
}

.footer-links h4 {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  position: relative;
  margin-bottom: 60px;
}

.footer-links h4::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: -10px;
  background-color: #fff;
  height: 1.5px;
  width: 50px;
}

.footer-links h4::before {
  position: absolute;
  content: '';
  left: 56px;
  right: 0px;
  bottom: -10px;
  background-color: #fff;
  height: 1.5px;
  width: 14px;
  border-radius: 6px;
}



/* portfolio_css */

/* Base Styles - Encapsulated in a wrapper to avoid conflicts */
.db-wrapper {
  background-color: #0b0e13;
  color: #ffffff;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.db-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- ANIMATION CLASSES --- */
.reveal-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}

.reveal-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease-out;
}

.active {
  opacity: 1;
  transform: translateX(0);
}

/* --- SECTION 1: HERO --- */
.db-hero {
  padding: 100px 0;
  text-align: center;
  background: radial-gradient(circle at top, #161b22, #0b0e13);
}

.db-hero-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 20px;
  border-radius: 20px;
}

.db-hero-card h1 {
  font-size: 48px;
  margin: 0 0 10px 0;
}

.db-hero-card p {
  color: #a0a0a0;
  font-size: 18px;
}

/* --- SECTION 2: PORTFOLIO GRID --- */
.db-portfolio {
  padding: 80px 0;
  text-align: center;
  margin: 80px 0;
  margin-top: 0;
}

.db-tag {
  color: #b6ff00;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.db-section-title {
  font-size: 32px;
  max-width: 700px;
  margin: 0 auto 50px auto;
  line-height: 1.3;
}

.db-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.db-card {
    background: #161b22;
    border-radius: 15px;
    text-align: left;
    transition: transform 0.3s;
    position: relative;
    height: 400px;
    margin: 57px auto;
    width: 100%;
}

.db-card:hover {
  transform: translateY(-10px);
}

.db-card-img {
width: 100%;
    height: 100%;
    background-color: #2a2a2a;
    object-fit: cover;
    border-radius: 15px;
    opacity: .6;
}
.db-card:hover .db-card-content{
 bottom: -50px;
 transition: .5s ease-in-out;
}
.db-card-content {
    padding: 28px 20px;
    position: absolute;
    bottom: -102px;
    background: #26272a;
    width: 90%;
    margin: 0 auto;
    left: 0;
    right: 0;
    border-radius: 22px;
    text-align: center;
    height: 200px;
    transition: .9s ease-in-out;
    cursor: pointer;
}

.db-card-content h4 {
  color: #b6ff00;
  margin: 0 0 10px 0;
  font-size: 18px;
}

.db-card-content p {
  color: #a0a0a0;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.db-btn-text {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
  border: 1px solid #b6ff00;
  padding: 10px 25px;
  border-radius: 10px;
}

/* --- SECTION 3: IMAGE BANNER --- */
.db-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  text-align: center;
}

.db-banner h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.db-banner p {
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.db-btn-teal {
  background-color: #008d9b;
  color: white;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

/* --- SECTION 4: HELP SECTION --- */
.db-help {
  padding: 100px 0;
  text-align: center;
}

.db-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.db-help-card {
  background: #161b22;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.db-icon {
  font-size: 30px;
  margin-bottom: 20px;
  display: block;
}

.db-help-card h3 {
  margin: 0 0 15px 0;
  font-size: 20px;
}

.db-help-card p {
  color: #a0a0a0;
  font-size: 14px;
  margin-bottom: 30px;
}

.db-btn-full {
  display: block;
  width: 100%;
  background-color: #008d9b;
  color: white;
  text-align: center;
  padding: 12px 0;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

/* --- SECTION 5: GROW CTA --- */
.db-grow {
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid #1f252d;
}

.db-grow h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.db-grow p {
  color: #a0a0a0;
  margin-bottom: 40px;
}

.db-flex-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.db-btn-outline {
  border: 1px solid #333;
  color: white;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}



/* contact_page_css */


       .info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: -40px;
        }

        .info-card {
            background: #161b22;
            padding: 40px 30px;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .info-icon {
            font-size: 35px;
            margin-bottom: 20px;
            display: block;
        }

        .info-card h3 {
            margin-bottom: 15px;
            font-size: 20px;
        }

        .info-card p {
            color: #a0a0a0;
            font-size: 14px;
            margin-bottom: 30px;
            min-height: 60px;
        }

        /* --- Section 3: Map --- */
        .map-section {
            width: 100%;
            height: 450px;
            margin: 80px 0;
            filter: grayscale(1) invert(0.9) contrast(1.2); /* Makes map dark theme */
        }

        .map-section iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* --- Section 4: Contact Form --- */
        .form-section {
            display: flex;
            background: #161b22;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .form-image {
            flex: 1;
            background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=2070&auto=format&fit=crop') center/cover;
            min-height: 500px;
        }

        .form-content {
            flex: 1;
            padding: 60px;
        }

        .form-content h2 {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .form-content p {
            color: #a0a0a0;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            background: #0b0e13;
            border: 1px solid #333;
            padding: 12px;
            color: white;
            border-radius: 5px;
        }

        .form-group textarea {
            height: 120px;
            resize: none;
        }




         .contact_card .btn-teal {
            background-color: #008b9b;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 12px;
            transition: 0.3s;
            width: 100%;
        }

        .contact_card .btn-teal:hover {
            background-color: #00a8bc;
        }

    
        .contact-hero {
            padding: 100px 20px;
            text-align: center;
            background: radial-gradient(circle at top right, #1a232e, #0b0e13);
        }

        .contact-hero .hero-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 60px 40px;
            border-radius: 20px;
            max-width: 900px;
            margin: 0 auto;
        }

        .contact-hero .hero-card h1 {
            font-size: 42px;
            margin-bottom: 15px;
        }

        .contact-hero .hero-card p {
            color: #a0a0a0;
            font-size: 18px;
            max-width: 500px;
            margin: 0 auto;
        }




        /* services */

         .srv-page-wrapper {
            background-color: #0b0e13;
            color: #ffffff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        .srv-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Animation States */
        .srv-reveal-left {
            opacity: 0;
            transform: translateX(-100px);
            transition: all 1s ease-out;
        }

        .srv-reveal-right {
            opacity: 0;
            transform: translateX(100px);
            transition: all 1s ease-out;
        }

        .srv-visible {
            opacity: 1 !important;
            transform: translateX(0) !important;
        }

        /* 1. Hero Title Section */
        .srv-hero-section {
            padding: 100px 0 60px;
            text-align: center;
        }
        .srv-hero-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            padding: 60px 20px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .srv-hero-card h1 { font-size: 3rem; margin: 0 0 10px; }
        .srv-hero-card p { color: #a0a0a0; font-size: 1.1rem; }

        /* 2. Success Intro Section */
        .srv-intro-flex {
            display: flex;
            align-items: center;
            gap: 50px;
            padding: 80px 0;
        }
        .srv-intro-content { flex: 1; }
        .srv-intro-image-area { flex: 1; position: relative; }
        .srv-label { color: #b4ff00; font-size: 0.8rem; font-weight: bold; text-transform: uppercase; margin-bottom: 15px; display: block; }
        .srv-h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 25px; }
        .srv-p { color: #a0a0a0; line-height: 1.6; margin-bottom: 30px; }
        .srv-btn-teal {
            background: #008fa1;
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }
        .srv-intro-img { width: 100%; border-radius: 15px; }
        .srv-badge {
            position: absolute; bottom: -20px; left: -20px;
            background: #ffffff; color: #333;
            padding: 15px 25px; border-radius: 50px;
            display: flex; align-items: center; gap: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            font-weight: bold; font-size: 0.9rem;
        }

      .form_contact{
        margin-bottom: 50px;
      }


