/* ================= ROOT VARIABLES ================= */
  :root {
    --primary-color: #ffb300;
    --primary-hover: #ffcb00;
    --gradient-bg: radial-gradient(ellipse at left, #0a1e4d 60%, #0a2a9c 100%);
    --white: #fff;
    --black: #000;
    --gray: #444;
    --light-gray: #f9f9f9;
  }
/**
* Template Name: Arsha
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */

:root {
  --default-font: Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: Calibri, sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  /*--background-color: #00111e; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37517e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #47b2e4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --background-blue-color:radial-gradient(ellipse at left, #0a1e4d 60%, #0a2a9c 100%);/* Default color we use for blue background */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;
  --nav-hover-color: #47b2e4;
  --nav-mobile-background-color: #00111e;
  --nav-dropdown-background-color: #00111e;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #47b2e4;
  --background-color: #ffffff;
  --default-color: #ffffff;
  /* --heading-color: #ffffff; */
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
  --button-color:#ffb300;
  --button-hover-color: #ffcb00;
}
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
:root {
  --background-blue-color: radial-gradient(ellipse at left, #0a1e4d 60%, #0a2a9c 100%);
  --text-light: #eee;
  --link-color: #aad4ff;
  --link-hover: #ffffff;
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
*{
  background: none;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

/* Mega Menu Styles */
/* Ensure the navmenu stays correctly aligned */
/* Ensure the navmenu stays correctly aligned */
/* Navigation Menu Wrapper */
/* Navigation Menu Wrapper */
/* ---------------- NAV MENU ---------------- */
/* ===========================
   NAVIGATION MENU
=========================== */
  .navmenu {
    position: relative;
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;

  }

  /* Top-level nav items */
  .navmenu-ul > li {
    position: relative;
    padding-right: 20px;
  }

  /* Arrow for top-level items */
  .navmenu-ul > li::after {
    content: '▼';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: transform 0.3s ease;
  }

  .navmenu-ul > li:hover::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .navmenu-ul>li:hover{

    border-bottom: 2px solid var(--button-color);

  }
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: transform 0.3s ease, background 0.3s ease;
  background: transparent; /* default transparent */
}

.header.scrolled {
  background: var(--background-blue-color); /* background when scrolling up */
}


/* ===========================
   MEGA MENU
=========================== */
.mega-menu {
  position: fixed;
  top: 72px; /* same as header height */
  left: 0;
  width: 100vw;
  background: #0a1e4d;
  display: none;
  z-index: 998;
  padding: 40px;
  box-sizing: border-box;
  overflow-y: auto;
}
.mega-cat {
  position: relative;
  cursor: pointer;
  padding-right: 20px; /* space for arrow */
  color: #fff;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.mega-cat::after {
  content: '→  ';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show arrow for active category */
.mega-cat.active::after {
  opacity: 1;
}


/* Mega menu layout */
.mega-container {
  display: grid;
  grid-template-columns: 260px 1fr; /* left | right */
  gap: 42px;
  font-size: 16px;
  font-weight: 300;
  align-items: start;
}

.mega-left {
  padding-left: 35px;
  padding-right: 20px;
  font-size: 18px;
  font-weight: 300;
  border-right: 1px solid rgba(255,255,255,0.28);
}

.mega-right {
  padding-left: 20px;
}

/* Category headings */
.mega-details .mega-head h3 {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px 0;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* Columns in right section */
.mega-columns {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 24px;
}

/* Individual column */
.mega-col {
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.mega-col:last-child {
  border-right: none;
}

/* Links and hover effect */
.mega-col ul li a {
  display: block;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  padding: 3px 0;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.mega-col ul li a:hover {
  color: var(--button-color); /* gold hover */
  padding-left: 6px; /* subtle shift */
}

/* Description text under links */
.mega-desc {
  font-size: 0.85rem;
  color: #ccc;
  margin: 2px 0 0 0;
  line-height: 1.2;
}

/* ===========================
   HEADER
  =========================== */
.header {
  background: transparent;
  transition: background 0.5s ease, transform 0.5s ease;
  z-index: 897 !important;
}



.header:hover,
.header.scrolled {
  background: var(--background-blue-color);
}
  /* Logo */
  .header .logo {
    line-height: 1;
  }

  .header .logo img {
    max-height: 80px;
    margin-right: 8px;
    filter: brightness(0) invert(1);
    margin-bottom: 10px;
  }

  .header .logo .brand-logo {
    width: 250px !important;
    height: 100px !important;
    max-width: 100%;
    display: block;
  }

  .header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 500;
    color: var(--heading-color);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* Get Started button */
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    color: #000;
    background-color: var(--button-color);
    font-size: 16px;
    font-weight: bold;
    padding: 8px 25px;
    margin-bottom: 11px;
    margin-left: 30px;
    border-radius: 20px;
  }

  .header .btn-getstarted:hover,
  .header .btn-getstarted:focus:hover {
    background: var(--button-hover-color);
  }

  /* ===========================
    MEDIA QUERIES
  =========================== */

  /* Desktop below 1200px */
  @media (max-width: 1200px) {
    .header .logo { order: 1; }
    .header .btn-getstarted {
      order: 2;
      margin: 0 15px 0 0;
      padding: 6px 15px;
    }
    .header .navmenu { order: 3; }
  }

  /* Tablet / mobile view below 991px */
  @media (max-width: 991px) {
    .navmenu-ul {
      flex-direction: column;
      background: #fff;
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      padding: 15px 0;
      display: none;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      z-index: 999;
    }

    .navmenu-ul.active {
      display: block;
      animation: fadeIn 0.3s ease;
    }

    .navmenu-ul li {
      margin: 10px 0;
      text-align: center;
    }

    .mobile-nav-toggle { display: block; color: #000; }

    /* Hide mega menu on mobile */
    .mega-menu {
      display: none !important;
      visibility: hidden;
      opacity: 0;
      height: 0;
      overflow: hidden;
    }
  }

  /* Small screens below 576px */
  @media (max-width: 576px) {
    .header .logo h1 {
      font-size: 22px;
      letter-spacing: 1px;
    }
    .header .btn-getstarted {
      font-size: 14px;
      padding: 6px 15px;
      margin-left: 10px;
    }
    .header {
      background: linear-gradient(135deg, #00111e, #022958);
    }
  }

  /* ===========================
    ANIMATIONS
  =========================== */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }


/* --------------------- */
/* SERVICE SECTION */
/* --------------------- */
.services-section h6 {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.services-section .underline {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #8f16cf, #606bff);
  margin-bottom: 25px;
}

.services-section p {
  font-size: 1.2rem;
  font-family: 'Montserrat', 'Noto Sans';
  color: #443f3f;
  line-height: 1.6;
}

.service-card {
  transition: all 0.3s ease-in-out;
  transform-origin: center;
  border-radius: 1rem;
  background: #e3e6e9;;
}

.service-card:hover {
  transform: scale(1.025);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

/* Fixed image height with cover fit */
.fixed-img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

/* Card title */
.card-body h6 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.card-body h6:hover {
  color: #f7035a; /* #ff3c00; */
  cursor: pointer;
  text-decoration: underline;
}

/* Card description */
.card-text {
  font-size: 0.95rem;
  color: #333;
  font-family: 'Montserrat',sans-serif;
}




/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: contents;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    margin-bottom: 13px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}



  /* hero section */

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  background: var(--gradient-bg);
  color: var(--white);
  margin: 0;
  padding: 0;
}

.container {
  width: 85%;
  margin: auto;
}

/* ================= HERO SECTION ================= */
.hero-wrapper {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 60px 10%;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("Synaipsys-service-images/near-shoreSWDevelopment.jpg") no-repeat center center / cover;
  color: var(--white);
}


.hero-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100px;
  height: 100px;
  object-fit: fill;
}

.hero-overlay {
  width: 100%;
  padding: 60px 10%;
  color: var(--white);
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-left: -80px;
}

.hero-text {
  flex: 1;
  max-width: 50%;
}

.hero-text h1 {
  font-size: 55px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
}

/* ================= HERO FORM ================= */
.hero-form {
  background: var(--white);
  color: var(--black);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.2);
  max-width: 400px;
  width: 100%;
}

.hero-form h2 {
  font-size: 28px;
  color: #000;
  margin-bottom: 5px;
}

.hero-form p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #555;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.hero-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 16px;
  background: var(--button-color);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-form button:hover {
  background: var(--button-hover-color);
}

/* ================= CONTENT SECTION ================= */
.content-wrapper {
  background: var(--light-gray);
  color: var(--black);
  padding: 60px 0;
}

.content-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.content-text {
  flex: 1 1 600px;
}

.content-text h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
  white-space: nowrap;
}

.content-text p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray);
}

.content-images {
  flex: 1 1 400px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transform: translateX(-90px);
}

.content-images .main-img {
  opacity: 0.7;
  transform: translateX(-30px);
}

.content-images .main-img img {
  width: 400px;
  display: block;
}

.content-images .sub-img {
  position: absolute;
  bottom: -20px;
  left: calc(50% + 55px);
  transform: translateX(-50%);
  width: 350px;
  z-index: 2;
}

.content-images .sub-img img {
  width: 350px;
  height: auto;
  display: block;
}

/* ================= PARTNERS ================= */
.partners {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.partners img {
  margin-top: 2%;
  max-width: 150px;
  border-radius: 8px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .hero-content {
    margin-left: 0;
    gap: 40px;
  }
  .hero-text {
    max-width: 60%;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    margin-left: 0;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-text h1 {
    font-size: 40px;
  }
  .content-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .content-images {
    justify-content: center;
    transform: translateX(70%);
  }
  .content-images .main-img {
    transform: none;
  }
  .content-images .main-img img {
    width: 85%;
    max-width: 280px;
  }
  .content-images .sub-img {
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
  }
}



/* Why Nearshore Development Section */
.why-nearshore {
  padding: 80px 20px;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.nearshore-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.nearshore-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.nearshore-content {
  flex: 1;
}

.nearshore-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1d3557;
}

.nearshore-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

.nearshore-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nearshore-content ul li {
  text-align: left;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #333;
  display: flex;
  align-items: center;
}

.nearshore-content ul li::before {
  content: "";
  margin-right: 8px;
  color: #0077b6;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .nearshore-container {
    flex-direction: column;
    text-align: center;
  }

  .nearshore-content h2 {
    font-size: 28px;
  }

  .nearshore-image img {
    max-width: 100%;
  }
}




/* Section Styling */
.how-we-work {
  padding: 80px 20px;
  background: #fff7ec;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.how-we-work .container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #222;
}

/* Work Step Layout */
.work-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

.work-step.reverse {
  flex-direction: row-reverse;
}

.work-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.work-content {
  flex: 1;
}

.work-content h3 {
  font-size: 2.3rem;
  color: #0a3d62;
  font-weight: bold;
  margin-bottom: 15px;
}

.work-content p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #555;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .work-step {
    flex-direction: column;
    text-align: center;
  }

  .work-step.reverse {
    flex-direction: column;
  }

  .work-content h3 {
    font-size: 1.5rem;
  }
}



/*
*******************************************************
Global-Footer
*******************************************************
*/
.footer .copyright {
  padding: 20px 0 10px;
  color: #929090;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.15);

  align-items: center;
}



.footer .copyright p {
  margin: 0;
}


.footer {
  background: var(--background-blue-color);
  color: var(--text-light);
  font-size: 14px;
  padding: 40px 20px 50px;
  font-family: var(--font-family);
  position:relative;
}
.flex-5 h4 {
  font-size: 23px !important;
 border-bottom: none !important;
  
}

.container {
  max-width: 1600px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

.dis-flex i {
  font-size: 21px;
  margin: 0 !important; /* remove extra space */
  padding-left: 20px !important;
}


.flex-5 {
  flex: 1 1 30%;
  min-width: 120px;
  text-decoration: none;
}

.flex-5 ul li a {
  color: rgb(197, 196, 196); /* change to your desired color */
  font-size: 15px;
}


.count-col h5,
.count-col p {
  white-space: nowrap;
}

.footer a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover,
.footer a:focus {
  color: var(--link-hover);
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Flex utilities */
.dis-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

/* Footer Top Section */
.footer-top {
    display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 30px;
  padding-right: 10px;
  gap: 30px;
}

.count-sec {
  display: flex;
  flex-wrap: wrap;    /* wrap items to next line on small screens */
  gap: 20px 110px;
  flex: 1 1 65%;
  min-width: 280px;   /* prevents shrinking too much */
}

.count-col {
  min-width: 130px;
  flex: 1 1 120px; /* flexible, but min 120px */
  color: #fff;
}


.count-col h5 {
  font-size: 1.5rem;
  margin: 0 0 5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.count-col p {
  margin: 0;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.subs-box{
  margin-right: 150px !important;

}
.subs-box ul {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  align-items: center;
  
}

.subs-box ul li {
  flex-shrink: 0;
}

.subs-box img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Footer Middle Section */
.footer-middle {
  gap: 32px;
  margin-bottom: 40px;
}

.flex-5 {
  flex: 1 1 18%;
  min-width: 150px;
}

.footer-middle h4 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
  border-bottom: 2px solid #aad4ff;
  padding-bottom: 8px;
}

.footer-middle ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-middle li {
  margin-bottom: 12px;
}

.footer-middle li a {
  font-weight: 500;
  font-size: 0.9rem;
}

/* Footer Bottom Section */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  gap: 20px;
  padding-top: 30px;
  flex-wrap: wrap;
}

.footer-bottom > div {
  flex: 1; /* equal width for all 3 columns */
  min-width: 200px; /* ensures they don't shrink too small */
}

.footer-bottom > div {
  flex: 1; /* equal width for all 3 columns */
  min-width: 200px; /* ensures they don't shrink too small */
}

/* Optional: center-align text inside each block */
.footer-bottom > div {
  text-align: center;
}

.flex-4 {
  flex: 1 1 30%;
  min-width: 200px;
}
.flex-4 img{
  margin-right: 100px;
}
.flex-4 h3{
  font-size: 17px;
}

.logo-box h3,
.social-box h3 {
  margin-left: 20px;
  font-weight: 700;
  color: #fff;
  /* margin-bottom: 10px; */
}




.dis-flex a i {
  color: white; /* your desired color */
  font-size: 20px; /* optional: change size */
}

.dis-flex a i:hover {
  color:rgb(194, 193, 193) ; 
}

.social-box .dis-flex {
  display: flex;
  gap: 10px; /* adjust spacing between icons */
  justify-content: flex-start; /* align to the left */
}

.social-box .dis-flex a {
  margin-right: 15px;
  display: inline-block;
}

.social-box img {
  filter: brightness(0) invert(1); /* make icons white */
  transition: filter 0.3s ease;
}

.social-box a:hover img {
  filter: brightness(0) invert(0.6);
}
.footer-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  white-space: nowrap; /* Prevent line breaks */
  flex-wrap: nowrap;   /* Force one line */
}

.footer-rating .star-outer {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-rating .star-icon {
  margin-right: 20px;
  display: inline-block;
  width: 22px;
  height: 22px;
  background-size: contain;
}

.footer-rating .rating-text {
  margin-left: 6px;
  font-size: 0.9rem;
  color: #fff;
}

.footer-rating .client-outer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-rating .rate-us {
  color: #ffd700;
  font-weight: bold;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #ffd700; /* orange frame */
  border-radius: 5px;
  text-decoration: none;
}

.footer-rating .rate-us:hover {

  text-decoration: underline;
}

.footer-rating .client-info {
  font-size: 0.85rem;
  color: #ddd;
}

@media (max-width: 768px) {
  .footer-rating {
    flex-wrap: wrap; /* Allow wrap on small screens */
    white-space: normal;
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .count-sec {
    flex: 1 1 100%;
    min-width: 0;
    gap: 15px 30px;
  }

  .count-col {
    flex: 1 1 45%;
    min-width: auto;
  }

  .flex-4.social-box {
    flex: 1 1 100%;
    min-width: 0;
    margin-top: 20px;
  }

  .social-box h3,
  .social-box .dis-flex {
    margin-left: 0;
  }
}
/* Responsive */
@media (max-width: 900px) {
  .footer-middle {
    flex-direction: column;
  }
  .flex-5 {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .footer-top {
    flex-direction: column;
  }
  .count-sec {
    justify-content: space-between;
  }
  .subs-box ul {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .flex-4 {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .copyrigh-cont {
    flex-direction: column;
    text-align: center;
  }
}