* {
   
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f5f0;

}


/* Navbar Styles */



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    position: relative;
}

/* Company Logo - Left Side */
.company-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-text span {
    font-weight: 700;
    color: #b89146;
    display: block;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Right Side Navigation */
.right-section {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    white-space: nowrap;
    position: relative;
}

.nav-menu li a:hover {
    color: #b89146;
}

.nav-menu li.active a {
    color: #b89146;
    font-weight: 600;
}

.nav-menu li.active a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #b89146;
}

/* Contact button */
.contact-btn a {
    border: 2px solid #b89146;
    padding: 0.5rem 1.8rem !important;
    border-radius: 30px;
    color: #b89146 !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-decoration: none;
}

.contact-btn a:hover {
    background-color: #b89146;
    color: white !important;
}

/* Hamburger menu */
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #2c2c2c;
    margin-left: 1rem;
}

/* Responsive Design */
@media screen and (max-width: 900px) {
    .right-section {
        gap: 1.5rem;
    }

    .nav-menu {
        gap: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem 4%;
    }

    .hamburger {
        display: block;
    }

    .right-section {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
    }

    .right-section.active {
        display: flex;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 1.2rem;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.1rem;
    }

    .nav-menu li.active a::after {
        display: none;
    }

    .nav-menu li.active a {
        border-left: 3px solid #b89146;
        padding-left: 1rem;
    }

    .contact-btn {
        width: 100%;
        margin-top: 0.5rem;
    }

    .contact-btn a {
        display: inline-block !important;
        padding: 0.7rem 2rem !important;
    }
}

@media screen and (max-width: 480px) {
    .logo-image {
        height: 40px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-text span {
        font-size: 0.9rem;
    }
}


/* ======== HERO SECTION - LEFT & RIGHT ======== */
.hero-container{
    position: relative;
    width: 100%;
    padding: 100px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    /* Background */
    background: linear-gradient(135deg,#0f6a6a,#102a2e,#0b1f22);
    overflow: hidden;
}
.hero-container::before{
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;

    background: radial-gradient(circle, rgba(255,120,60,0.35), transparent 70%);
    filter: blur(120px);
}

.hero-container::after{
    content: "";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background-image: url("/public/images/pattern.svg");
    opacity:0.12;
}

.hero-left{
    position: relative;
    z-index: 2;
    color: white;
}

.hero-container{
    max-width: 100%;
}


/* Left Section - Text Content */
.hero-left {
    flex: 1;
    max-width: 600px;
    align-self: flex-start;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffb52a;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #E5E7EB;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #b89146;
}

.btn-outline {
    background-color: transparent;
    color: #b89146;
    border: 2px solid #b89146;
    padding: 1rem 2.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background-color: #b89146;
    color: white;
}



/* Features List */
.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: 
    #E5E7EB;
}

.features-list li i {
    color: #4169e1;
    font-size: 1.2rem;
    width: 24px;
}

/* Right Section - Cards/Content */
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7rem;
    max-width: 500px;
}



.insight-card img {
    height: 100%;
    width: 100%;
    border-radius: 12px;
}

.insight-card img {
    transition: 0.4s ease;
}

.insight-card img:hover {
    transform: scale(1.05);
}

.hero-bottom-images{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:120px;
    margin-top:80px;
    width:100%;
}

/* Image Style */
.hero-bottom-image img{
    width:100%;
    max-width:500px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* ---------------- DESKTOP ---------------- */

@media (min-width:1025px){

.hero-bottom-images{
    flex-direction:row;
    padding:0 8%;
    gap: 300px;
    
}

}

/* ---------------- TABLET ---------------- */

@media (max-width:1024px){

.hero-bottom-images{
    flex-direction:column;
    gap:50px;
    padding:0 6%;
}

.hero-bottom-image img{
    max-width:550px;
}

}

/* ---------------- MOBILE ---------------- */

@media (max-width:768px){

.hero-bottom-images{
    flex-direction:column;
    gap:40px;
    padding:0 20px;   /* side margin */
}

.hero-bottom-image{
    width:100%;
}

.hero-bottom-image img{
    width:100%;
    max-width:100%;
}

}
.learn-more {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.learn-more:hover {
    gap: 1rem;
}

.hero-bottom-image img {
    transition: 0.4s ease;
}

.hero-bottom-image img:hover {
    transform: scale(1.05);
}

.investment-card img {
    height: 100%;
    width: 100%;
    border-radius: 12px;
}

.investment-card img {
    transition: 0.4s ease;
}

.investment-card img:hover {
    transform: scale(1.05);
}


.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e0e5ff;
    border-radius: 10px;
    margin: 1rem 0;
}

.progress-fill {
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg, #4169e1, #764ba2);
    border-radius: 10px;
}

.investment-stats {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}



/* Bottom Partner Section */
/* Partner Section - Hero ke andar */
.partner-section {
    margin-top: 2rem;
}

.partner-title {
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.partner-logos {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.partner-logos span {
    color: #333;
    font-weight: 600;
    font-size: 1rem;
}

.partner-title {
    color: #ffb52a;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.partner-logos span {
    color: #FFD;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Responsive Design */
@media screen and (max-width: 900px) {
    .right-section {
        gap: 1.5rem;
    }

    .nav-menu {
        gap: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        order: 2;
    }

    .left-section {
        order: 1;
    }

    .right-section {
        display: none;
        width: 100%;
        order: 3;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.5rem 0;
        margin-top: 1rem;
        border-top: 1px solid #eee;
    }

    .right-section.active {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 1.2rem;
        align-items: flex-start;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.1rem;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
    }

    /* Hero Section Responsive */
    .hero-container {
        flex-direction: column;
        padding: 2rem 5%;
        gap: 3rem;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-right {
        max-width: 100%;
    }

    .partner-logos {
        gap: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
    }

    .logo-dot {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

.footer {
  background: #e4e7ec;
  padding: 70px 0 30px;
  width: 100%;
}

.footer-container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

/* COLUMN */
.footer-col h3 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #b89146;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-top: 15px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
}

.logo h2 {
  font-size: 18px;
  font-weight: 600;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 14px;
  color: #666;
}

.social-icons a {
  display: inline-block;
  margin-left: 10px;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 50%;
  background: #e5e7eb;
  color: #333;
  font-size: 20px;
  transition: 0.3s;
}

.footer-social i{
  font-size: 26px;
  margin-right: 12px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #b89146;
  color: #fff;
}

/* ================== */
/* RESPONSIVE DESIGN */
/* ================== */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-left: 40px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 40px;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
            margin-left: 40px;
  }
}


.stats-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.stats-container {
    width: 100%;
    max-width: 1200px;
    background: #0f0f0f;
    border-radius: 25px;
    padding: 60px 40px;
    color: #c6a75e;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

/* Decorative Corner Shape */
.stats-container::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

/* Stats Text */
.stat-box h2 {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 15px;
}

.stat-box p {
    font-size: 16px;
    opacity: 0.9;
}

/* ======================= */
/* 📱 Responsive Design */
/* ======================= */

@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-container {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .stat-box h2 {
        font-size: 42px;
    }
}


/* contact us  */

/* CONTACT HERO SECTION */
.hero{
    position: relative;
    width: 100%;
    height: 450px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* BACKGROUND IMAGES */
.contact-hero{
    background-image: url('/public/images/contact-us-banner.png');
}

.seo-hero{
    background-image: url('/public/images/seo page.png');
}

.perf-hero{
    background-image: url('/public/images/performance.png');
}

.social-hero{
    background-image: url('/public/images/social media.png');
}

.influence-hero{
    background-image: url('/public/images/influence.png');
}

.web-hero{
    background-image: url('/public/images/web.png');
}

.digi-hero{
    background-image: url('/public/images/digitalmarketing.png');
}

.app-hero{
    background-image: url('/public/images/mobile-app-develoment.jpeg');
}


/* DARK OVERLAY */
.contact-overlay{
    position: absolute;
    inset: 0;
    background: rgba(10,32,70,0.75);
}

/* HERO CONTENT */
.contact-content{
    position: relative;
    max-width: 800px;
    padding: 20px;
    z-index: 2;
}

.contact-content h1{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #b89146;
}

.contact-content p{
    font-size: 18px;
    line-height: 1.6;
}


/* TABLET RESPONSIVE */
@media (max-width:992px){

    .hero{
        height: 400px;
    }

    .contact-content h1{
        font-size: 38px;
    }

    .contact-content p{
        font-size: 16px;
    }

}


/* MOBILE RESPONSIVE */
@media (max-width:576px){

    .hero{
        height: 350px;
        padding: 0 15px;
    }

    .contact-content h1{
        font-size: 28px;
    }

    .contact-content p{
        font-size: 14px;
    }

}


/* CONTACT SECTION */
.contact-section {
    padding: 80px 20px;
    background: #f5f7fa;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT SIDE FORM */
.form-section {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-section h2 {
    margin-bottom: 25px;
    font-size: 28px;
    color: #b89146;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 6px;
    font-weight: 600;
}

.required {
    color: red;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1f3c88;
    box-shadow: 0 0 5px rgba(31, 60, 136, 0.2);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* BUTTON */
.send-btn {
    width: 100%;
    padding: 14px;
    border: none;
    background: #b89146;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.send-btn:hover {
    background: #c9a65f;
}

/* RIGHT SIDE CONTACT INFO */
.contact-info {
    flex: 1;
    padding: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #b89146;
}

.contact-info p {
    margin-bottom: 25px;
    color: #555;
}

.info-box {
    margin-bottom: 20px;
}

.info-box h4 {
    margin-bottom: 5px;
    font-size: 18px;
    color: #1f3c88;
}

.contact-link {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

.contact-link:hover {
    color: #b89146;
}

/* RESPONSIVE DESIGN */

/* Tablet */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .form-section,
    .contact-info {
        padding: 30px;
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .contact-section {
        padding: 50px 15px;
    }

    .form-section,
    .contact-info {
        padding: 20px;
    }

    .form-section h2,
    .contact-info h2 {
        font-size: 22px;
    }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f7fa;
}

.services {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #b89146;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon {
  width: 110px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon img {
  width: 170px;
  height: 170px;
 
}

.orange { background: #f9a825; }
.blue   { background: #0288d1; }
.green  { background: #43a047; }
.red    { background: #e53935; }

.service-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #0c0c0c;
}

.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }
}

.about-service {
  padding: 20px 20px;
  background: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT SIDE */
.text {
  flex: 1;
}

.text h2 {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 700;
  margin-top: 20px;

}

.text h2 span {
  color: #b89146;
}

.text p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #b89146;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn:hover {
  background: #c9a55f;
}

/* RIGHT SIDE */
.image {
  flex: 1;
  text-align: center;
}

.image img {
  max-width: 100%;
  height: auto;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .content {
    flex-direction: column;
    text-align: center;
  }

  .text h2 {
    font-size: 28px;
  }
}

.main p{
    color: #555;
    line-height: 1.8;
    margin-top: 20px;
}

/* CTA SECTION */
.cta-section {
    background: #000;
    padding: 20px 20px;   /* Height kam ki */
    text-align: center;
    color: #fff;
    margin: 0;            /* Full width ke liye margin remove */
    width: 100%;
}

.cta-container {
    max-width: 1200px;    /* Thoda bada container */
    margin: auto;
}

.cta-section h1 {
    font-size: 32px;      /* Thoda compact */
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #ccc;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;   /* Button size bhi thoda kam */
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
    display: inline-block;
}

.btn-primary,
.btn-secondary {
    color: #fff;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(177, 42, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 30px 15px;  /* Mobile me aur compact */
    }

    .cta-section h1 {
        font-size: 22px;
    }

    .cta-section p {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 260px;
        margin: auto;
    }
}

.features-section {
  padding: 70px 20px;
  background: #f4f4f4;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.intro-text {
  margin-bottom: 40px;
  line-height: 1.6;
  font-size: 16px;
}

/* Feature Layout */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

/* Gold Circle */
.icon-circle {
  width: 50px;
  height: 50px;
  background: #b89146;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

/* Inner White Dot */
.icon-circle::after {
  content: "";
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.feature-content p {
  margin: 0;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .icon-circle {
    width: 40px;
    height: 40px;
  }

  .feature-content h3 {
    font-size: 18px;
  }
}

.about-section {
  padding: 80px 20px;
  background: #f4f4f4;
  font-family: Arial, sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 30px;
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* CONTENT */
.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content h2 span {
  color: #b89146; /* Purple highlight */
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-image {
    margin-bottom: 30px;
  }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: 0.3s ease;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
    filter: invert(1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

.product-section {
    padding: 60px 20px;
    
}

/* BUTTONS */
.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.tab-btn {
    padding: 14px 30px;
    border-radius: 40px;
    border: none;
    background: #e5e6ea;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.tab-btn.active {
    background: #fff;
    border: 2px solid #000;
}

/* CONTENT LAYOUT */
.content-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.content-left {
     flex: 0.9;
}

.content-left h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.content-left p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* BUTTON */
.main-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 40px;
    background: #000;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.main-btn:hover {
    background: #333;
}

/* RIGHT IMAGE */
.content-right {
    flex: 1.3;
}

.content-right img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .content-left h1 {
        font-size: 32px;
    }
}

/* HEADING SECTION */
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-heading h2 span {
    color: #b89146; /* Aapka theme color */
}

.section-heading p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .section-heading h2 {
        font-size: 28px;
    }

    .section-heading p {
        font-size: 15px;
        padding: 0 10px;
    }
}

/* Overlay Background */

.popup-overlay{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background: rgba(0,0,0,0.6);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
    display:none;
}

/* Popup Box */

.popup-box{
    background:#f5f5f5;
    padding:35px;
    width:400px;
    border-radius:8px;
    text-align:center;
    position:relative;
}

/* Close Button */

.close-btn{
    position:absolute;
    right:15px;
    top:10px;
    font-size:20px;
    cursor:pointer;
}

/* Form Inputs */

.popup-box input,
.popup-box textarea{
    width:100%;
    padding:12px;
    margin-top:12px;
    border:1px solid #ddd;
    border-radius:5px;
    font-size:14px;
}

/* Button */

.popup-box button{
    width:100%;
    margin-top:15px;
    padding:12px;
    border:none;
    background:#b89146;
    color:#fff;
    font-size:16px;
    border-radius:5px;
    cursor:pointer;
}

/* Mobile Responsive */

@media(max-width:500px){

.popup-box{
    width:90%;
    padding:25px;
}

}