/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */

:root {
  --color-bg:       #ffffffe5;
  --color-text:     #000000;
  --color-primary:  #6366f1;
  --color-primary-dark: #4f46e5;
  --color-accent:   #a78bfa;
  --color-muted:    #ffffff;
  --color-border:   #1e293b;

  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', serif;

  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm:  0 10px 25px -5px rgba(0,0,0,0.2);
  --shadow-md:  0 20px 40px -10px rgba(0,0,0,0.35);
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-size: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: white;
  text-decoration: none;
}

.container {
  width: min(92%, 1280px);
  margin-inline: auto;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.1;
  font-weight: 600;
}

h1 {
  /* font-size: clamp(3.2rem, 8vw, 7.5rem); */
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2.8rem, 5rem);
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text {
  background: linear-gradient(90deg, #c084fc, #818cf8, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.underline {
  position: relative;
}
.underline::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 0.18em;
  background: var(--color-accent);
  opacity: 0.4;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 0.95rem 2.1rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.05rem;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  border: 1px solid var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -10px rgba(99,102,241,0.4);
}

.btn-outline {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

.btn-lg { padding: 1.25rem 2.8rem; font-size: 1.2rem; }
.btn-sm  { padding: 0.75rem 1.6rem; font-size: 0.98rem; }

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: -0.5rem 0;
  transition: background 0.4s;
  background: rgb(255, 255, 255);
  /* background: transparent; */

}

.header.scrolled {
  /* background: transparent; */
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 252, 252, 0.644);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--color-accent);
}

.nav-list {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  align-items: center;

}

.nav a {
  font-weight: 500;
  transition: color 0.3s;
  color: #000;
}

.nav a:hover {
  color: var(--color-accent);
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.8rem;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.35s ease;
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
    z-index: 999;
  }
  .nav.active { transform: translateX(0); }
  .nav-list { flex-direction: column; font-size: 1.6rem; gap: 3rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

/* .hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
} */

.hero-content {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.hero-lead {
  font-size: 1.4rem;
  color: var(--color-muted);
  margin: 2rem 0 3rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating shapes decoration */
.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(167,139,250,0.08));
  backdrop-filter: blur(20px);
  z-index: -1;
}

.shape-1 { width: 420px; height: 420px; top: 12%; left: -10%; }
.shape-2 { width: 320px; height: 320px; bottom: 18%; right: -8%; }
.shape-3 { width: 180px; height: 180px; top: 55%; left: 22%; }

/* ==========================================================================
   Clients bar
   ========================================================================== */

.clients {
  padding: 1rem 0;
  /* border-top: 1px solid var(--color-border); */
  border-bottom: 1px solid var(--color-border);
  background: rgba(15,15,26,0.4);
}

.clients-title {
  text-align: center;
  color: var(--color-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem 5rem;
  filter: grayscale(1) opacity(0.6);
  transition: all 0.4s;
}

.clients-logos:hover { filter: grayscale(0) opacity(1); }

.clients-logos > div {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
}

/* ==========================================================================
   Work section
   ========================================================================== */

.work {
   padding: 1rem 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3.5rem 2.5rem;
}




.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}

.services-grid > .project-card {
  flex: 1 1 340px;
  max-width: 420px;
}

@media (max-width: 600px) {
  .services-grid > .project-card {
    flex: 1 1 100%;
    max-width: none;
  }
}

/*------------------------------------------*/

.project-card {
  overflow: hidden;
  border-radius: 16px;
  background: rgb(255, 255, 255);
  /* background: rgba(30,41,59,0.4); */
  backdrop-filter: blur(10px);
  /* border: 1px solid var(--color-border); */
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-md);
}

.project-image img {
  transition: transform 0.7s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-info {
  padding: 1.8rem 2rem;
}

.project-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.project-info p {
  color: var(--color-muted);
  font-size: 1.05rem;
}

/* ==========================================================================
   CTA & Footer
   ========================================================================== */

.cta {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.cta h2 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 2.5rem;
}

.footer {
  padding: 1rem 0 3rem;
  background: #000000;
  border-top: 1px solid #1e293b;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-links ul {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.footer-links h4 {
  font-size: 1.15rem;
  margin-bottom: 1.4rem;
  color: rgb(0, 0, 0);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  background-color: black;
  font-size: 0.95rem;
}

/* ==========================================================================
   Helpers
   ========================================================================== */

.desktop-only { display: inline; }
@media (max-width: 640px) {
  .desktop-only { display: none; }
}

/* ==========================================================================
   Scroll indicator (optional nice touch)
   ========================================================================== */

.scroll-indicator {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 48px;
  border: 2px solid var(--color-primary);
  border-radius: 30px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 10;
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0%   { transform: translate(-50%, 0); opacity: 1; }
  50%  { transform: translate(-50%, 20px); opacity: 0.4; }
  100% { transform: translate(-50%, 0); opacity: 1; }
}

/* ==========================================================================
   Contact Form
   ========================================================================== */

.contact-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 7rem 0;
}

.contact-form {
  width: 600px;
  margin: 0rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  
}

.form-group {
  display: flex;
  flex-direction: column;
}

.contact-form input {
  padding: 1.1rem 1.4rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: rgba(30,41,59,0.6);
  backdrop-filter: blur(10px);
  color: var(--color-text);
  font-size: 1.05rem;
  transition: var(--transition);
}

.contact-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.2);
}

.error-message {
  color: #f87171;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: -3.3rem;
}

.form-success {
  margin-top: 1rem;
  color: #4ade80;
  font-weight: 500;
  text-align: center;
}
/* Textarea styling */
.contact-form textarea {
  padding: 1.1rem 1.4rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: rgba(30,41,59,0.6);
  backdrop-filter: blur(10px);
  color: var(--color-text);
  font-size: 1.05rem;
  font-family: var(--font-sans);
  resize: vertical;
  transition: var(--transition);
}

.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.2);
}


/* ==========================================================================
   Contact Section Layout
   ========================================================================== */

.contact-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* form bigger */
  gap: 3rem;
  margin-top: 4rem;
  align-items: start;
}


/* Map Styling */
.contact-map iframe {
 width: 100%;
  /* min-height: 462px; */
  border-radius: 16px;
  min-height: 470px;
  border: 0;
  filter: grayscale(1) contrast(1.1);
  transition: var(--transition);
}

.contact-map iframe:hover {
  filter: grayscale(0);
}

/* Contact Info */
.contact-info {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.contact-info h4 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  color: white;
}

.contact-info p {
  color: var(--color-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    min-height: 400px;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* ==========================================================
   HERO SECTION (FULL SCREEN SWIPER FIXED)
   ========================================================== */

.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Swiper container full height */
.hero .swiper {
  height: 100%;
}

/* Wrapper full height */
.hero .swiper-wrapper {
  height: 100%;
}

/* Each slide */
.hero .swiper-slide {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

/* Responsive Heading */
.hero-content h1 {
  font-size: 60px;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e2e8f0;
  color: inherit;
}

/* Background images */
.slide-1 {
  background-image: url("images/cover1.jpeg");
}

.slide-2 {
  background-image: url("images/COVER2.png");
}

.slide-3 {
  background-image: url("images/COVER\ 3.png");
}

/* Swiper navigation arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
}

/* Swiper pagination bullets */
.swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
  opacity: 1;
}

/* ===============================
   Glow Pulse Animation (Active Slide)
   =============================== */

@keyframes glowPulse {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.03);
    filter: brightness(1.15);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

.hero .swiper-slide-active {
  animation: glowPulse 1.8s ease-in-out;
}


.contact-info {
  display: flex;
  flex-direction: row;
  gap: 238px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  /* gap: -13px; */
}

.info-box i {
  font-size: 22px;
  color: #007bff;
  margin-top: 5px;
}

.info-box h4 {
  margin: 0;
}

.info-box p {
  margin: 5px 0 0;
}


#toggleBtn {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 20px;
  background-color: gray;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

#toggleBtn.active {
  background-color: green;
}

#aboutbg{
  background-color: #ffffff;
  margin-top: 30px;
  border: none;
}




/* -----------------------------------*/

/* Services Section */
#services {
  margin: 0px;
  background: #ffffff;
  /* Removed fixed height – let content determine size */
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  text-align: center;
  margin-bottom: 2.5rem;

  background: linear-gradient(90deg, #000000, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* Grid for cards – responsive */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem 2rem;
}

/* Card styling – equal height + nice look */
.project-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;           /* ← helps with equal height in grid */
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(99, 102, 241, 0.18);
}

.project-info {
  padding: 2rem 1.8rem;
  flex-grow: 1;            /* makes content stretch */
  display: flex;
  flex-direction: column;
}

.project-info h3 {
  font-size: 1.55rem;
  margin-bottom: 1.2rem;
  color: #1e293b;
  font-weight: 700;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.service-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.95rem;
  font-size: 1.03rem;
  color: #4b5563;
  line-height: 1.65;
}

.service-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: bold;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .project-info {
    padding: 1.8rem 1.4rem;
  }
  
  .section-title {
    margin-bottom: 3.5rem;
  }
}



/* Beautiful gradient dividers between cards – only on wide screens */
@media (min-width: 1024px) {
  .services-grid {
    position: relative;
    /* Optional: adds a tiny bit more breathing room around dividers */
    padding: 0 1.5rem;
  }

  .services-grid > .project-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -1px;               /* snug against the card edge */
    top: 10%;                  /* doesn't go edge-to-edge – looks lighter */
    bottom: 10%;
    width: 2px;                /* slightly thicker = more visible */
    background: linear-gradient(
      to bottom,
      transparent 0%,
      #c4b5fd 25%,               /* soft indigo start */
      #a78bfa 50%,               /* main purple */
      #c4b5fd 75%,
      transparent 100%
    );
    border-radius: 2px;
    pointer-events: none;      /* doesn't block clicks */
    opacity: 0.5;              /* keeps it elegant/not too bold */
    transition: opacity 0.4s ease;
  }

  /* Glow a bit on card hover */
  .project-card:hover ~ .project-card::after,
  .project-card:hover + .project-card::after {
    opacity: 0.85;
  }
}


/* Beautiful horizontal dividers before & after the main content */
.section-divider {
  height: 1px;
  margin: 3.5rem auto;           /* space above & below – adjust as you like */
  width: 980px;              /* short & centered – elegant look */
  background: linear-gradient(
    to right,
    transparent,
    #a78bfa 20%,                   /* matches your title gradient */
    #6366f1 50%,
    #a78bfa 80%,
    transparent
  );
  border-radius: 2px;
  opacity: 0.7;
}

/* Optional: make it slightly longer on larger screens */
@media (min-width: 768px) {
  .section-divider {
    max-width: 240px;
    margin: 2.5rem auto;
  }
}

/* Optional: subtle glow / animation on hover (if you want extra flair) */
.services-grid:hover ~ .section-divider,
.section-divider:hover {
  opacity: 1;
  transition: opacity 0.4s ease;
}





.clients {
  padding: 70px 0;
  background: #f9fafb;
  overflow: hidden;
  text-align: center;
}

.clients-title {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  font-weight: 500;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: #fff;
  padding: 30px 0;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

/* 🔥 Hover pe slider stop karega */
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-track a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
.logo-track img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: 0.3s ease;
}

.logo-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
  .logo-track img {
    height: 40px;
  }
  .logo-track a {
    padding: 0 20px;
  }
}

/*===============================*/



/* body {
  Background to show the effect
  background: linear-gradient(45deg, #6d5ea7, #ffffff);
  height: 100vh;
  margin: 0;
  font-family: sans-serif;
} */

.glass-nav {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  
  /* --- GLASS EFFECT --- */
  background: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
  backdrop-filter: blur(10px); /* The blurring effect */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Soft shadow */
  /* -------------------- */
  
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.glass-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.glass-nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}
/*------------*/




.contact-btn {
  background: linear-gradient(90deg, #c084fc, #818cf8, #6366f1);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.contact-btn:hover {
  background: linear-gradient(45deg, #0056b3, #0096c7);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}
/*------------*/



.contact-info {
  display: flex;
  flex-wrap: wrap;           /* ← allows wrapping to next line on small screens */
  gap: 24px;                 /* space between cards */
  justify-content: center;   /* or space-between / space-around */
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 220px;          /* ← makes them grow/shrink nicely */
  min-width: 220px;         /* prevents them from becoming too narrow */
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.info-box i {
  font-size: 28px;
  color: #007bff;           /* or your brand color */
  margin-top: 4px;
}

.info-box h4 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: #000;
}

.info-box p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}



.twitterlogo {
  /* border: 1px solid black; */
  height: 50px;
  margin-left:"155px";
  /* background-color: red; */
  margin-left: 73px;
  padding-top: 15px;
  display: flex;
}






.phone-contact {
  display: flex;          /* icon and number side by side */
  align-items: center;    /* vertically center icon with text */
  gap: 8px;               /* space between icon and number */
  font-size: 16px;        /* adjust text size */
}

.phone-contact i {
  color: #25D366;         /* optional: green phone icon color */
  font-size: 20px;        /* size of the icon */
}





.counter {
  float: left;      /* same as align="left" */
  margin: 10px;     /* spacing around counter */
  width: 120px;     /* optional: resize counter */
  height: auto;
  margin-left: 73px;
}


.email-icon {
  font-size: 18px;
  background: linear-gradient(45deg, #446992, #160a42);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}



.footer-bottom {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 18px 12px;
  font-size: 0.95rem;
}

.footer-company{
   
  font-size: clamp(0.8rem, 5rem);
  text-align: center;
  margin-bottom: -1rem;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

}

#center{
  margin-left: 460px;
}


body {
  margin: 0;
}



.footer {
  background: #000000;
  color: #e2e8f0;
  padding: 4rem 0 2rem;
  border-top: 1px solid #1e293b;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ────────────────────────────────────────────────
   Main top area – uses grid with auto-responsive columns
───────────────────────────────────────────────── */
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem 2.5rem;
  margin-bottom: 3rem;
}

/* Brand section */
.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-company {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 700;
  background: linear-gradient(90deg, #6366f1, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.4px;
}

.footer-company h4{
  font-size: 50px;
  display: flex;
}

/* Social + counter wrapper – flex row on desktop, column on very small screens */
.social-counter-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

/* .twitterlogo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.05rem;
  color: #e2e8f0;
} */
 .twitterlogo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* .twitterlogo img {
  width: 28px;
  height: 28px;
  transition: transform 0.25s ease;
} */
 .twitterlogo img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s;
}
/* 
.twitterlogo:hover img {
  transform: scale(1.15);
} */
 .twitterlogo:hover img {
  transform: scale(1.15);
}

/* Counter */
/* .counter {
  line-height: 1;
} */
 .counter img {
  display: block;
}

.counter img {
  display: block;
}

/* Contact section */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* .footer-contact h4 {
  font-size: 1.55rem;
  margin: 0 0 0.6rem;
  color: #a78bfa;
  font-weight: 600;
} */
.footer-contact h4 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #a78bfa;
  font-weight: 600;
}
/* .slogan {
  font-style: italic;
  opacity: 0.9;
  margin: 0 0 1rem;
} */
.slogan {
  font-style: italic;
  opacity: 0.85;
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
}
/* .contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.05rem;
} */

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}

.contact-item i {
  font-size: 1.3rem;
  color: #818cf8;
  min-width: 24px;
}

.contact-item a {
  color: #e2e8f0;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #a78bfa;
}


/* Bottom bar */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .footer-top {
    gap: 2.5rem;
  }
  .social-counter-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* 
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  font-size: 0.92rem;
  opacity: 0.85;
} */

/* ────────────────────────────────────────────────
   Mobile-first adjustments
───────────────────────────────────────────────── */
/* @media (max-width: 680px) {
  .footer {
    padding: 2.8rem 0 1.8rem;
  }

  .footer-top {
    gap: 2.2rem;
  } */

  .social-counter-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
  }

  .footer-contact h4 {
    font-size: 1.45rem;
  }


@media (max-width: 480px) {
  .footer-company {
    font-size: 2rem;
  }

  .contact-item {
    font-size: 1rem;
  }
}





.footer-contact {
  padding: 20px;
  color: #fff; /* or your theme color */
}

.footer-contact h4 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.slogan {
  font-style: italic;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* .solutions-list {
  list-style: none;
  padding: 0;
  margin: 0;
} */
 .solutions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* .solutions-list li {
  margin-bottom: 12px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
} */

.solutions-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
}


.solutions-list i {
  margin-right: 12px;
  color: #00bfff;          /* telecom blue – or change to #a78bfa */
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
/* .solutions-list li:hover {
  color: #00bfff;
  transition: color 0.3s ease;
} */

.solutions-list li:hover {
  color: #a78bfa;
  transition: color 0.3s;
}

.contact-item.phone-contact

 {
    margin-bottom: 0.95rem;
}





#colorh1{
  color: white;
}

.textcol{
  color: #000;
}



.social-links {
  display: flex;
  align-items: center;
  gap: 25px;          
}

.social-link {
  display: inline-flex;    
  align-items: center;     
  gap: 8px;                 
  text-decoration: none;
  color: #000;              
  font-size: 15px;
  font-weight: 500;
}

.social-link img {
  width: 25px;
  height: 25px;
  display: block;           
}

.social-link:hover {
  color: #1DA1F2;           /* Twitter blue hover effect */
}





@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


#Connectivity{
  color: #1997e6;
}


#flicker{
  margin-top: 10px;
}