/* =======================
   GLOBAL RESET
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =======================
   BASE THEME VARIABLES
======================= */
:root {
  /* Typography */
  --font-main: 'Inter', sans-serif;

  /* Transition */
  --transition-speed: 0.3s;

  /* Shared spacing */
  --container-width: 1440px;
  --section-padding: 0px 20px;

  /* Dark Theme Defaults */
  --bg-color: #0d0d0d;
  --text-color: #ffffff;
  --accent-color: #1e1e1e;


  /* CTA */

  --cta-bg-dark: linear-gradient(135deg, #0f0f0f, #2a2a2a);
  --cta-bg-light: linear-gradient(135deg, #f5f5f5, #ffffff);

  --cta-text-dark: #ffffff;
  --cta-text-light: #111111;

  --cta-btn-primary-bg-dark: #ffffff;
  --cta-btn-primary-text-dark: #6c63ff;

  --cta-btn-primary-bg-light: #6c63ff;
  --cta-btn-primary-text-light: #ffffff;

  --cta-btn-secondary-border-dark: rgba(255, 255, 255, 0.4);
  --cta-btn-secondary-border-light: rgba(0, 0, 0, 0.2);


  --cta-bg: linear-gradient(135deg, #f5f5f5, #ffffff);
  --cta-text: #111111;

  --cta-btn-primary-bg: #6c63ff;
  --cta-btn-primary-text: #ffffff;

  --cta-btn-secondary-border: rgba(0, 0, 0, 0.2);
}

/* =======================
   LIGHT THEME OVERRIDES
======================= */
.light-theme {
  --bg-color: #f5f5f5;
  --text-color: #0d0d0d;
  --accent-color: #e5e5e5;
}


/* =======================
   BASE STYLES
======================= */
body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color var(--transition-speed), color var(--transition-speed);
}


body.dark-theme {
  --cta-bg: linear-gradient(135deg, #0f0f0f, #2a2a2a);
  --cta-text: #ffffff;

  --cta-btn-primary-bg: #ffffff;
  --cta-btn-primary-text: #6c63ff;

  --cta-btn-secondary-border: rgba(255, 255, 255, 0.3);
}

body.light-theme {
  --cta-bg: var(--cta-bg-light);
  --cta-text: var(--cta-text-light);
  --cta-btn-primary-bg: var(--cta-btn-primary-bg-light);
  --cta-btn-primary-text: var(--cta-btn-primary-text-light);
  --cta-btn-secondary-border: var(--cta-btn-secondary-border-light);
}

/* Container for fixed width content */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--section-padding);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-color);
}

p {
  line-height: 1.6;
  color: var(--text-color);
}

/* Optional background sections */
.section {
  width: 100%;
  background-color: var(--bg-color);
  transition: background-color var(--transition-speed);
}



/* Header CSS Start */

/* ========================
   NAVBAR BASE
======================== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--accent-color);
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
}

/* ========================
   LOGO
======================== */
.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-color);
}

/* ========================
   NAV ACTIONS GROUP
======================== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ========================
   THEME TOGGLE BUTTON
======================== */
.theme-toggle {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text-color);
  cursor: pointer;
  transition: color 0.3s ease;
}

.theme-toggle:hover{
    background: transparent;
}

.theme-toggle:focus, .theme-toggle:active{
    background-color: transparent !important;
}

/* ========================
   CTA BUTTONS (Desktop)
======================== */
.cta-buttons {
  display: flex;
  gap: 1rem;
}

/* WhatsApp Button */
.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
  color: #fff;
}

/* Book a Call */
.btn-primary {
  background-color: var(--text-color);
  color: var(--bg-color);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.85;
  color: var(--bg-color);
}

/* ========================
   CHAT ICON + DROPDOWN
======================== */
/* ============================
   TALK TO US BUTTON (Mobile)
============================ */


/* Keep dropdown styling same */
.chat-menu-wrapper {
  position: relative;
  display: none;
  /* Hidden on desktop */
}

.chat-dropdown {
  position: absolute;
  top: 140%;
  right: 0;
  background-color: var(--bg-color);
  border: 1px solid var(--accent-color);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  display: none;
  flex-direction: column;
  min-width: 160px;
  z-index: 1001;
}

.chat-dropdown a {
  padding: 0.75rem 1rem;
  color: var(--text-color);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.chat-dropdown a:hover {
  background-color: var(--accent-color);
}


/* ========================
   RESPONSIVE
======================== */
@media (max-width: 768px) {
  .cta-buttons {
    display: none;
  }

  .chat-menu-wrapper {
    display: block;
  }

  .nav-content {
    flex-direction: row;
    justify-content: space-between;
  }
}



/* Header CSS End */


/* Hero Section CSS */

.hero-1 {
  padding: 100px 0;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.hero-1-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-1-text {
  flex: 1 1 480px;
}

.hero-tag {
  display: inline-block;
  border: 1px solid var(--text-color);
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 20px;
}

.hero-heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-cta {
  padding: 12px 24px;
  background-color: var(--text-color);
  color: var(--bg-color);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  opacity: 1;
}

.hero-cta:hover{
    color: var(--bg-color);
}


.hero-1-visual {
  flex: 1 1 480px;
  text-align: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-1-content {
    flex-direction: column;
    text-align: center;
    gap: 4rem;
  }

  .hero-heading {
    font-size: 2rem;
  }
}

/* Hero Section End */


/* Services Section Start */

.services-section {
  padding: 50px 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  text-align: center;
}

.section-heading {
  font-size: 2.4rem;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background-color: var(--accent-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 16px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gradient themes */
.design {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
}

.dev {
  background: linear-gradient(135deg, #007cf0, #00dfd8);
}

.cms {
  background: linear-gradient(135deg, #673ab7, #512da8);
}

.ai {
  background: linear-gradient(135deg, #00c9ff, #92fe9d);
}

.seo {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
}

.security {
  background: linear-gradient(135deg, #536976, #292e49);
}

.service-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-text {
  font-size: 1rem;
  line-height: 1.5;
}


/* Services Section End */


/* About Section  */

.about-section {
  padding: 50px 0;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.about-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 480px;
}

.about-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--text-color);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
}

.about-heading {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-paragraph {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.fiverr-btn {
  display: inline-block;
  background-color: #1dbf73;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.fiverr-btn:hover {
  background-color: #17a362;
}

.about-image {
  flex: 1 1 420px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
  }

  .about-heading {
    font-size: 1.8rem;
  }

  .about-paragraph {
    font-size: 1rem;
  }
}


/* About Section end */



.testimonials-section {
  padding: 50px 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 50px;
}

/* ✅ 3 fixed cards per row on large screens */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background-color: var(--accent-color);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  position: relative;
  cursor: pointer;
  /* ✅ custom hover pointer */
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}


.testimonial-card:hover::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0, 255, 180, 0.2);
}



.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.initials {
  width: 42px;
  height: 42px;
  background-color: #1dbf73;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0px;
}

.client-flag {
  margin-left: 6px;
}

.client-note {
  font-size: 0.9rem;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  font-style: normal;
  /* ✅ Removed italic */
}

/* ✅ Added top margin to Fiverr CTA button */
.view-reviews-btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: #1dbf73;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  margin-top: 30px;
}

.view-reviews-btn:hover {
  background-color: #17a362;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
}


/* Reviews Section End */


/* Portfolio Section */


.portfolio-section {
  padding: 50px 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.project-card {
  background-color: var(--accent-color);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
}

.project-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}


.project-image {
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}


.project-content {
  padding: 1.5rem;
  text-align: left;
}

.project-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.project-tags {
  font-size: 0.95rem;
  color: var(--text-color);
  opacity: 0.7;
  margin-bottom: 16px;
}

.project-btn {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1dbf73;
  text-decoration: none;
  transition: color 0.3s ease;
}

.project-btn:hover {
  color: #17a362;
}


/* CTA */

/* CTA Wrapper */
.cta-inline-wrapper {
  padding: 60px 20px;
  background-color: var(--bg-color);
}

/* Container alignment */
.cta-inline-wrapper .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* CTA Block */
.cta-inline-wrapper .cta-inline {
  background: var(--cta-bg);
  color: var(--cta-text);
  border-radius: 16px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease, color 0.3s ease;
}

/* Text styles */
.cta-inline-wrapper .cta-text h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--cta-text);
}

.cta-inline-wrapper .cta-text p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 600px;
  color: var(--cta-text);
}

/* Button Group */
.cta-inline-wrapper .cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Button base style */
.cta-inline-wrapper .cta-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Primary Button */
.cta-inline-wrapper .cta-btn.primary {
  background-color: var(--cta-btn-primary-bg);
  color: var(--cta-btn-primary-text);
}

.cta-inline-wrapper .cta-btn.primary:hover {
  opacity: 0.85;
}

/* Secondary Button */
.cta-inline-wrapper .cta-btn.secondary {
  color: var(--cta-text);
  border: 1px solid var(--cta-btn-secondary-border);
  background-color: transparent;
}

.cta-inline-wrapper .cta-btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-inline-wrapper .cta-inline {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .cta-inline-wrapper .cta-actions {
    justify-content: center;
  }

  .cta-inline-wrapper .cta-text h2 {
    font-size: 1.6rem;
  }
}


/* Footer CSS */


.site-footer {
  padding: 30px 20px;
  background-color: var(--bg-color);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 16px;
}

.social-icon {
  color: var(--text-color);
  font-size: 1.2rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: #1dbf73;
  /* Accent or hover color */
}

.footer-copy {
  opacity: 0.8;
}


@media (max-width: 768px) {
  .hero-1-text, .hero-1-visual, .about-text, .about-image {
    flex: 1;
  }
  
  .portfolio-section, .testimonials-section, .about-section {
    padding: 30px 0;
  }
  
  .hero-1{
      padding: 50px 0;
  }
  .theme-toggle{
      padding: 0px;
  }
  .logo{
      font-size: 18px;
  }
  .services-section{
      padding: 50px 0px;
  }
}


