/* ===============================
   GLOBAL STYLES
   =============================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

html, body {
  overflow-x: hidden;
}

/* ===============================
   HEADER + NAVIGATION
   =============================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 35px;
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 20px; /* spacing between logo and company text */
}
.logo {
  height: 100px; 
  max-width: 450px;
  width: auto;  
  object-fit: contain;
  display: block;
  margin-top: 0;
}

/* Company Title Styling */
.company-title h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #0c1b2a; 
    letter-spacing: 2px;
}

.company-title p {
    margin: 0;
    font-size: 18px;
    color: #d4a138; 
    font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  transform: none !important; 
  transition: transform 0.2s;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 16px;
}
nav a:hover {
  color: #EB8317;
}
nav a.active {
    color: #EB8317;           
    font-weight: bold;
}

/* Desktop dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: #002379;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
}


.dropdown-toggle {
    cursor: pointer;
    display: inline-block;
}

.nav-links span.dropdown-toggle {
    color: #000;
}

.nav-links span.dropdown-toggle:hover {
    color: #EB8317;
}

/* MOST IMPORTANT FIX */
.nav-links span.dropdown-toggle {
    pointer-events: auto !important;
}


/* Mobile (inside hamburger) */
@media(max-width: 768px) {
    .dropdown-menu {
        position: relative;
        box-shadow: none;
    }
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  width: 28px;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #000;
  transition: 0.4s;
}

/* Hamburger Animation */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE NAV */
/* MOBILE — stack logo + text and shrink */
@media(max-width: 768px) {
    .logo-container {
        gap: 10px;
    }
    .logo-img {
        height: 55px;
    }
    .company-title h1 {
        font-size: 22px;
    }
    .company-title p {
        font-size: 14px;
    }
}
.nav-links.mobile-open {
  display: block !important;
  position: absolute;
  top: 80px;
  right: 0;
  background: white;
  width: 200px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.nav-links.mobile-open a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

  .nav-links.mobile-open .dropdown-toggle {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  display: block;
}

@media (max-width: 768px) {
  .nav-links {
    transform: none;
    position: static;
  }
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .hamburger {
    display: flex !important;
  }
}
}

/* ===============================
   FOOTER
   =============================== */
.rtb-footer {
    background: #102E50;
    padding: 60px 40px 80px;
    position: relative;
    color: white;
}

/* 4-COLUMN GRID CENTERED */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.footer-grid a {
    text-decoration: none;
    color: white;
    font-size: 17px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    display: inline-block;
}

.footer-grid a:hover {
    color: #EB8317;
    border-bottom-color: #EB8317;
}

/* SOCIAL ICONS bottom-right */
.footer-social {
    position: absolute;
    bottom: 30px;
    right: 40px;
}

.footer-social a {
    color: white;
    font-size: 26px;
    margin-left: 15px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #EB8317;
}

/* ADDRESS bottom-center */
.footer-address {
    text-align: center;
    margin-top: 60px;
    font-size: 13px;
}

/* BACK TO TOP (center bottom) */
.back {
    margin-top: 15px;
    text-align: center;
}

.back a {
    color: #FFCC00;
    text-decoration: none;
    font-size: 12px;
}

.back a:hover {
    color: #EB8317;
}


@media (max-width: 600px) {

    footer {
        padding-left: 20px !important;
        padding-right: 5px !important;
    }

    .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        column-gap: 5px;
        row-gap: 10px;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .footer-grid div {
        text-align: left;
        padding: 0;
        margin: 0;
        font-size: 13px;
    }

    .footer-grid a {
        font-size: 12px;
        padding-bottom: 4px;
        border-bottom: 1px solid rgba(255,255,255,0.35);
        display: block;
        margin-bottom: 8px;
    }

    /* ADDRESS */
    .footer-address {
        margin-top: 25px;
        font-size: 13px;
        line-height: 1.4;
        text-align: center;
        padding: 0 10px;
    }

    /* BACK TO TOP */
    .back {
        margin-top: 18px;
        text-align: center;
    }

    .back a {
        font-size: 13px;
    }

    /* SOCIAL ICONS */
    .footer-social {
        position: static;
        margin-top: 18px;
        text-align: center;
    }

    .footer-social a {
        font-size: 22px;
        margin: 0 10px;
    }
}

/* -----------------------
   HERO SECTION
------------------------ */

.cloud-hero {
  width: 100%;
  height: 420px;
  background-image: url("images/hero-cloud.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 30px 40px 70px;
}

.cloud-hero-box {
  width: 55%;
  background: #10375C;
  padding: 30px 40px;
  border-radius: 6px;
  color: white;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  margin: -150px auto 0;   
  position: relative;
  z-index: 10;
}

.cloud-hero-box h2 {
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  color: #E8630A;
}

.cloud-hero-box p {
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
}


/* -----------------------
   HOW DO WE HELP
------------------------ */

.help-section {
  margin-top: 40px;
}

.help-content {
  background: #4a96c9;
  text-align: center;
  padding: 45px 100px 120px;
  color: white;
}

.help-content h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.help-content p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 15px;
  text-align: justify;
}

.help-cards {
  padding: 5px 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  max-width: 1000px;
  margin: auto;
  margin: -80px auto 0;   
  position: relative;
  z-index: 5;    
}

.help-card {
  background: #d4a138;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.help-card h3 {
  margin-bottom: 10px;
}

.help-card ul {
  padding-left: 20px;
}


/* -----------------------
   STRATEGIC PARTNERSHIPS
------------------------ */

.partners-section {
  padding: 40px 30px 40px;
  background: #4a96c9;
  text-align: center;
  margin-top: 40px;
  font-size: 25px;
  color: #10375C;
}

.partner-icon img {     
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 30%;
}

.partners-content p {
  max-width: 750px;
  margin: 0 auto 40px;
  text-align: justify;
  font-size: 18px;
  color: white;
}

.partners-list {
  background: white;
  padding: 40px 30px;
  max-width: 900px;
  margin: auto;
  border-radius: 10px;
  font-size: 14px;
}

.partner-item {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 30px;
  font-size: 16px;
  
}

.partner-item:last-child {
  margin-bottom: 0;
}

.partner-icon {
  width: 60px;
  height: 60px;
  border-radius: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  color: #333;
  font-weight: 600;
}

.partner-item p {
  flex: 1;
  text-align: left;
  color: #333;
}

.partners-section {
  margin-top: 60px;         
}


/* -----------------------
   WHAT WE OFFER
------------------------ */

.offer-section {
  padding: 70px 40px;
  text-align: center;
  background: white;
  color: #E8630A;
  font-size: 25px;
}

.offer-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1000px;
  margin: auto;

}

.offer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.offer-icon img {           
  width: 60px;
  margin-bottom: 0px;
}

.offer-item p {
  max-width: 220px;
  font-size: 18px;
  color: #001E6C;
  text-align: center;
}


/* -----------------------
   RESPONSIVE
------------------------ */

@media (max-width: 768px) {
  .help-cards {
    grid-template-columns: 1fr;
  }

  .help-content {
    padding: 30px 20px 120px;   /* reduce large padding */
    text-align: center;
  }

  .help-content h2 {
    font-size: 20px;           /* smaller heading */
  }

  .help-content p {
    font-size: 14px;           /* slightly smaller text */
    text-align: justify;          /* justify breaks on mobile, left is cleaner */
    max-width: 100%;           /* prevent squeezing */
  }

  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partner-item {
    flex-direction: column;
    text-align: center;
  }

  .partner-item p {
    text-align: justify;
  }
}
/* CLOUD HERO BOX RESPONSIVE FIX */
@media (max-width: 768px) {

  .cloud-hero {
    height: 300px; /* reduce hero height for mobile */
    padding: 20px;
  }

  .cloud-hero-box {
    width: 90% !important;        /* full-width responsive */
    margin: -80px auto 0 !important;
    padding: 20px !important;     /* reduce padding */
    border-radius: 10px;
  }

  .cloud-hero-box h2 {
    font-size: 20px !important;
    line-height: 1.3;
  }

  .cloud-hero-box p {
    font-size: 14px !important;
    line-height: 1.6;
    text-align: justify;
  }
}



/* ---------------------------
   DevOps page sections styles
   --------------------------- */

:root{
  --blue: #4a96c9;
  --accent: #E8630A;
  --lifecycle: #4F959D;
  --marquee-bg: #F6F8D5;
  --navy: #10375C;
  --white: #ffffff;
  --max-width: 1200px;
}

/* Utility container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* -----------------------------------------------------------------------------DEVOPS HERO SECTION */

.devops-hero {
    background: linear-gradient(to left, black, #10375C);
    padding: 40px 0px 40px 20px;
    min-height: 450px;
}

.devops-hero-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    just1ify-content: space-between;
    gap: 50px;   
}

.devops-hero-left,
.devops-hero-right {
    flex: 1;
   text-align: justify;
}

.devops-hero-left h1 {
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
}

.devops-hero-left p {
    font-size: 18px;
    line-height: 1.7;
    color: white;
}

/* Right video - clean corporate look */
.hero-video-devops {
    width: 100%;
    border-radius: 10px;
    height: 120%;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

.devops-hero-right {
    flex: 1;
    padding: 30px 0 10px;
    margin: 0;
    display: flex;          /* allow video to stretch */
    align-items: stretch;   /* full height */
    height: 100%;	
}


/* ===========================
   MARQUEE SECTION
=========================== */

.devops-hero-box{
    width: 100%;
    margin: 80px auto 0;
    text-align: center;
}

.devops-hero-box h2{
    font-size: 30px;
    margin-bottom: 50px;
    text-align: center;
    color: #03256C;
}
    
.devops-marquee {
    width: 100%;
    background: #F4D160;  
    padding: 30px 0;
    overflow: hidden;
    margin-top: 30px;
}

.tools-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: toolsScroll 7s linear infinite;
}

.tools-track img {
    width: 110px;
    height: auto;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.15));
}

/* marquee animation */
@keyframes toolsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* SECTION WRAPPER-----------------------------------------------------------------DEVOPS PORTFOLIO */

/* SECTION TITLE */
.lifecycle-title {
  text-align: center;
  font-size: 2rem;
  color: #10375C;
  margin-bottom: 30px;
  margin-top: 40px;
  font-weight: 700;
}

/* OUTER SECTION */
.lifecycle-section {
  width: 100%;
  max-width: 1275px;
  margin: 60px auto;
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: linear-gradient(to right, #A9B5DF, #FFF2F2);
  padding: 25px 50px 100px;
}

/* EACH CARD */
.life-card {
  display: flex;
  align-items: justify;
  justify-content: space-between;
  border: 0px solid #608BC1;
  padding: 40px 30px 30px;
  border-radius: 50px;
  width: 65%;
  height: 160px;
  background: #fff;
  box-sizing: border-box;
}

.life-card.left {
  margin-left: 0;
  margin-right: auto;
}

.life-card.right {
  margin-left: auto;
  margin-right: 0;
}

/* ICON */
.life-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
 
}

/* CONTENT */
.life-content {
  flex: 1;
  padding: 0 20px;
  font-weight: bold;
}

.life-content h4 {
  margin: 0 0 5px;
  color: #E8630A;
  font-size: 20px;
  font-weight: 700;
}

.life-content p {
  margin: 0;
  color: #333;
  font-size: 15px;
}

/*--------------------------------------------------------------------------------------------------------------VALUE WE ADD */
.value-we-add { background: linear-gradient(to right, #fff, #c3e7f1); padding: 70px 0; }
.value-we-add h2 { text-align:center; color: #E8630A; margin-bottom: 55px; font-size: 36px; }

.value-grid{
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 60px;
  align-items: start;
  padding: 0 20px;
}

/* pill style items, staggered positions */
.value-item {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  padding: 18px 22px;
  border-radius: 28px;
  box-shadow: 0 8px 18px rgba(16,55,92,0.12);
}

.value-item p { margin: 0; font-weight: 600; font-size: 18px; color: #fff;}

/* small icon circle */
.val-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}


/* LIFECYCLE------------------------------------------------------------------------------------------------*/

/* wrapper */
.devops-lifecycle-wrapper {
    display: flex;
    background: white;
    padding: 150px 40px;
}

/* LEFT – 60% */
.lifecycle-left {
    width: 60%;
    text-align: center;
}

/* RIGHT – 40% */
.lifecycle-right {
    width: 40%;
    padding-left: 40px;    
}

.lifecycle-right h2 {
    font-size: 40px;
    color: #E8630A;
    padding-left: 40px 30px;
    text-align: center;
}
.lifecycle-right p {
    font-size: 18px;
    padding: 50px 20px 30px;
    text-align: justify;
    color: #4a96c9;
}

/* circle container */
.lifecycle-circle {
    position: relative;
    width: 550px;
    height: 550px;
    margin: auto;
}

/* Each item */
.life-item {
    position: absolute;
    width: 140px;
    text-align: center;
    transform: translate(-50%, -50%);
}

/* icon shape */
.life-item img {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 10%;
    padding: 2px;
    box-shadow: 0px 6px 18px rgba(0,0,0,0.12);
}

.life-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #10375C;
    font-weight: 600;
}

/* ARROWS */
.arrow {
    position: absolute;
    font-size: 40px;
    color: #10375C;
    font-weight: bold;
}

/* CIRCLE POSITIONS (PERFECT 6-POINT ROTATION) */
.item-1 { top: 5%; left: 50%; }
.item-2 { top: 25%; left: 85%; }
.item-3 { top: 60%; left: 90%; }
.item-4 { top: 88%; left: 50%; }
.item-5 { top: 60%; left: 10%; }
.item-6 { top: 25%; left: 15%; }

/* Arrow positions */
.arrow-1 { top: 25%; left: 115%; transform: rotate(25deg); }
.arrow-2 { top: 85%; left: 90%; transform: rotate(85deg); }
.arrow-3 { top: 120%; left: 10%; transform: rotate(150deg); }
.arrow-4 { top: 25%; left: -80%; transform: rotate(-135deg); }
.arrow-5 { top: -50%; left: 10%; transform: rotate(-65deg); }
.arrow-6 { top: -40%; left: 80%; transform: rotate(-20deg); }


/* ================================
   TABLET RESPONSIVE (769px–1024px)
   Fix equal width + auto height
=================================== */
@media (min-width: 769px) and (max-width: 1024px) {

    .lifecycle-section {
        padding: 25px 25px 70px;
        gap: 30px;
    }

    .life-card {
        width: 90% !important;          /* Bigger width for tablet */
        height: auto !important;         /* Let height grow naturally */
        flex-direction: row;
        padding: 30px 20px;
        border-radius: 30px;
        margin: 0 auto !important;       /* Center all cards */
        gap: 20px;
    }

    /* Remove left/right alternation on tablet */
    .life-card.left,
    .life-card.right {
        margin: 0 auto !important;
    }

    .life-icon {
        width: 80px;
        height: 80px;
    }

    .life-content {
        padding: 0 10px;
    }

    .life-content h4 {
        font-size: 18px;
    }

    .life-content p {
        font-size: 14px;
    }
}


/* ================================
   GLOBAL RESPONSIVE FIXES
================================ */

@media (max-width: 900px) {

  /* HERO SECTION */
  .devops-hero-container {
      flex-direction: column;
      gap: 20px;
  }

  .devops-hero-left, 
  .devops-hero-right {
      width: 100%;
      text-align: justify;
      padding: 10px 20px 10px;
  }

  .hero-video-devops {
      height: 250px;
      border-radius: 10px;
  }

  /* MARQUEE */
  .tools-track img {
      width: 70px;
  }

  /* LIFECYCLE PORTFOLIO CARDS */
  @media (max-width: 768px) {

    .lifecycle-section {
        padding: 20px;
    }

    .life-card {
        width: 100%;
        height: auto;
        flex-direction: column;      /* Stack icon above text */
        text-align: center;
        padding: 25px 15px;
        gap: 15px;
        border-radius: 25px;
        margin: 0 auto !important;
    }

    .life-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .life-content {
        padding: 0;
        text-align: center;
    }

    .life-content h4 {
        font-size: 17px;
    }

    .life-content p {
        font-size: 14px;
        text-align: center;
    }
}

  /* VALUE WE ADD */
  .value-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  /* DEVOPS LIFECYCLE (CIRCLE → GRID) */
  .devops-lifecycle-wrapper {
      flex-direction: column;
      padding: 40px 20px;
  }

  .lifecycle-left, .lifecycle-right {
      width: 100%;
      text-align: center;
      padding: 0;
  }

  .lifecycle-right h2 {
      font-size: 28px;
      padding: 0;
  }

  .lifecycle-right p {
      padding: 10px 0 20px;
      font-size: 16px;
  }

  /* Convert Circle to 2-column Grid */
  .lifecycle-circle {
      width: 100%;
      height: auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
  }

  .life-item {
      position: static;
      transform: none;
      text-align: center;
      width: 100%;
  }

  .life-item img {
      width: 70px;
      height: 70px;
  }

  .life-item p {
      font-size: 12px;
  }

  .arrow {
      display: none;
  }
}


/* ============================
   SMALL MOBILE FIX (≤ 600px)
============================ */

@media (max-width: 600px) {

  .devops-hero-left h1 {
      font-size: 28px;    
  }

  .devops-hero-left p {
      font-size: 15px;
  }

  .hero-video-devops {
      height: 200px;
  }

  .lifecycle-circle {
      grid-template-columns: 1fr;
  }

  .life-item img {
      width: 60px;
      height: 60px;
  }
  
  .lifecycle-right h2 {
      font-size: 20px;
      padding: 30px;
  }

  .devops-hero-box h2 {
      font-size: 20px;
  }
}
.tools-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: toolsScroll 10s linear infinite;
}

/* marquee animation */
@keyframes toolsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}


:root{
  --page-max: 1200px;
  --beige: #f3e6cf;        /* page background */
  --navy: #10375C;         /* headings */
  --accent: #E8630A;       /* yellow/orange box */
  --card-bg: #ffffff;
  --muted: #6b6b6b;
}

/* ---------- page container helper ---------- */
.container{
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}



/*-------------------------------------------------------------------SOFTWARE DEVELOPMENT*/
.software-hero {
    position: relative;
    width: 100%;
    height: 600px; 
    overflow: hidden;
}

/* FULL BACKGROUND VIDEO */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* ------------------------------------------------------DESCRIPTION BOX */
.hero-content-box {
    position: absolute;
    bottom: 60px;
    right: 50px;
    width: 45%;
    background: #10375C;
    padding: 20px 15px;
    border-radius: 10px;
    z-index: 5;
}

.hero-content-box h1 {
    font-size: 30px;
    color:  #FFBC4C;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-content-box p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: #fff;
    text-align: justify;
}

/* ---------- SERVICES LIST (9 rows) ---------- */
.sw-services { 
  padding: 20px 0; 
  background: #CFF5E7; 
  width: 100%; 
}
.section-title{ 
  text-align:center; 
  color:var(--navy); 
  margin-bottom: 10px;
  padding: 60px; 
  font-size:32px; 
}

/* list container */
.services-list{ 
  display:block; 
  max-width: 1000px; 
  margin: 0 auto; 
}

/* each row: FIXED height */
.service-row{
  display:flex;
  align-items: center;
  gap: 24px;
  padding: 0 14px;
  border-bottom: 1.5px solid #135D66;
  height: 140px;              /* ⭐ FIXED HEIGHT */
  overflow: hidden;           /* Prevent text pushing height */
}

.service-row:last-child {
  border-bottom: none;
}


/* text block */
.service-text{ 
  flex:1; 
  min-width: 240px; 
}
.service-text h3{ 
  margin: 0 0 8px; 
  color: #E8630A; 
  font-size: 18px; 
  white-space: nowrap;         
  overflow: hidden;
  text-overflow: ellipsis; 
}
.service-text p{ 
  margin:0; 
  color: black; 
  line-height:1.4;
  max-height: 3.2em;           /* keep it within 2 lines */
  overflow:hidden;
}

/* right image - FIXED SIZE */
.service-image{ 
  width: 180px;                /* ⭐ fixed width */
  height: 100px;               /* ⭐ fixed height */
  flex: 0 0 180px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.service-image img{ 
  width:100%; 
  height:100%; 
  object-fit: cover;
  border-radius:12px; 
}

/* MAIN SECTION */
.lifecycle-bg-section {
    position: relative;
    width: 100%;
    height: 500px;             
    background: url('images/sw19.jpg') no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* TRANSPARENT OVERLAY */
.lifecycle-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);   /* Adjust transparency here */
    backdrop-filter: blur(1px);             /* subtle softness */
}

/* CENTERED LIFECYCLE IMAGE */
.lifecycle-center img {
    position: relative;
    width: 480px;               /* Adjust size as needed */
    max-width: 90%;
    height: auto;
    z-index: 2;
}

/* ---------- DELIVERY / Overlapping block ---------- */
.sw-delivery{ padding: 80px 0 80px; background: linear-gradient(to right, #fff, #c3e7f1); max-width: 100%; }
.delivery-top{ max-width: 100%; margin: 0px 70px 100px; padding: 10px; display:flex; gap: 0px; align-items:flex-start; justify-content:center; position:relative; }
.delivery-bg{ flex: 1; min-height: 260px; border-radius: 8px; overflow: hidden; box-shadow: 0 12px 24px rgba(16,55,92,0.06); }
.delivery-bg img{ width:100%; height:100%; object-fit: cover; display:block; }

/* top card overlaps to the right on desktop */
.delivery-card{
  width: 500px;
  background: var(--navy);
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  margin: 100px 40px;
  box-shadow: 0 20px 40px rgba(16,55,92,0.12);
}
.delivery-card h3{ margin:0 0 10px; color: var(--accent); font-size:28px; }
.delivery-card p{ margin:0 0 14px; color:#fff; line-height:1.6; text-align: justify; }

/* grid of 8 items */
.delivery-heading{ text-align:center; color:var(--navy); margin: -90px 0 60px;  font-size:30px; }
.delivery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px;
  max-width: 1000px;
  margin: 0 auto;
}
.delivery-item{
  display:flex;
  gap:30px;
  align-items:center;
  justify-content:flex-start;
  flex-direction:column;
  text-align:center;
}
.icon-round{
  width:80px; height:80px;
  border-radius:10%;
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}
.icon-round img {
    width: 70%;       
    height: 70%;
    object-fit: contain;
    display: block;
}

.delivery-item p{ margin: -20px 0 0; color: #E8630A; font-size:17px; }

/* ==========================================================
   TABLET RESPONSIVE (769px – 1024px)
   DELIVERY / OVERLAPPING BLOCK FIX
========================================================== */
@media (min-width: 769px) and (max-width: 1024px) {

    .sw-delivery {
        padding: 60px 0 70px;
    }

    .delivery-top {
        flex-direction: column;       /* Stack image + card */
        gap: 25px;
        margin: 0px 30px 80px;
        align-items: center;
    }

    .delivery-bg {
        width: 50%;
        min-height: 260px;
    }

    .delivery-bg img { 
        width:100%; 
        height:50%; 
        object-fit: cover; 
        display:block; 
    }

    .delivery-card {
        width: 90%;                  /* Increase size */
        margin: 0;
        padding: 35px 25px;
    }

    .delivery-card h3 {
        font-size: 20px;
        text-align: center;
        
    }

    .delivery-card p {
        font-size: 16px;
        text-align: justify;
    }

    /* GRID FIX FOR TABLET */
    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);   /* 4 → 2 columns */
        gap: 40px;
        padding: 0px 20px;
    }
    
    .delivery-heading {
        font-size: 24px;
        padding: 80px;
        margin-bottom: 0px;
    }

    .icon-round {
        width: 75px;
        height: 75px;
    }

    .delivery-item p {
        font-size: 15px;
    }
}


/* =========================================================
   MOBILE RESPONSIVE FIX (Max width 768px)
   ========================================================= */
@media (max-width: 768px) {

    /* --- GLOBAL SAFETY --- prevent right-side overflow --- */
    body, html {
        overflow-x: hidden !important;
        width: 100%;
    }

    img, video {
        max-width: 100%;
        height: auto;
    }

    /* ----------------------------
       HERO SECTION (video + box)
    ----------------------------- */
    .software-hero {
        height: 350px !important;
    }

    .hero-content-box {
        width: 90% !important;
        left: 50% !important;
        right: auto !important;
        bottom: 20px !important;
        transform: translateX(-50%);
        padding: 20px !important;
    }

    .hero-content-box h1 {
        font-size: 22px !important;
    }

    .hero-content-box p {
        font-size: 14px !important;
    }

    /* ----------------------------
       9 SERVICES LIST
    ----------------------------- */
    .service-row {
        flex-direction: column;
        height: auto !important;
        align-items: flex-start;
        padding: 15px 10px;
        gap: 12px;
    }

    .sw-services h2 {
        font-size: 20px;
        padding: 10px;
     }

    .service-text h3 {
        font-size: 16px !important;
        white-space: normal;
    }

    .service-text p {
        font-size: 14px !important;
        line-height: 1.5;
        max-height: none;
    }

    .service-image {
        width: 100% !important;
        height: 160px !important;
        flex: none;
    }

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ----------------------------
       LIFECYCLE SECTION
    ----------------------------- */
    .lifecycle-bg-section {
        height: 280px !important;
        padding: 10px;
    }
      .lifecycle-center {
        width: 100%;
        display: flex;
        justify-content: center;   /* horizontally center */
        align-items: center;       /* vertically center */
    }

    .lifecycle-center img {
        width: 65% !important;
    }

    /* ----------------------------
       DELIVERY SECTION
    ----------------------------- */
    .delivery-top {
        margin: 30px 15px !important;
        flex-direction: column !important;
    }

    .delivery-bg {
        min-height: 180px;
    }

    .delivery-card {
        width: 100% !important;
        margin: 0 !important;
        padding: 25px !important;
    }

    .delivery-card h3 {
        font-size: 22px !important;
    }

    .delivery-card p {
        font-size: 14px !important;
        text-align: justify;
    }

    .delivery-heading {
        margin: 50px 0 40px !important;
        font-size: 24px !important;
    }

    /* GRID (8 Items → 2 columns) */
    .delivery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px !important;
        padding: 0 10px !important;
    }

    .icon-round {
        width: 70px !important;
        height: 70px !important;
    }

    .delivery-item p {
        font-size: 14px !important;
    }
}

/* =========================================================
   EXTRA SMALL PHONES (Max width 420px)
   ========================================================= */
@media (max-width: 420px) {

    .lifecycle-center img {
        width: 75% !important;
    }

    .delivery-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .icon-round {
        width: 60px !important;
        height: 60px !important;
    }
}



/*------------------------------------------------------------------------------------------------------- TESTING AUTOMATION sections styles*/

:root{
  --blue: #4a96c9;
  --accent: #E8630A;
  --lifecycle: #4F959D;
  --marquee-bg: #F6F8D5;
  --navy: #10375C;
  --white: #ffffff;
  --max-width: 1200px;
}

/* Utility container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* -----------------------------------------------------------------------------TESTING AUTOMATION */

.testing-hero {
    background: linear-gradient(to right, #2D336B, #A9B5DF);
    padding: 40px 0px 40px 20px;
    min-height: 450px;
}

.testing-hero-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    just1ify-content: space-between;
    gap: 50px;   
}

.testing-hero-left,
.testing-hero-right {
    flex: 1;
   text-align: justify;
}

.testing-hero-left h1 {
    font-size: 36px;
    color: #E67E22;
    margin-bottom: 25px;
}

.testing-hero-left p {
    font-size: 19px;
    line-height: 1.7;
    color: white;
}


.testing-hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding : 30px 20px 10px;
}

.testing-hero-right img {
    width: 90%;
    height: 120%;
    max-height: 450px;   
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

/* ===========================
   MARQUEE SECTION
=========================== */

.testing-hero-box{
    width: 100%;
    margin: 80px auto 0;
    text-align: center;
}

.testing-hero-box h2{
    font-size: 30px;
    margin-bottom: 50px;
    text-align: center;
    color: #E8630A;
}
    
.testing-marquee {
    width: 100%;
    overflow: hidden;
    background: white; 
    padding: 18px 0;
}

.tools-track-testing {
    display: flex;
    align-items: center;
    gap: 60px;

    /* 🔥 The ACTUAL smooth loop fix */
    animation: scrollMarquee 40s linear infinite;
    width: max-content; 
}

.tools-track-testing img {
    width: 130px;
    height: auto;
}

@keyframes scrollMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}



/* SECTION WRAPPER-----------------------------------------------------------------TESTING SERVICES */

/* SECTION TITLE */
.testing-title {
  text-align: center;
  font-size: 2rem;
  color: #03256C;
  margin-bottom: 30px;
  margin-top: 40px;
  font-weight: 700;
}

/* OUTER SECTION */
.testing-services {
  width: 100%;
  max-width: 1275px;
  margin: 60px auto;
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: linear-gradient(to left, #A9B5DF, #FFF2F2);
  padding: 25px 50px 100px;
}

/* EACH CARD */
.test-card {
  display: flex;
  align-items: justify;
  justify-content: space-between;
  border: 0	px solid #608BC1;
  padding: 40px 30px 30px;
  border-radius: 0px;
  width: 100%;
  height: 190px;
  background: #fff;
  box-sizing: border-box;
}

.test-card.left {
  margin-left: 0;
  margin-right: auto;
}

.test-card.right {
  margin-left: auto;
  margin-right: 0;
}

/* ICON */
.test-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
 
}

/* CONTENT */
.test-content {
  flex: 1;
  padding: 0 20px;
  font-weight: bold;
}

.test-content h4 {
  margin: 0 0 5px;
  color: #E8630A;
  font-size: 20px;
  font-weight: 700;
}

.test-content p {
  margin: 0;
  color: #333;
  font-size: 15px;
  text-align: justify;
  
}

/* MAIN SECTION */
.lifecycle-testing-section {
    position: relative;
    width: 100%;
    height: 500px;             
    background: #CBDCEB;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* CENTERED LIFECYCLE IMAGE */
.lifecycle-testing-center img {
    position: relative;
    width: 800px;               
    max-width: 100%;
    border-radius: 30px;
    height: auto;
    z-index: 2;
}


/* ==========================================================
   TABLET RESPONSIVE (ONLY FOR TESTING SERVICES SECTION)
   Target: 769px – 1024px
========================================================== */
@media (min-width: 769px) and (max-width: 1024px) {

    .testing-services {
        padding: 30px 25px 60px;
        gap: 30px;
    }

    .test-card {
        flex-direction: row;        /* Keep icon + text on same row */
        align-items: flex-start;
        height: auto;
        padding: 30px 20px;
        gap: 20px;
    }

    .test-icon {
        width: 90px;
        height: 90px;
        flex-shrink: 0;             /* Prevent icon squeezing */
    }

    .test-content {
        flex: 1;                    /* Allows text to wrap properly */
        padding: 0;
    }

    .test-content h4 {
        font-size: 20px;
    }

    .test-content p {
        font-size: 15px;
        text-align: justify;
        line-height: 1.5;
        word-break: break-word;     /* Prevents overflow */
    }
}


/* ============================
   MOBILE RESPONSIVE FIXES
   FOR TESTING AUTOMATION PAGE
============================ */

@media (max-width: 768px) {

    /* Universal Fix: remove right-side zoom white gap */
    body, html {
        overflow-x: hidden;
    }


    /* -----------------------------
       HERO SECTION
    ------------------------------ */

    .testing-hero {
        padding: 20px;
        min-height: auto;
    }

    .testing-hero-container {
        flex-direction: column;
        gap: 25px;
        padding: 0 10px;
    }

    .testing-hero-left h1 {
        font-size: 28px;
        text-align: center;
    }

    .testing-hero-left p {
        font-size: 16px;
        text-align: justify;
    }

    .testing-hero-right {
        padding: 0;
        justify-content: center;
    }

    .testing-hero-right img {
        width: 90%;
        height: auto;
        max-height: none;
        border-radius: 10px;
    }


    /* -----------------------------
       MARQUEE
    ------------------------------ */

    .tools-track-testing img {
        width: 90px;
    }



    /* -----------------------------
       TESTING SERVICES CARDS
    ------------------------------ */

    .testing-services {
        padding: 20px 15px 50px;
        gap: 20px;
    }

    .test-card {
        flex-direction: column;
        height: auto;
        gap: 15px;
        text-align: center;
        padding: 25px 15px;
    }

    .test-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .test-content {
        padding: 0;
    }

    .test-content h4 {
        font-size: 18px;
    }

    .test-content p {
        font-size: 14px;
        text-align: justify;
    }


    /* -----------------------------
       LIFECYCLE TESTING SECTION
    ------------------------------ */

    .lifecycle-testing-section {
        height: 330px;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Center image properly */
    .lifecycle-testing-center {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .lifecycle-testing-center img {
        width: 95%;
        max-width: 450px;
        height: auto;
    }
}



/*-------------------------------------------------------------------DIGITAL TRANSFORMATION*/
.digi-hero {
position: relative;
height: 460px;
overflow: hidden;
}

.digi-hero-bg {
width: 100%;
height: 100%;
background-image: url('images/hero-digi.jpg');
background-size: cover;
background-position: center;
position: absolute;
top: 0;
left: 0;
}

.digi-hero-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
text-align: center;
width: 70%;
text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.digi-hero-content h1 {
font-size: 36px;
margin-bottom: 20px;
color: #98DED9;
}


.digi-hero-content p {
background: rgba(0,0,0,0.55);
padding: 15px;
font-size: 19px;
border-radius: 5px;
text-align: justify;
}


.digi-experts {
padding: 60px 0;
background: #fff;
}


.digi-experts h2 {
color: #FFCC00;
font-size: 28px;
text-align: center;
margin-bottom: 50px;
}


/* REDUCED + EVEN GRID */
.digi-grid {
width: 80%;
margin: auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
}


/* CARD */
.digi-item {
background: #D6F4ED;
padding: 20px;
border-radius: 5px;
text-align: center;
height: 380px; 
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;;
}


/* SQUARE IMAGES */
.digi-img {
width: 120px;
height: 120px;
background-size: cover;
background-position: center;
border-radius: 10px;
}


.digi-item h3 {
font-size: 18px;
color: #473472;
margin-bottom: 0;
}


.digi-item p {
font-size: 14px;
line-height: 1.6;
padding: 0 10px;
text-align: justify;
color: black;
flex-grow: 1;
margin: 0;
}

/* digital tranformation-------------- steps */
.digital-process-section {
    position: relative;
    width: 100%;
    height: 550px;             
    background: #FFF7F7;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* CENTERED LIFECYCLE IMAGE */
.digital-process-center img {
    position: relative;
    width: 500px;               
    max-width: 100%;
    border-radius: 30px;
    height: auto;
    z-index: 2;
}

/* ===============================
   DIGITAL SUPPORT SECTION
   =============================== */

.digi-support {
  position: relative;
  height: 450px;
  background-image: url('images/digi8.jpg'); /* background image */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.digi-support-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.digi-support-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 70%;
}

.digi-support-center h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #FFCC00;
}

.digi-support-center p {
  font-size: 18px;
  margin-bottom: 25px;
}

.digi-support-btn {
  background: #FFBC4C;
  padding: 12px 25px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
}

.digi-support-btn:hover {
  background: #4FB7B3;
}

/* ==========================================================
   TABLET RESPONSIVE (600px to 991px)
   ========================================================== */
@media (max-width: 991px) {

  /* HERO */
  .digi-hero {
    height: 380px;
  }

  .digi-hero-content h1 {
    font-size: 30px;
  }

  .digi-hero-content p {
    font-size: 16px;
  }

  /* GRID -> 2 columns */
  .digi-grid {
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .digi-item {
    height: 360px;
  }

  /* DIGITAL PROCESS IMAGE */
  .digital-process-section {
    height: 450px;
  }

  .digital-process-center img {
    width: 380px;
  }

  /* SUPPORT SECTION */
  .digi-support {
    height: 380px;
  }

  .digi-support-center h2 {
    font-size: 28px;
  }

  .digi-support-center p {
    font-size: 16px;
  }

  .digi-support-btn {
    font-size: 17px;
  }
}


/* ==========================================================
   MOBILE RESPONSIVE (LESS THAN 600px)
   ========================================================== */
@media (max-width: 600px) {

  /* HERO */
  .digi-hero {
    height: 330px;
  }

  .digi-hero-content {
    width: 85%;
  }

  .digi-hero-content h1 {
    font-size: 26px;
  }

  .digi-hero-content p {
    font-size: 15px;
    padding: 12px;
  }

  /* GRID -> 1 column */
  .digi-grid {
    width: 90%;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .digi-experts h2 {
   font-size: 24px;  
  }

  .digi-item {
    height: auto;
    padding: 20px;
  }

  .digi-img {
    width: 110px;
    height: 110px;
  }

  /* DIGITAL PROCESS IMAGE */
  .digital-process-section {
    height: 350px;
  }

  .digital-process-center img {
    width: 320px;
    border-radius: 20px;
  }

  /* SUPPORT SECTION */
  .digi-support {
    height: 330px;
  }

  .digi-support-center {
    width: 85%;
  }

  .digi-support-center h2 {
    font-size: 24px;
  }

  .digi-support-center p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .digi-support-btn {
    padding: 10px 20px;
    font-size: 16px;
  }
}

/* ======================================================
   WEBSITE DEVELOPMENT HERO SECTION
   ====================================================== */

.web-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
}

/* Background Video */
.web-hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Content Box */
.web-hero-content-box {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  background: linear-gradient(#BBE9FF, #A1EEBD) !important;
  width: 70%;
  max-width: 450px;
  padding: 25px 30px;
  border-radius: 10px;
  color: #000;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.4);
}

.web-hero-content-box h1 {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #001A6E;
}

.web-hero-content-box p {
  font-size: 17px;
  line-height: 1.7;
  text-align: justify;
}

/* ----------------------------DIFFERENCE SECTION */
.web-difference-section {
  text-align: center;
  background: #fafafa;
  padding: 50px 20px;
  height: 450px;
}

.web-difference-section h2{
  text-align: center;
  font-size: 2rem;
  color: #10375C;
}
.web-box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 25px;
}

/* Each Feature Box */
.web-diff-box {
  width: 230px;
  padding: 18px 15px;
  background: #ECF2FF;
  border: 0px solid #3E54AC;
  border-radius: 0px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.web-diff-box:hover {
  border-color: #088395;
}

/* Highlight Selected */
.web-diff-box.active {
  background: #205781;
  color: #fff;
  border-color: white;
}

/* CONTENT AREA */
.web-diff-content {
  display: none;
  max-width: 650px;
  margin: auto;
  background: linear-gradient(#BBE9FF, #A1EEBD);
  padding: 20px;
  border-left: 4px solid #31326F;
  border-radius: 6px;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.08);
  animation: fade 0.4s ease;
}

.web-diff-content.active {
  display: block;
}

@keyframes fade { from {opacity: 0;} to {opacity: 1;} }

/* MAIN SECTION */
.web1-section {
    width: 100%;
    height: 480px;
    margin: 0;
    display: flex;
    background: linear-gradient(#B7A3E3, #b6fbff);
}

.web1-container {
    display: flex;
    width: 100%;
    
}

/* LEFT SIDE */
.web1-text {
    width: 50%;
    padding: 40px;
    color: white;
    text-align: justify;
}

.web1-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #E8630A;
}

.web1-text p {
    font-size: 20px;
    line-height: 1.6;
}

/* RIGHT SIDE SLIDER AREA */
.web1-slider {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.web1-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.web1-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Active slide */
.web1-slide.active {
    opacity: 1;
}

.web-contact-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.web-contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.web-contact-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.web-contact-content {
  max-width: 500px;
}

.web-contact-content h2 {
  font-size: 2rem;
  color: #E8630A;
  margin-bottom: 15px;
}

.web-contact-content p {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}

.web-contact-btn {
  display: inline-block;
  background: #4FB7B3;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
}

.web-contact-btn:hover {
  background: #63C8FF;
}

/* ============================
   RESPONSIVE DESIGN 
   ============================ */

/* ---------- TABLET (601px–900px) ---------- */
@media (max-width: 900px) {

  /* HERO */
  .web-hero {
    height: 380px;
  }

  .web-hero-content-box {
    left: 25%;
    width: 45%;
    height: 88%;
  }

  .web-hero-content-box h1 {
    font-size: 18px;
  }

  .web-hero-content-box p {
    font-size: 14px;
  }

  /* DIFFERENCE SECTION */
  .web-diff-box {
    width: 30%;
  }
  
  .web-difference-section h2 {
    font-size: 20px;
  }

   .web-difference-section {
    padding: 30px 0 20px;
   }

  .web-diff-content {
    max-width: 70%;
  }
  
  /* WEB1 SECTION */
 .web1-section {
    height: auto;
    padding: 30px 20px;
  }

  .web1-container {
    flex-direction: column;
    width: 100%;
  }

  /* TEXT AREA */
  .web1-text {
    width: 100%;
    padding: 30px 25px;
    background: linear-gradient(#B7A3E3, #b6fbff);
    border-radius: 10px;
    margin-bottom: 25px;
  }

  .web1-text h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 12px;
  }

  .web1-text p {
    font-size: 17px;
    line-height: 1.6;
    text-align: center;
  }

  /* SLIDER */
  .web1-slider {
    width: 85%;
    height: 350px;
    margin: 0 auto;
    border-radius: 10px;
  }

  .web1-slide,
  .web1-slide img {
    height: 350px;
  }


  /* CONTACT SECTION */
  .web-contact-container {
    flex-direction: column;
    text-align: center;
  }

  .web-contact-img {
    width: 250px;
    height: 250px;
  }

  .web-contact-content h2 {
    font-size: 1.8rem;
  }

  .web-contact-content p {
    font-size: 1.2rem;
  }
}


/* ---------- MOBILE (0–600px) ---------- */
@media (max-width: 600px) {

  .web-hero {
    height: 420px;
  }

  .web-hero-bg-video {
    object-fit: cover;
  }

  .web-hero-content-box {
    width: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 18px 15px;
  }

  .web-hero-content-box h1 {
    font-size: 24px;
  }

  .web-hero-content-box p {
    font-size: 16px;
    line-height: 1.5;
  }

  /* -------------------------------------------
     FIX 2: "Our Web Development Process"
     ------------------------------------------- */

.web-difference-section {
        padding: 25px 15px;
        height: auto;
    }

    .web-box-container {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
    }

    .web-diff-box {
        width: 70%;
        font-size: 16px;
        text-align: center;
        padding: 15px 10px;
    }

    .web-diff-content {
        width: 95%;
        font-size: 15px;
        line-height: 1.6;
        padding: 18px;
        text-align: justify;
    }

  /* content */
  .web-diff-content {
    max-width: 420px;
    margin: 20px auto;
    padding: 16px;
  }

  .web-diff-content p {
    font-size: 15px;
    line-height: 1.5;
  }

  /* WEB1 SECTION (Slider Section) */

  .web1-section {
    flex-direction: column;
    height: auto;
    padding: 20px 12px;
  }

  .web1-container {
    flex-direction: column;
    width: 100%;
  }

  /* TEXT AREA */
  .web1-text {
    width: 100%;
    padding: 20px 15px;
    background: linear-gradient(#B7A3E3, #b6fbff);
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .web1-text h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 12px;
  }

  .web1-text p {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
  }

  /* SLIDER AREA */
  .web1-slider {
    width: 100%;
    height: 260px; /* increased for better visibility */
    border-radius: 10px;
    overflow: hidden;
  }

  .web1-slide {
    height: 260px;
  }

  .web1-slide img {
    width: 100%;
    height: 260px;
    object-fit: cover;
  }

  /* CONTACT SECTION */
  .web-contact-section {
    padding: 40px 10px;
  }

  .web-contact-img {
    width: 220px;
    height: 220px;
  }

  .web-contact-content {
    text-align: center;
  }

  .web-contact-content h2 {
    font-size: 1.6rem;
  }

  .web-contact-content p {
    font-size: 1rem;
  }

  .web-contact-btn {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}

