/* ===============================
   Base + Theme (Global variables, colors, radius, shadows)
   =============================== */

:root{
  --bg: #ffffff;         /* Global background of body (white) */
  --panel: #ffffff;      /* Panels/cards same white */
  --muted: #555555;      /* Secondary text (dark gray) */
  --text: #000000;       /* Primary text (black) */
  --brand: #000000;      /* Accent set to black */
  --brand-2: #000000;    /* Secondary accent also black */
  --success: #2ecc71;    /* Keep green success */
  --danger: #ff5d5d;     /* Keep red danger */

  --radius: 18px;        /* Standard border-radius */
  --shadow: 0 14px 34px rgba(0,0,0,.15);  /* Softer shadow for light theme */
}

/* Reset + Typography */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

body{
  margin: 0;
  font-family: 'Segoe UI', sans-serif; /* single font */
  /*font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; */
  color: var(--text);  /* black text */
  background: #ffffff; /* plain white background */
  line-height: 1.6;
}

.container{ width: min(1100px, 92%); margin-inline: auto; }

/* Links + Buttons */
a{ color: var(--text); text-decoration: none; }
a:hover{ text-decoration: underline; }

.btn{
  display: inline-block;                                                            /* get started button*/
  padding: 1rem 1.2rem;
  background: #4facfe;                                                            /* button bg */
  color: #ffffff;        /* white text on button */
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 700;
  letter-spacing: .2px;
  transition: transform .15s ease, filter .2s ease;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.05); }
.btn:active{ transform: translateY(0); }
.btn-ghost{ background: transparent; border: 1px solid #d4c5c5; color: #d4c5c5; }       /* learn more button*/
.btn-full{ width: 100%; text-align: center; }


/* ===============================
   Header / Navigation (site-wide top navbar)
   =============================== */
.site-header{
  position: sticky; top: 0; z-index: 1000;
  background: #fff; /* solid white */
  border-bottom: 1px solid rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 4vw;
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled{
  background: #fff; /* stays white on scroll */
  border-color: rgba(0,0,0,.15);
}

/* Logo image */
.logo-img {
  width: 180px;     
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  /*box-shadow: var(--shadow);*/
  border: 1px solid rgba(255, 255, 255, 0.3);
  align-items: center;
}

/* Navigation links */
.nav ul{ list-style: none; display: flex; gap: 1rem; margin: 0; padding: 0; align-items:center; }
.nav a{
  display: inline-block; padding: .6rem .9rem; border-radius: 12px; color: #000;
  transition: background .2s ease, color .2s ease;
}
.nav a:hover{ background: rgba(0,0,0,.06); }
.nav a.active{ background: rgba(0,0,0,.16); color: #000; }    
.nav a.cta{ background: #4facfe; color:#ffffff; font-weight: 400; }    /* contact bg on navigation bar */
.nav a.cta:hover{ filter: brightness(1.05); }

/* Mobile nav toggle (hamburger menu) */
.nav-toggle{ display: none; background: transparent; border: 0; padding: .25rem; cursor: pointer; }
.nav-toggle .bar{ display: block; width: 26px; height: 2px; background: #000; margin: 6px 0; }

/* ===============================
   Dropdown Menu (multi-column services dropdown in nav)
   =============================== */
.nav-dropdown {
  position: relative;
}

/* Dropdown trigger button */
.dropbtn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .6rem .9rem;
  border-radius: 12px;
  background: transparent;
  color: #000000;                         /* solution dropdown navigation bar */
  border: 0;
  cursor: pointer;
  font-weight: 400;
  transition: background .2s ease;
}
.dropbtn:hover {
  background: rgb(255, 255, 255);         /* solution dropdown hover effect */
}


/* ====================header/nav bar font and font size ====================*/

/* Make Solutions button look same as other nav links */
.nav .dropbtn {
  font-family: inherit;     /* inherit same font */
  font-size: inherit;       /* same size as nav links */
  font-weight: 500;         /* match with nav links */
  padding: .6rem .9rem;     /* same spacing */
  border-radius: 12px;      /* match radius */
  color: #000;              /* same color */
  background: transparent;  /* no default background */
  border: none;             /* remove button border */
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.nav .dropbtn:hover {
  background: rgba(0,0,0,.06);  /* same hover as nav links */
}


/* =========================================================================*/


/* Dropdown container */
.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff; /* white dropdown background */
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  padding: 14px;
  border-radius: 12px;
  min-width: 320px;
  z-index: 1200;
}

/* Show dropdown (JS toggled / hover on desktop) */
.nav-dropdown.open .dropdown-content {
  display: block;
}
@media (min-width: 681px) {
  .nav-dropdown:hover .dropdown-content {
    display: block;
  }
}

/* Grid layout inside dropdown */
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  gap: 8px 18px;
}

/* Dropdown links */
.dropdown-grid a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}
.dropdown-grid a:hover {
  color: var(--brand);
  background: rgba(106,166,255,.08);
}


/* ===============================
   Hero Section (homepage hero with glow shapes)
   =============================== */
.hero {
  position: relative;
  padding: clamp(90px, 9vw, 140px) 0 clamp(140px, 5vw, 70px);    /* clamp(90px, 9vw, 140px) 0 clamp(40px, 5vw, 70px);    resize image */
  text-align: center;
  overflow: hidden;
  background: #fff; /* white background */
  color: #000; /* default text color black */
}
.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 .8rem 0;
  color: #ffffff;                                 /* heading on imagae on home page */
}
.hero p {
  max-width: 760px;
  margin: 0 auto 1.6rem auto;
  color: #ffffff; /* text black */
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}
.hero .cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* remove glowing background circles, keep plain */
.hero::before,
.hero::after {
  content: none; /* disabled glow */
}

/* ===============================
   Generic Section / Cards
   =============================== */
.section{ 
  padding: 64px 0; 
  background: #fff; 
  color: #000; 
}
.section-header{ 
  margin-bottom: 28px; 
  text-align: center; 
}
.section-header h2{ 
  margin: 0 0 .4rem 0; 
  font-size: clamp(1.6rem, 3.2vw, 2.2rem); 
  color: #000; 
}
.section-header p{ 
  color: #000; 
}

.cards{ 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; 
}
.card{
  background: #fff; 
  border: 1px solid #000; 
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.card::after{
  content:""; 
  position:absolute; 
  inset:-1px; 
  border-radius: inherit;
  background: transparent; /* removed glow */
  opacity: 0; 
  transition: opacity .2s ease;
  z-index: -1;
}
.card:hover{ 
  transform: translateY(-3px); 
  border-color: #000; 
}
.card:hover::after{ opacity: 0; }
.card h3{ 
  margin: 8px 0; 
  color: #000; 
}
.card p{ 
  color: #000; 
  margin-bottom: 10px; 
}
.card-icon{
  font-size: 1.4rem; 
  width: 42px; 
  height: 42px; 
  display: grid; 
  place-items: center;
  border-radius: 12px; 
  background: #fff; 
  border: 1px solid #000;
  color: #000;
}


/* ===============================
   About Page: Split layout
   =============================== */
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
 
}

.split .panel {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

/* Glow effect overlay */
.split .panel::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(106,166,255,.25), rgba(156,134,255,.25)); /* blue/purple glow */
  opacity: 0;
  transition: opacity .25s ease;
  z-index: -1;
}

.split .panel:hover {
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 0 24px rgba(106,166,255,.25), 0 0 24px rgba(156,134,255,.25);
}

.split .panel:hover::after {
  opacity: .4;
}

.panel p {
  color: var(--muted);
}


/* ===============================
   Page Hero (About / Contact)
   =============================== */
.page-hero {
  padding: 56px 0 38px;
  background: linear-gradient(180deg, rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255));
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.page-hero h1 {
  margin: 0 0 .4rem 0;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  background: linear-gradient(90deg, #000000, #ffffff);   /* contact us heading contact page */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.page-hero p {
  color: var(--muted);
}


/* ===============================
   Contact Page
   =============================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.form-title {
  margin-top: 0;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-field {
  margin-bottom: 14px;
  display: grid;
}

.form-field label {
  font-weight: 700;
  margin-bottom: 6px;
}

.form-field .req {
  color: #ffffff;
}

input[type="text"], input[type="email"], textarea {
  width: 100%;
  color: var(--text);
  background: #d6d0d0db;                                                       /* contact info input field bg*/
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 12px;
  padding: .9rem .95rem;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .2s ease;
}

input:focus, textarea:focus {
  border-color: #868686;
  box-shadow: 0 0 10px rgb(255, 255, 255), 0 0 0 4px rgb(255, 255, 255);
  transform: scale(1.01);
}

.error {
  min-height: 18px;
  color: var(--danger);
  font-size: .9rem;
}

.form-status {
  margin-top: 8px;
  color: var(--success);
  min-height: 20px;
}

.contact-card .contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.contact-card .contact-list li {
  margin-bottom: 8px;
}

.muted {
  color: var(--muted);
}

/* CTA band (bottom call-to-action) */
.cta-band {
  margin-top: 10px;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgb(255, 255, 255), rgb(255, 255, 255));   /* botton need an estimate of contact page */
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 0 18px rgb(114, 114, 115), 0 0 28px rgb(126, 125, 126);   /* botton need an estimate shadow of contact page */
  transition: transform .25s ease, box-shadow .25s ease;
}

.cta-band:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgb(206, 202, 202), 0 0 38px rgb(211, 211, 213);
}


/* ===============================
   Footer
   =============================== */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(0,0,0,.12); /* Subtle dark divider */
  background: linear-gradient(
    135deg,
    rgb(255, 255, 255),
    rgb(255, 255, 255),
    rgb(255, 255, 255)
  ); /* Dark gradient background */
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.site-footer a {
  color: var(--muted); /* Muted gray links */
  transition: color .2s ease;
}

.site-footer a:hover {
  color: #4facfe; /* Accent blue on hover */
}

/* Reveal on scroll effect */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}



/* ================================
   About Page - Static Cards
   ================================ */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.about-cards .card { /* About page specific cards */
  background: linear-gradient(
    135deg,
    rgb(255, 255, 255),
    rgb(255, 255, 255),
    rgb(255, 255, 255),
  );
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.about-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,.3);
}

.about-cards .card h3 {
  margin: 8px 0;
  color: #000000;
}

.about-cards .card p {
  color: var(--muted);
  margin-bottom: 10px;
}


/* ================================
   Services Heading (About style)
   ================================ */
.about-header { 
  max-width: 700px; 
  margin-bottom: 32px; 
  text-align: center;
}

.about-header h2 { 
  font-size: clamp(1.8rem, 3vw, 2.2rem); 
  margin-bottom: 10px; 
  background: linear-gradient(90deg, #000000, #000000); /* Solid black */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-header p { 
  color: var(--muted); 
  margin-bottom: 8px; 
}

.about-header .link { 
  color: #4facfe;  /* Primary accent */
  font-weight: 600; 
  transition: color .25s ease;
}

.about-header .link:hover { 
  color: #4facfe; /* Hover accent */
  text-decoration: underline; 
}





/* ================================
   Responsive Adjustments
   ================================ */
@media (max-width: 980px){
  .cards{ grid-template-columns: 1fr 1fr; }
  .split{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 680px){
  .nav-toggle{ display: block; }
  .nav{
    position: absolute; 
    right: 4vw; 
    top: 64px; 
    background: #ffffff; /* white background */
    border: 1px solid rgba(0,0,0,.1); 
    border-radius: 12px; 
    box-shadow: 0 4px 10px rgba(0,0,0,.1); 
    padding: 8px; 
    display: none;
  }
  .nav.open{ display: block; }
  .nav ul{ flex-direction: column; min-width: 190px; }
  .nav a{ color: #000000; } /* black text */
  .nav a.cta{ text-align: center; background: #000; color: #fff; } /* CTA stands out */

  .cards{ grid-template-columns: 1fr; }
  .footer-inner{ flex-direction: column; gap: 10px; }

  /* Mobile dropdown style */
  .dropdown-content{ 
    position: static; 
    display: none; 
    background: #ffffff; /* white background */
    box-shadow: none; 
  }
  .dropdown-grid{ grid-template-columns: 1fr; }
  .dropdown-grid a{ color: #000000; } /* black text */
  .dropdown-grid a:hover{ 
    background: rgba(0,0,0,.05); 
    color: #000000; 
  }
  .nav-dropdown.open > .dropdown-content{ display: block; }
}



/* ================================
   Services Marquee (Light Theme)
   ================================ */
.services-scroll { 
  overflow: hidden; 
  position: relative; 
  padding: 20px 0; 
  background: #fff; /* White background */
}

.services-marquee { 
  width: 100%; 
  overflow: hidden; 
  position: relative; 
}

.services-track { 
  display: flex; 
  gap: 20px; 
  width: max-content; 
  animation: scroll-left 30s linear infinite; 
}

@keyframes scroll-left { 
  from { transform: translateX(0); } 
  to { transform: translateX(-50%); } 
}

.services-track .service-card {
  flex: 0 0 260px;
  background: #fff; /* White card background */
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1); /* Softer shadow for light mode */
  border: 1px solid rgba(0,0,0,.1);
  text-align: left;
  color: #000; /* Black text */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-track .service-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 12px 28px rgba(0,0,0,.15); 
}


/* ================================
   Thank You Section (Light Theme)
   ================================ */
.section.thankyou { 
  padding: 80px 20px; 
  text-align: center; 
  background: #fff; /* White background */
  color: #000;      /* Black text */
}

.section.thankyou h1 { 
  margin-bottom: 20px; 
  font-size: clamp(2rem, 4vw, 2.8rem); 
  font-weight: 700; 
  color: #000; /* Ensure heading is black */
}

.section.thankyou p { 
  margin-bottom: 12px; 
  font-size: 1.1rem; 
  color: #333; /* Slightly softer black for body text */
}



/* ===============================
   Overview Section Layout (2-column)
   =============================== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Overview text | Carousel */
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  background: #fff; /* White background */
  color: #000;      /* Black text */
}


/* ===============================
   3D Carousel (Overview right column)
   =============================== */
.about-carousel {
  position: relative;
  width: 100%;
  height: 320px;
  perspective: 1200px;   /* depth for 3D */
  padding-left: 20px;
  margin: 0 auto;
}
.carousel-track {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;  /* needed for 3D */
  transition: transform 1s;
}
.carousel-item {
  position: absolute;
  top: 50%; left: 50%;
  width: 230px; height: 230px;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4); /* stronger on white */
  background: #fff;
}
.carousel-item img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}
.carousel-item:hover { 
  transform: translate(-50%, -50%) scale(1.05); 
  box-shadow: 0 12px 32px rgba(0,0,0,0.6); 
}

/* Responsive for carousel */
@media (max-width: 900px){
  .about-layout { grid-template-columns: 1fr; }
  .about-carousel { height: 240px; }
  .carousel-item { width: 200px; height: 200px; }
}

/* Rotation animation */
@keyframes rotate-carousel {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(-360deg); }
}
.about-carousel .carousel-track { animation: rotate-carousel 18s linear infinite; }


/* ===============================
   Services Cards Grid    (services page)
   =============================== */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
  padding-left: 50px;
  padding-right: 50px;
}

.service-cards .card {
  background: #fff; /* White base */
  border: 1px solid #ddd; 
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
  color: #000; /* Black text */
}

.service-cards .card:hover {
  transform: translateY(-4px);
  border-color: #bbb;
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}

.service-cards .card h2 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #111;
}

.service-cards .card p {
  color: #444;
}

/* ===============================
      ABOUT PAGE
   =============================== */

/* ===============================
   Timeline (Center Aligned)
   =============================== */
.timeline {
  position: relative;
  margin: 60px auto;
  padding: 20px 0;
  max-width: 1000px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(var(--brand), var(--brand-2));
  transform: translateX(-50%);
}
.timeline-step {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}
.timeline-step.left { left: 0; text-align: right; }
.timeline-step.right { left: 50%; text-align: left; }
.timeline-step::before {
  content: attr(data-step);
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 2;
}
.timeline-card {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  z-index: 1;
}
.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}
.timeline-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.timeline-card p,
.timeline-card ul {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.timeline-card ul { padding-left: 20px; }

/* Responsive timeline */
@media (max-width: 768px) {
  .timeline::before { left: 20px; }
  .timeline-step {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    text-align: left !important;
  }
  .timeline-step::before {
    left: 20px;
    transform: none;
  }
}

/* ============================
   Logo 3D Box + Services
   =========================== */
.scene {
  perspective: 1000px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.box {
  position: relative;
  width: 200px;
  height: 200px;
  transform-style: preserve-3d;
  animation: rotateBox 6s linear infinite;
  padding: 0;
  margin: 0;
  padding-top: 10px;
}
.face {
  position: absolute;
  width: 200px;
  height: 200px;
  background: red;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  border: 2px solid #fff;
}
.front  { transform: rotateY(0deg) translateZ(100px); }
.back   { transform: rotateY(180deg) translateZ(100px); }
.left   { transform: rotateY(-90deg) translateZ(100px); }
.right  { transform: rotateY(90deg) translateZ(100px); }
.top    { transform: rotateX(90deg) translateZ(100px); }
.bottom { transform: rotateX(-90deg) translateZ(100px); }

.services {
  position: absolute;
  bottom: 50px;
  left: 50%;
  opacity: 0;
}
.box.open .services {
  transform: translateX(-50%) translateY(-15px);
  opacity: 1;
}

.flap { 
  position: absolute; 
  width: 100px; 
  height: 200px; 
  background: red; 
  top: 0; 
  transform-origin: top; 
  transition: transform 1s ease; 
}

.service {
  background: #fff;
  color: red;
  padding: 8px 8px;
  margin: 6px 0;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

@keyframes rotateBox {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(-360deg); }
}

/* ===============================
   About Page Layout (2-column)
   =============================== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  background: #fff;
  color: #000;
  padding-left: 50px;
  padding-right: 50px;
}

