/* INTRO SCREEN */

 .intro-screen {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100vh;
 background: #ffffff; /* or your brand gradient */
 z-index: 9999;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 transition: transform 1s ease-in-out, opacity 0.8s ease;
 box-shadow: 0 0 240px 120px rgba(0, 0, 0, 0.95);
 animation: 1s ease-out;
 }

 /* --- RESET & BASE --- */

 :root {
  color-scheme: only light;
 }

 * { margin: 0; padding: 0; box-sizing: border-box; }
 *, *::before, *::after {
 box-sizing: border-box;
 }
 html { max-width: 100vw !important; }
 body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; background: #fff; overflow-x: hidden !important; max-width: 100vw !important;}
 a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
 img { max-width: 100%; }

 /* --- LAYOUT --- */
 header, section, footer { padding: 0px 0px; }
 .container { max-width: 2000px; margin: 0 5vw !important; padding-left: 0px !important; padding-right: 0px !important;}
 @media (max-width: 768px) {
 .container { word-wrap: break-word; overflow-wrap: break-word; overflow-x: hidden;}
 }

 /* FONTS FOR APPLE DEVICES */

 .apple-device button {
  font-weight: 300 !important;
}


 /* --- HEADER --- */
 header { position: sticky; top: 0; background: rgba(255,255,255,); z-index: 100; background-color: white; min-width: 100vw !important;}
 .nav { display: flex; justify-content: space-between; align-items: center; }
 .logo { font-weight: bold; font-size: 1.2rem; color: #111; }
 .logo span { color: #78a0b8; font-size: 2rem;
 font-family: Arial, sans-serif;
 font-weight: 600;
 background: linear-gradient(90deg, #0d4553);
 background-size: 200% auto; /* makes gradient bigger for animation */
 
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 color: transparent;

 animation: gradientFlow 6s ease-in-out infinite; }
 .nav-links { display: flex; gap: 20px; }
 .nav-links a:hover { color: teal; }
 .btn-outline { cursor: pointer;
 display: inline-block;
 text-align: center;
 white-space: nowrap;
 font-size: 17px;
 line-height: 1.17648;
 font-weight: 100 !important;
 letter-spacing: -.022em;
 font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
 border-style: solid;
 border-width: 1px;
 min-width: 30px;
 padding-left: 20px;
 padding-right: 20px;
 padding-top: 7px;
 padding-bottom: 7px;
 border-radius: 980px !important;
 background: #0071e3;
 color: #fff;
 border-color: rgba(0, 0, 0, 0);
 --sk-button-margin-horizontal: 14px;
 --sk-button-margin-vertical: 14px; }
 .btn-outline:hover { background: #2893ff; }
 .btn-primary { cursor: pointer;
 display: inline-block;
 text-align: center;
 white-space: nowrap;
 font-size: 17px;
 line-height: 1.17648;
 font-weight: 100 !important;
 letter-spacing: -.022em;
 font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
 border-style: solid;
 border-width: 1px;
 min-width: 30px;
 padding-left: 15px;
 padding-right: 15px;
 padding-top: 7px;
 padding-bottom: 7px;
 border-radius: 980px !important;
 background: none;
 color: #0071e3;
 border-color: #0071e3;
 --sk-button-margin-horizontal: 14px;
 --sk-button-margin-vertical: 14px; }
 .btn-primary:hover { background: #0071e3; color: rgb(255, 255, 255); }

 /* Hamburger Icon */
 .main-nav {
 background: #fff;
 padding: 10px 20px;
 }

 /* Nav List */
 .main-nav ul {
 list-style: none;
 margin: 0;
 padding: 0;
 display: flex;
 gap: 20px;
 }

 .main-nav li a {
 text-decoration: none;
 color: #333;
 font-weight: 400;
 }

 /* Hamburger Icon (hidden by default) */
 .hamburger {
 display: none;
 position: fixed;
 top: 30px;
 right: 20px;
 z-index: 1001;
 cursor: pointer;
 overflow: hidden;
 }

 .hamburger img {
 width: 27px;
 height: 27px;
 margin-right: 20px;
 }

 /* Mobile Styles */
 @media (max-width: 768px) {
 .hamburger {
 display: block;
 }

 .main-nav {
 position: fixed;
 top: 0;
 right: -100%;
 width: 70%;
 height: 100vh;
 background: #fff;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 transition: right 0.3s ease-in-out;
 z-index: 1000;
 padding-top: 60px;
 }

 .main-nav ul {
 flex-direction: column;
 align-items: center;
 }

 .main-nav.active {
 right: 0;
 }
 }

 /* BUTTON NUMBER 1 */
 .button-number1 {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 padding: 10px 30px;
 border: 0;
 position: relative;
 overflow: hidden;
 border-radius: 10rem !important;
 transition: all 0.02s;
 font-weight: 200;
 cursor: pointer;
 color: rgb(255, 255, 255);
 z-index: 0;
 box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
 background: linear-gradient(#60a2f8, #dcb1ff, #ffa742);
 transition: background 0.4s ease, color 0.4s ease, transform 0.2s ease;
}

/* Glowing animated blur effect inside the button */
 .button-number1::before {
 content: "";
 position: absolute;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
 margin: auto;
 width: 10rem;
 height: 10rem;
 background: linear-gradient(
 90deg,
 rgba(222, 0, 75, 1) 0%,
 rgba(191, 70, 255, 1) 49%,
 rgba(0, 212, 255, 1) 100%
 );
 border-radius: 40rem;
 filter: blur(20px);
 opacity: 0.5;
 z-index: -1;
 animation: effect 3s linear infinite;
 transition: width 0.4s, height 0.4s;
 }

 /* Shrink the glow on hover */
 .button-number1:hover::before {
 width: 8rem;
 height: 8rem;
 }

 /* Hover background and text color */
 .button-number1:hover {
 background: rgb(193, 228, 248);
 color: rgb(33, 0, 85);
 }

 /* Click effect */
 .button-number1:active {
 transform: scale(0.97);
 }

 /* Rotation animation */
 @keyframes effect {
 0% {
 transform: rotate(0deg);
 }
 100% {
 transform: rotate(360deg);
 }
 }


 /* --- HERO --- */
 .hero { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; margin-top: 20px; }
 .hero h1 { font-size: 7.5rem; margin-bottom: 40px; margin-top: 100px; letter-spacing: -4px; font-weight: bold; line-height: 115px; }
 .hero h1 span { color: #78a0b8; font-size: 6rem;
 font-family: "Lobster", sans-serif;
 font-weight: 400;
 background: linear-gradient(90deg, #60a2f8, #cb8dff, #ff4141, #ff8902);
 background-size: 200% auto; /* makes gradient bigger for animation */
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 color: transparent;

 animation: gradientFlow 6s ease-in-out infinite;
}

@media (max-width: 1200px) {
 .hero h1 {
 font-size: 6rem;
 line-height: 90px;
 }
}

@media (max-width: 480px) {
 .hero h1 {
 font-size: 5rem;
 line-height: 70px;
 }
}

@keyframes gradientFlow {
 0% { background-position: 0% 50%; }
 50% { background-position: 100% 50%; }
 100% { background-position: 0% 50%; }
}


@keyframes shine {
 0% { background-position: 0% center; }
 100% { background-position: 200% center; }
}
 .hero p { margin-bottom: 20px; font-size: 1.3rem; color: #555; }
 .stats { display: flex; gap: 20px; margin-top: 20px; flex-wrap: wrap;}
 .stat { background: #fff; border: 1px solid #ddd; border-radius: 12px; padding: 16px; text-align: center; flex: 1; transition: all 0.3s ease; }
 .stat:hover { transform: translateY(-5px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); }

 /* --- FEATURES --- */
 .features h2 { text-align: center; margin-bottom: 40px; font-size: 2rem; }
 .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: center; margin-bottom: 80px; }
 .feature { background: #fff; border: 1px solid #ddd; border-radius: 12px; padding: 20px; transition: all 0.3s ease; }
 .feature:hover { transform: translateY(-5px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); }

 .feature {
 display: flex;
 flex-direction: column;
 gap: 8px;
 padding: 20px;
 cursor: pointer;
 }

 .emoji {
 font-size: 1rem;
 transition: filter 0.4s ease;
 }

 .label {
 position: relative;
 font-size: 1.3rem;
 color: #333;
 }

 .label::after {
 content: "";
 position: absolute;
 bottom: -4px;
 left: 50%;
 transform: translateX(-50%);
 width: 0;
 height: 2px;
 background-color: #333;
 transition: width 0.4s ease, left 0.4s ease;
 }

 /* Hover effect on the whole feature block */
 .feature:hover .emoji {
 filter: brightness(0); /* Makes emoji black */
 }

 .feature:hover .label::after {
 width: 50%;
 }

 /* CHAT-GPT IDEA */

 /* Image placeholder */
 .img-placeholder {
 background: #ddd;
 border-radius: 8px;
 width: 100%;
 height: 150px;
 margin-bottom: 1rem;
 }
/*    SERVICES X-SCROLL     */


    h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 30px;
    }

    .s_wd_slider_container .item {
      padding: 15px;
    }

    .s_wd_slider_container .card {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      background: #fff;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .s_wd_slider_container .card:hover {
      transform: translateY(-5px);
    }

    .card-header {
      padding: 20px;
    }
    .card-body {
      padding: 20px;
      font-size: 0.95rem;
    }

    /* Example background colors */
    .bg-1 { background: #e0f7fa; }
    .bg-2 { background: #ffe0b2; }
    .bg-3 { background: #e1bee7; }
    .bg-4 { background: #c8e6c9; }
    .bg-5 { background: #fff9c4; }
    .bg-6 { background: #f8bbd0; }

    /* Custom nav arrows */
    .slider-nav {
      text-align: center;
      margin-top: 20px;
    }
    .slider-nav button {
      background: #222;
      color: #fff;
      border: none;
      padding: 10px 18px;
      margin: 0 10px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.3s ease;
    }
    .slider-nav button:hover {
      background: #555;
    }

    /*fade out animation*/

    .slider-fade-wrapper {
  position: relative;
  overflow: hidden;
}

.slider-fade-wrapper::before,
.slider-fade-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.slider-fade-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f9f9f9 0%, transparent 100%);
}

.slider-fade-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f9f9f9 0%, transparent 100%);
}

 /* ── Container & Heading ─────────────────────────────────────────────────── */
 .process {
 position: relative;
 padding: 100px 20px;
 overflow: hidden;
 }

 .process h2 {
 text-align: center;
 font-size: 2rem;
 margin-bottom: 80px;
 color: #333;
 }

 /* ── Steps & Circles ─────────────────────────────────────────────────────── */
 .steps {
 display: flex;
 justify-content: space-between;
 align-items: center;
 position: relative;
 z-index: 1;
 }

 .step {
 flex: 1;
 text-align: center;
 position: relative;
 padding: 0 10px;
 }

 .step span {
 display: inline-block;
 width: 50px;
 height: 50px;
 border-radius: 50%;
 background: linear-gradient(90deg, #60a2f8, #cb8dff);
 line-height: 50px;
 font-weight: bold;
 color: #fff;
 z-index: 2;
 position: relative;
 align-self: center;
 }

 .step h3 {
 margin-top: 10px;
 font-size: 1.2rem;
 color: #444;
 }

 .step p {
 margin-top: 5px;
 color: #666;
 font-size: 0.95rem;
 line-height: 1.4;
 }

 /* ── SVG Connector ──────────────────────────────────────────────────────── */
 .connector {
 z-index: 0;
 position: absolute;
 top: 230px;
 transform: translateY(-25%);
 left: 0;
 width: 100%;
 height: 100px;
 pointer-events: none;
 align-self: center;
 }

 .connector path {
 stroke-width: 6;
 stroke-linecap: round;
 transition: stroke-dashoffset 0.25s ease-out;
 position: absolute;
 }

 /* ── Mobile: vertical layout with CSS line ───────────────────────────────── */
 @media (max-width: 768px) {
 .steps {
 flex-direction: column;
 align-items: center;
 padding-left: 40px;
 }

 .connector {
 display: none;
 }


 /* injected via JS */
 .mobile-progress {
 z-index: 0;
 position: absolute;
 left: 17px;
 top: 100px;
 width: 6px;
 background: linear-gradient(
 180deg,
 #5fc3e4 0%,
 #88d8b0 50%,
 #bf88f7 100%
 );
 height: 0;
 border-radius: 3px;
 transition: height 0.2s ease-out;
 z-index: 1;
 }

 .step {
 margin-bottom: 60px;
 }

 .step span {
 position: absolute;
 left: -35px;
 top: 0;
 }
 }

 @media (min-width: 768px) {

 .mobile-progress { 
 display: none;
 }
 }


 /* CTA */
 /* Container setup */
.hero-container {
 position: relative;
 max-height: 600px;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 160px;
 margin-top: 160px;
}

/* Background image */
.hero-image {
 width: auto;
 max-width: 100vw;
 overflow-x: hidden;
 max-height: 100%;
 display: block;
 border-radius: 30px;
}

/* Overlay content */
.hero-overlay {
 position: relative;
 text-align: center;
 color: white;
 padding: 20px;
 background: none;
 flex-wrap: wrap;
}

@media (max-width: 768px) {
 .hero-image {
 display: none;
 }

 .cta-text {
  text-align: center;
 }

 .cta-h2 {
  text-align: center !important;
 }

 .hero-overlay {
  margin-right: 0 !important;
 }
}

.cta-h2 {line-height: 30px;
  color: black;
  margin-bottom: 3px;
  font-size: 40px;
  letter-spacing: -2px;
  text-align: left;
}

.cta-text {
 background: linear-gradient(90deg, #60a2f8, #cb8dff, #ff4141, #b84400);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 color: transparent;
 font-weight: 200;
 font-size: 20px;
 margin-bottom: 30px;
 text-align: left;
}

 /* FORM CONTACT SECTION */


#contact {
 max-width: 700px;
 margin: 0 auto;
 padding: 4rem 1.5rem;
 text-align: center;
 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#contact h2 {
 font-size: 2rem;
 font-weight: 600;
 color: #111;
 margin-bottom: 0.75rem;
 letter-spacing: -0.5px;
}

#contact .section-sub {
 font-size: 1.05rem;
 color: #555;
 max-width: 550px;
 margin: 0 auto 2.5rem;
 line-height: 1.6;
}

/* FORM STYLING */
#contact form {
 display: flex;
 flex-direction: column;
 gap: 1.2rem;
}

#contact input,
#contact textarea {
 width: 100%;
 padding: 0.9rem 1.1rem;
 font-size: 1rem;
 border: 1px solid #e5e5e5;
 border-radius: 12px;
 background-color: #fafafa;
 transition: all 0.25s ease;
 outline: none;
 color: #111;
}

#contact input::placeholder,
#contact textarea::placeholder {
 color: #999;
}

#contact input:focus,
#contact textarea:focus {
 border-color: #0071e3; /* Apple blue */
 background-color: #fff;
 box-shadow: 0 4px 12px rgba(0, 113, 227, 0.15);
}

/* BUTTON */
.cta-button {
 background-color: #0071e3;
 color: #fff;
 font-size: 1.05rem;
 font-weight: 500;
 padding: 0.9rem 1.5rem;
 border: none;
 border-radius: 50px;
 cursor: pointer;
 transition: all 0.25s ease;
 box-shadow: 0 4px 14px rgba(0, 113, 227, 0.25);
}

.cta-button:hover {
 background-color: #005bb5;
 box-shadow: 0 6px 18px rgba(0, 113, 227, 0.35);
 transform: translateY(-1px);
}

.cta-button:active {
 transform: translateY(0);
 box-shadow: 0 3px 10px rgba(0, 113, 227, 0.2);
}


 /* Footer */
 footer {
 background: #000000;
 color: #ffffff;
 padding: 2rem;
 text-align: center;
 }
 footer nav a {
 margin: 0 1rem;
 color: #fff;
 text-decoration: none;
 }

 .logo {
  color: #0077ff;
 }


 /* GOAL SECTION BELLOW HERO */

 .goal-section {
 display: flex; 
 margin: 80px 10px;
 padding: 130px;
 align-items: center;
 justify-content: center;
 background-color: #ebeef0;
 }

 @media (max-width: 768px) {
 .goal-section { flex-wrap: wrap; margin: 0; padding: 50px 0; }
 }

 /* --- FAQ --- */
 .faq { margin: 100px !important;}
 .faq h2 { text-align: center; margin-bottom: 40px; font-size: 2rem; }
 .faq-item { border-bottom: 1px solid #ddd; padding: 16px 0; cursor: pointer; }
 .faq-item p { display: none; margin-top: 10px; color: #555; }

 /* --- ANIMATIONS --- */
 .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
 .fade-in.visible { opacity: 1; transform: translateY(0); }

 /* --- RESPONSIVE --- */
 @media (max-width: 768px) {
 .hero { grid-template-columns: 1fr; }
 .nav-links, .buttons { display: none; }
 }















 /* SERVICES PAGE */

#services {
   margin-bottom: 60px;
}


/* sections */


.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(24px,3.5vw,36px);
  letter-spacing: -.01em;
}

/* cards */
.cards {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  gap: 20px;
}

.card {
  grid-column: span 6;
  background: #ffffff;
  border: 1px solid #e6e9ef;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(16,24,40,0.08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: #0b1220;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.card .tag {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  background: #f6f7fb;
  border: 1px solid #e6e9ef;
  border-radius: 999px;
  padding: 6px 10px;
  color: #475467;
  width: max-content;
}

.card h3 {
  margin: .2em 0;
  font-size: 22px;
}

.list {
  display: grid;
  gap: 10px;
  margin-top: 6px;
  padding-left: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check {
  color: #12a87a;
  margin-top: 3px;
}

.card .actions {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.note {
  font-size: 12px;
  color: #606b85;
}

/* compare, table, estimate, team, footer */
#compare {
   margin-top: 100px;
}

.compare {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.compare .feat {
  background: #fcfcfe;
  border: 1px dashed #e6e9ef;
  border-radius: 14px;
  padding: 16px;
}

.compare h3 {
  margin: 0 0 8px;
}

.table {
  background: #ffffff;
  border: 1px solid #e6e9ef;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16,24,40,0.08);
}

.row {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 10px;
  padding: 10px 14px;
  border-top: 1px solid #e6e9ef;
}

.row:first-child {
  border-top: none;
}

.yes {
  color: #12a87a;
  font-weight: 700;
}

.pack-head {
  padding: 14px;
  border-bottom: 1px solid #e6e9ef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#estimate {
   margin-top: 100px;
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #e6e9ef;
  background: #fff;
  color: #0b1220;
}

#team {
   margin-top: 100px;
}

.team {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.team .t {
  background: #ffffff;
  border: 1px solid #e6e9ef;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(16,24,40,0.08);
}

.team .t h3 {
  margin-top: 0;
}

/* responsive */
@media (max-width:1100px){
  .compare { grid-template-columns: 1fr; }
  .cards .card { grid-column: span 12; }
  .foot { grid-template-columns: 1fr 1fr; }
}
@media (max-width:560px){
  .nav-links { display: none; }
  .estimate-form { grid-template-columns: 1fr !important; }
  .team { grid-template-columns: 1fr; }
}









 /* ABOUT US PAGE */

 /* =========================
 GLOBAL ABOUT US STYLES
========================= */
.aboutus-section-heading {
 font-size: 2.2rem;
 font-weight: 700;
 text-align: center;
 margin-bottom: 1.5rem;
 color: #222;
}

.aboutus-section-heading::after {
 content: "";
 display: block;
 width: 60px;
 height: 3px;
 background-color: #0077ff;
 margin: 0.5rem auto 0;
 border-radius: 2px;
}

/* =========================
 HERO SECTION
========================= */
.aboutus-hero-section {
 background-color: #f8f9fa;
 padding: 10rem 1rem;
 text-align: center;
}

.aboutus-hero-title {
 font-size: clamp(2.5rem, 5vw, 4rem);
}

.aboutus-hero-title span {
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  background: linear-gradient(90deg, #60a2f8, #cb8dff, #ff4141, #ff8902);    background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gradientFlow 6s ease-in-out infinite;
  font-size: clamp(3rem, 7vw, 4.5rem);
  }

.aboutus-hero-subtitle {
 font-size: 1.2rem;
 max-width: 700px;
 margin: 0 auto;
 color: #555;
 line-height: 1.6;
}

/* =========================
 STORY SECTION
========================= */
.aboutus-story-section {
 padding: 4rem 1rem;
 background-color: #fff;
}

.aboutus-story-container {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 max-width: 1200px;
 margin: 0 auto;
 gap: 2rem;
}

.aboutus-story-text {
 flex: 1 1 500px;
}

.aboutus-story-text p {
 margin-bottom: 1rem;
 color: #444;
 line-height: 1.6;
}

.aboutus-story-image {
 flex: 1 1 400px;
 text-align: center;
}

.aboutus-story-image img {
 max-width: 100%;
 border-radius: 10px;
}

.aboutus-section-heading {
  position: relative;
  text-decoration: none;
  color: inherit;
}

.aboutus-section-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: rgb(71, 128, 214);
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.aboutus-section-heading:hover:hover::after {
  width: 100%;
}
/* =========================
 VALUES SECTION
========================= */
.aboutus-values-section {
 background-color: #f8f9fa;
 padding: 4rem 1rem;
}

.aboutus-values-container {
 max-width: 1200px;
 margin: 0 auto;
}

.aboutus-values-grid {
 display: flex;
 flex-wrap: wrap;
 gap: 2rem;
 justify-content: center;
}

.aboutus-value-card {
 background-color: #fff;
 border-radius: 10px;
 padding: 2rem;
 text-align: center;
 flex: 1 1 250px;
 box-shadow: 0 2px 8px rgba(0,0,0,0.05);
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aboutus-value-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.aboutus-value-icon {
 width: 50px;
 margin-bottom: 1rem;
}

.aboutus-value-title {
 font-size: 1.3rem;
 font-weight: 700;
 margin-bottom: 0.5rem;
}

.aboutus-value-description {
 font-size: 1rem;
 color: #555;
}

/* ====== ABOUT US SPLIT SECTION ====== */
.aboutus-split-section {
 max-width: 1200px;
 margin: 0 auto;
 padding: 4rem 1rem;
 display: flex;
 flex-direction: column;
 gap: 4rem;
}

.aboutus-split-row {
 display: flex;
 align-items: center;
 gap: 2rem;
}

.aboutus-split-row--reverse {
 flex-direction: row-reverse;
}

.aboutus-split-text {
 flex: 1;
}

.aboutus-split-heading {
 font-size: 2rem;
 font-weight: 700;
 margin-bottom: 1rem;
}

.aboutus-split-text p {
 font-size: 1.1rem;
 line-height: 1.6;
 color: #444;
}

.aboutus-split-image {
 flex: 1;
 text-align: center;
}

.aboutus-split-image img {
 max-width: 100%;
 height: auto;
 border-radius: 10px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
 .aboutus-split-row,
 .aboutus-split-row--reverse {
 flex-direction: column;
 text-align: center;
 }

 .aboutus-split-text {
 order: 2;
 }

 .aboutus-split-row--reverse .aboutus-split-text {
 order: 2;
 }

 .aboutus-split-image {
 order: 1;
 }
}


/* =========================
 CTA SECTION
========================= */
.aboutus-cta-section {
 background-color: #0077ff;
 color: #fff;
 padding: 4rem 1rem;
 text-align: center;
}

.aboutus-cta-heading {
 font-size: 2rem;
 font-weight: 800;
 margin-bottom: 1rem;
}

.aboutus-cta-text {
 font-size: 1.1rem;
 max-width: 700px;
 margin: 0 auto 2rem;
 line-height: 1.6;
}

.aboutus-cta-button {
 display: inline-block;
 background-color: #fff;
 color: #0077ff;
 padding: 0.75rem 1.5rem;
 border-radius: 5px;
 font-weight: 700;
 text-decoration: none;
 transition: background-color 0.3s ease, color 0.3s ease;
}

.aboutus-cta-button:hover {
 background-color: #005fcc;
 color: #fff;
}

/* =========================
 RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {
 .aboutus-story-container {
 flex-direction: column;
 text-align: center;
 }

 .aboutus-values-grid,
 .aboutus-team-grid,
 .aboutus-socialproof-logos {
 flex-direction: column;
 align-items: center;
 }

 .aboutus-team-photo {
 width: 150px;
 height: 150px;
 }
}
