:root {
  /* Colors */
    --primary: #f79331;
    --primary-dark: #4f46e5;
    --secondary: #f79331;
    --accent: #ec4899;
    --text-dark: #1f2937;
    --text-light: #4b5563;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    
    /* Shadows */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.135);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* For Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 12px; /* width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: #000; /* track color */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f79331, #ff9900); /* thumb color with gradient */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #e68a00, #ff9900); /* hover effect */
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #e68a00 #000; /* thumb color track color */
}




body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    line-height: 1.6;
    cursor: none !important;
}

/* Header Styling */
.header {
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
}

.logo img {
  height: 70px;        /* apne design ke hisab se adjust karein */
  width: auto;
  display: block;
}

.logo:hover {
    transform: scale(1.05);
}

/* Navigation Menu */
.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #f79331;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu for Mobile */
.nav-toggle {
    display: none; /* Hide on desktop */
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.open .hamburger {
    background-color: transparent;
}

.nav-toggle.open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.open .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ===============================
   📱 RESPONSIVE MEDIA QUERIES
   =============================== */

/* --- Tablets and Small Laptops --- */
@media (max-width: 1024px) {
  .nav-list {
    gap: 1.5rem;
  }

  .logo {
    font-size: 1.5rem;
  }
}

/* --- Mobile Devices --- */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: #fff;
    padding: 80px 0 0 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease-in-out;
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 1.2rem;
    color: #222;
  }

  .nav-toggle {
    display: block;
  }

  .logo {
    font-size: 1.4rem;
  }
}

/* --- Small Mobiles --- */
@media (max-width: 480px) {
  .header {
    padding: 0 1.2rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-link {
    font-size: 1rem;
  }
}



/* ===========================
   🌟 HERO / BANNER SECTION
   =========================== */

.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 2rem;
  padding: 5% 5%;
  text-align: center;
}

/* Tablet layout */
@media only screen and (min-width: 48rem) {
  .banner-column {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    margin-top: 4rem;
    text-align: left;
  }
}

/* Desktop layout */
@media only screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1fr max-content;
    column-gap: 3rem;
    padding: 8% 1%;
  }
}

/* ===========================
   🖼️ IMAGE STYLING
   =========================== */
.banner-image {
  display: block;
  width: 100%;
  max-width: 22rem;
  height: auto;
  object-fit: contain;
  justify-self: center;
  transition: transform 0.4s ease;
}

.banner-image:hover {
  transform: scale(1.05);
}

/* Tablet and above */
@media only screen and (min-width: 48rem) {
  .banner-image {
    order: 1;
    max-width: 28rem;
  }
}

/* Desktop image */
@media only screen and (min-width: 64rem) {
  .banner-image {
    max-width: 33rem;
  }
}

/* ===========================
   ✨ TEXT CONTENT
   =========================== */
.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
}

@media only screen and (min-width: 48rem) {
  .banner-inner {
    align-items: flex-start;
  }
}

.heading-xl {
  font-size: clamp(1.4rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}
.heading-xl span {
  color: #f79331;
}

.paragraph {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #333;
  line-height: 1.6;
  max-width: 32rem;
  margin: 0 auto;
}

@media only screen and (min-width: 48rem) {
  .paragraph {
    margin: 0;
  }
}

/* ===========================
   🚀 BUTTON STYLING
   =========================== */
.super-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(145deg, #0f0f0f, #1c1c1c);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.super-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #00ffff, #ff00ff, #00ffff);
  animation: rotate 4s linear infinite;
  z-index: -2;
}

.super-button::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #0a0a0a;
  border-radius: inherit;
  z-index: -1;
}

.super-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
}

.super-button:hover .arrow {
  transform: translateX(6px);
}

.arrow {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease-in-out;
  color: #f79331;
}

/* ===========================
   🔁 ROTATION ANIMATION
   =========================== */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ===========================
   📱 RESPONSIVE OPTIMIZATIONS
   =========================== */

/* Small Mobiles (under 480px) */
@media (max-width: 480px) {
  .banner-column {
    padding: 10% 3%;
  }

  .banner-image {
    max-width: 16rem;
  }

  .heading-xl {
    font-size: 1.6rem;
  }

  .paragraph {
    font-size: 0.9rem;
  }

  .super-button {
    padding: 12px 22px;
    font-size: 14px;
  }
}

/* Medium Mobiles (480px–768px) */
@media (min-width: 480px) and (max-width: 768px) {
  .banner-column {
    padding: 5% 4%;
  }

  .heading-xl {
    font-size: 2.2rem;
  }

  .paragraph {
    font-size: 1rem;
  }
}












































/* ===========================
   🌟 BASE SECTION STYLING
   =========================== */
.section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px;
  gap: 50px;
  flex-wrap: wrap;
}

/* ===========================
   📝 TEXT CONTENT AREA
   =========================== */
.content {
  flex: 1;
  max-width: 600px;
}

.content .tagline {
  display: inline-block;
  background-color: #000000;
  color: #f79331;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.content h1 span {
  color: #f79331;
}

.content p {
  font-size: clamp(0.95rem, 2vw, 1rem);
  margin-bottom: 30px;
  line-height: 1.6;
  color: #333;
}

.content .btn {
  display: inline-block;
  background-color: #ff9900;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  margin-right: 15px;
  transition: 0.3s ease;
}

.content .btn:hover {
  background-color: #e68a00;
}

.content .btn-outline {
  border: 2px solid #ff9900;
  background: transparent;
  color: #ff9900;
}

.content .btn-outline:hover {
  background-color: #ff9900;
  color: #fff;
}

/* ===========================
   🖼️ IMAGE GRID ANIMATION AREA
   =========================== */
.image-grid-section {
  flex: 1;
  width: 50%;
  overflow: hidden;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-row {
  display: flex;
  gap: 20px;
  animation-timing-function: linear;
  will-change: transform;
}

.image-row img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.image-row img:hover {
  transform: scale(1.05);
}

/* ===========================
   🎞️ ANIMATIONS
   =========================== */
.move-up {
  animation: moveUp 20s linear infinite;
}

.move-down {
  animation: moveDown 25s linear infinite;
}

@keyframes moveUp {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes moveDown {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* ===========================
   📱 RESPONSIVE MEDIA QUERIES
   =========================== */

/* --- Tablets (768px–1024px) --- */
@media (max-width: 1024px) {
  .section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
  }

  .content {
    max-width: 100%;
  }

  .image-grid-section {
    width: 100%;
    padding: 30px 0;
  }

  .image-row img {
    width: 160px;
    height: 200px;
  }
}

/* --- Mobile (480px–768px) --- */
@media (max-width: 768px) {
  .section {
    padding: 30px 20px;
    gap: 30px;
  }

  .content h1 {
    font-size: 1.5rem;
  }

  .content p {
    font-size: 0.9rem;
  }

  .content .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .image-grid-section {
    padding: 20px 0;
  }

  .image-row img {
    width: 140px;
    height: 180px;
  }
}

/* --- Small Mobile (below 480px) --- */
@media (max-width: 480px) {
  .section {
    padding: 20px 15px;
    gap: 25px;
    
  }

  .content h1 {
    font-size: 1.6rem;
  }

  .content p {
    font-size: 0.85rem;
  }

  .content .btn {
    display: block;
    width: 100%;
    margin-bottom: 120px;

  }

  .image-row img {
    width: 120px;
    height: 150px;
  }
}











section {
    padding: 80px 0;
    min-height: auto;
    font-family: 'Poppins', sans-serif;
}

.bg-gray {
    background-color: #f9f9f9;
}

.site-heading {
    margin-bottom: 60px;
    text-align: center;
}

.site-heading h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.site-heading h2 span {
    color: #f79331;
}

.site-heading h4 {
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.5rem;
    text-transform: capitalize;
}

.site-heading h4::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #f79331;
}
.heading-offer{
  font-size: 1.5rem;
}

.our-offer-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.our-offer-items .item {
    position: relative;
    background: #ffffff;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    flex: 1 1 280px;
    max-width: 350px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.our-offer-items .item::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #f79331;
    z-index: 0; /* behind the content */
    transition: all 0.35s ease-in-out;
}

.our-offer-items .item i,
.our-offer-items .item h4,
.our-offer-items .item p {
    position: relative;
    z-index: 1; /* make sure content is above overlay */
    transition: all 0.35s ease-in-out;
}
.our-offer-items .item i {
    font-size: 70px; /* increased from 50px */
    height: 100px;
    width: 100px;
    line-height: 100px;
    color: #f79331;
}

.our-offer-items .item:hover::after {
    left: 0;
}

.our-offer-items .item:hover i,
.our-offer-items .item:hover h4,
.our-offer-items .item:hover p {
    color: #000 !important; /* text visible on green overlay */
}

.our-offer-items .item:hover i {
  
    color: #000 !important;
}


@media (max-width: 991px) {
    .our-offer-items {
        gap: 20px;
    }
    .our-offer-items .item {
        padding: 40px 20px;
    }
}

@media (max-width: 575px) {
    .site-heading h2 {
        font-size: 1.6rem;
    }
    .site-heading h4{
      font-size: 1rem;

    }
    .our-offer-items .item {
        max-width: 100%;
    }
}




.cursor, .cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.15s ease-out, background 0.2s ease;
}

.cursor {
    width: 12px;
    height: 12px;
    background: #f79331;
}

.cursor-follower {
    width: 36px;
    height: 36px;
    background: #f794317d;
}

@media (max-width: 768px) {
    .cursor, .cursor-follower {
        display: none;
    }
}





/* Container */
.container-price {

    margin: 0 auto;
    padding: var(--spacing-xl);
}

/* Header */
.header-price {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.header-price .title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 5rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-price .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .slider {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.discount {
    background: var(--accent);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: var(--spacing-xs);
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card {
    position: relative;
    transition: var(--transition);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.card-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
}

.card-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.card-header h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.features {
    list-style: none;
    margin: var(--spacing-lg) 0;
    flex-grow: 1;
    padding: 0;
}

.features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.features li:hover {
    background: rgba(99, 102, 241, 0.05);
    transform: translateX(5px);
}

.features li.featured {
    background: rgba(99, 102, 241, 0.1);
    border-left: 3px solid var(--primary);
}

.feature-content {
    display: flex;
    flex-direction: column;
    margin-left: var(--spacing-sm);
}

.feature-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.feature-description {
    font-size: 0.9rem;
    color: var(--text-light);
}

.feature-icon {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.features li.featured .feature-icon {
    color: var(--accent);
}

.select-plan {
    width: 100%;
    padding: var(--spacing-md);
    border: none;
    border-radius: var(--radius-md);
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
}

.select-plan:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Feature Comparison */
.feature-comparison {
    margin: var(--spacing-xl) 0;
    padding-top: var(--spacing-xl);
    text-align: center;
}

.feature-comparison h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comparison-table {
    overflow-x: auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    max-width: 1000px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

th {
    background: var(--bg-light);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.faq-section h2 {
    margin-bottom: var(--spacing-lg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.toggle-icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 var(--spacing-md);
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: var(--spacing-md);
    max-height: 200px;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container-price {
        padding: var(--spacing-md);
    }

    .header-price .title {
        font-size: 2rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }
}



/* About Page*/
.about {
  padding: 80px 10%;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1;
}

.about-content h1 {
  font-size: 36px;
  color: #111;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555;
}

/* Mission & Vision */
.mission {
  padding: 80px 10%;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.mission-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
}

.mission-box {
  flex: 1 1 45%;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.mission-box:hover {
  transform: translateY(-5px);
}

.mission-box h2 {
  color: #f79331;
  margin-bottom: 15px;
}

.mission-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .mission-container {
    flex-direction: column;
  }
}


.why-divers {
  padding: 80px 10%;
  background-color: #f9f9f9;
  text-align: center;
}

.why-divers h2 {
  font-size: 32px;
  color: #f79331;
  margin-bottom: 20px;
}

.why-divers p {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
  line-height: 1.6;
}

.features {
  display: flex;
  flex-wrap: wrap; /* allow wrapping to second row */
  gap: 30px;
  justify-content: center;
}

.feature-box {
  flex: 0 0 30%; /* 3 per row */
 background: linear-gradient(145deg, #ffffff, #757575);


  /* Soft shadow using rgba */
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  padding: 30px;
  border-radius: 12px;

  transition: transform 0.3s ease;
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box img {
  height: 120px;
  width: 120px;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 18px;
  color: #000;
}

/* Responsive */
@media (max-width: 1024px) {
  .feature-box {
    flex: 0 0 45%; /* 2 per row on tablets */
  }
}

@media (max-width: 768px) {
  .feature-box {
    flex: 0 0 80%; /* 1 per row on mobile */
  }
}



.service-section {
  width: 100%;
  padding: 10% 5%;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.service-column {
  width: 100%;
  text-align: center;
}

.service-card {
  background: linear-gradient(to bottom, #ffffff 50%, #f79331 50%);
  background-size: 100% 200%;
  background-position: 0 0;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.5s ease;
}

.service-icon-wrapper {
  background-color: #f79331;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin: 0 auto 1rem auto;
  transition: all 0.5s ease;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f194c;
  margin: 1rem 0;
  transition: color 0.5s ease;
}

.service-card p {
  color: #575a7b;
  font-size: 15px;
  line-height: 1.6;
  transition: color 0.5s ease;
}

.service-card:hover {
  background-position: 0 100%;
}

.service-card:hover .service-icon-wrapper {
  background-color: #ffffff;
  color: #f79331;
}

.service-card:hover h3 {
  color: #ffffff;
}

.service-card:hover p {
  color: #f0f0f0;
}

/* Responsive */
@media screen and (min-width: 768px) {
  .service-column {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

@media screen and (min-width: 992px) {
  .service-column {
    flex: 0 0 31%;
    max-width: 31%;
  }
}






.container-contact {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 6% 5%;
  background-color: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

}

.form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #000;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #f79331);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #000;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}



.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #000;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: #000;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.information i {
  color: #000;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #000000, #f79331);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #f79331;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #ffffff, #f79331);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}

/* service sec start */
.ecom-service-section {
  background-color: #24303f;
  color: #fff;
  padding: 80px 8%;
  font-family: 'Poppins', sans-serif;
}

/* ====== Heading Container ====== */
.heading-container {
  text-align: center;
  margin-bottom: 50px;
}

.heading-container h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.heading-container h2 span {
  color: #f79331;
}

.heading-container p {
  font-size: 16px;
  font-weight: 500;
}

/* ====== Content Container ====== */
.content-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* ====== Left Container ====== */
.left-container {
  flex: 1 1 600px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 boxes per row */
  gap: 25px;
}

.service-box {
  position: relative;
  background-color: #2e3b4c;
  border: 1px solid #aaa;
  border-radius: 10px;
  padding: 20px 20px 20px 60px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  min-height: 80px;
}

.service-box:hover {
  border-color: #f79331;
  transform: translateY(-4px);
}

.service-box .number {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  background: #f79331;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-box .text {
  line-height: 1.4;
  color: #fff;
}

/* ====== Right Container ====== */
.right-container {
  flex: 1 1 400px;
  text-align: center;
}

.right-container img {
  width: 100%;
  max-width: 400px;
}

/* ====== Responsive Design ====== */

/* Tablet screens (max-width: 992px) */
@media (max-width: 992px) {
  .content-container {
    align-items: center;
    text-align: center;
  }

  .right-container img {
    margin-top: 40px;
    max-width: 350px;
  }

  .left-container {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 boxes per row */
    gap: 20px;
  }
}

/* Mobile screens (max-width: 600px) */
@media (max-width: 600px) {
  .left-container {
    grid-template-columns: 1fr; /* Mobile: 1 box per row */
  }

  .heading-container h2 {
    font-size: 26px;
  }

  .service-box {
    padding-left: 60px;
    font-size: 14px;
  }

  .service-box .number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}


/* service sec end */





/* footer start */

.footer {
  background: #ffffff;
  color: #222;
  padding: 2% 5%;
  border-top: 1px solid #ddd;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #000;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer ul li a {
  text-decoration: none;
  color: #444;
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: #f9a826;
}

.payment-icons img {
  width: 200px;
  margin-right: 8px;
  margin-top: 10px;
}

.contact i {
  color: #f9a826;
  margin-right: 8px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;

  transition: color 0.3s;
}

.social-icons a:hover {
  color: #f9a826;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #444;
  text-decoration: none;
  margin-left: 15px;
}

.footer-bottom a:hover {
  color: #f9a826;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 6%;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom a {
    margin-left: 10px;
  }
}


/* footer end */