.main-heading {
  font-size: 4rem;              /* Very large */
  font-weight: 900;              /* Max bold */
  color: rgb(227, 218, 218);

  text-shadow:
    4px 4px 12px rgba(0, 0, 0, 0.85);  /* Strong black shadow */

  line-height: 1.1;              /* FIX: 5 was shrinking visual impact */
  letter-spacing: -2px;          /* Makes it feel heavier */
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  color: #333;
  overflow-x: hidden !important; /* Force no horizontal scroll */
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
a,
span,
div {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* --- HEADER --- */
.top-bar {
  background-color:#FE4F2D;
  color: #e0e0e0;
  padding: 6px 0;
  font-size: 0.9em;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar .social-icons,
.top-bar .contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.divider-line {
  border-left: 1px solid white;
  padding: 5px 0;
}
.phone-number {
  font-weight: 500;
}
.top-bar .contact-info a {
  color: #e0e0e0;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}
.top-bar .contact-info a:hover {
  color: #ffffff;
}
.main-nav {
  background-color: #ffffff;
  padding: 7px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
  transition: all 0.3s ease;
}
.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
.logo img {
  height: 150px;
  width: auto;
  /* border-radius: 100px; */
  transition: height 0.3s ease;
}
.nav-links {
  display: flex;
}
.nav-links li {
  margin-left: 35px;
}
.nav-links a {
  color:#0097B2;
  font-weight: 500;
  padding-bottom: 8px;
  position: relative;
  transition: color 0.3s ease;
  overflow: hidden;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #FF6600;
  transition: width 0.35s ease-in-out;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
  color:#0b6474;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8em;
  color: #1a237e;
  cursor: pointer;
}
body.scrolled .top-bar {
  display: none;
}
body.scrolled .main-nav {
  max-width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
}
body.scrolled .main-nav .container {
  height: 50px;
}
body.scrolled .main-nav .logo img {
  height: 120px !important;
}
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  max-width: 80%;
  height: 100vh;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 1100;
  padding: 60px 20px 20px;
  transition: right 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
}
.mobile-nav-panel.open {
  right: 0;
}
.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.8em;
  color: #333;
  cursor: pointer;
}
.mobile-nav-links {
  flex-direction: column;
  margin-bottom: 30px;
}
.mobile-nav-links li {
  margin: 0;
  width: 100%;
}
.mobile-nav-links a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #333;
  font-weight: 500;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: #1976d2;
}

/* --- HERO SLIDER --- */
.hero-slider-wrapper {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  position: relative;
}
.hero-slides-container {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}
.hero-slide-item {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
}
.hero-slide-item .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.37);
  z-index: 1;
}
.hero-slide-item .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 40px;
  text-align: left;
}
.hero-slide-item .hero-content > * {
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}
.hero-slide-item .hero-content .sub-heading {
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 15px;
  color: #e0e0e0;
}
.hero-slide-item .hero-content .main-heading {
  font-size: 3em;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.hero-slide-item .hero-content .description {
  font-size: 1.15em;
  margin-bottom: 35px;
  max-width: 650px;
}
.btn.btn-hero {
  background-color: #436d95;
  color: #fff;
  padding: 15px 35px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 5px;
  text-transform: uppercase;
  display: inline-block;
}
.btn.btn-hero:hover {
  background-color: #032a58;
}
.content-animate-init {
  opacity: 0;
  transform: translateY(50px);
}
.content-animate-final {
  opacity: 1;
  transform: translateY(0);
}
.hero-slide-item .hero-content .sub-heading.content-animate-final {
  transition-delay: 0.1s !important;
}
.hero-slide-item .hero-content .main-heading.content-animate-final {
  transition-delay: 0.3s !important;
}
.hero-slide-item .hero-content .description.content-animate-final {
  transition-delay: 0.5s !important;
}
.hero-slide-item .hero-content .btn-hero.content-animate-final {
  transition-delay: 0.7s !important;
}
/* --- SECTIONS (GENERAL) --- */
.section-tag,
.section-tag-lightbg,
.section-tag-darkbg,
.section-tag-on-dark {
  display: inline-block;
  font-size: 0.85em;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-tag,
.section-tag-lightbg {
  color: #FE4F2D;
  font-size: 18px;
}
.section-tag-darkbg,
.section-tag-on-dark {
  color: #bdbdbd;
}
.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
}
.interactive-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: #1976d2;
  transition: width 0.35s ease-in-out;
}
.interactive-underline.active::after,
.interactive-underline:hover::after {
  width: 100%;
}

/* --- LOGOS SLIDER --- */
.trusted-by-section {
  padding: 20px 0;
  background-color: #f8f9fa;
  overflow: hidden;
}
.logos-slider {
  width: 100%;
  position: relative;
}
.logos-track {
  display: flex;
  width: calc(12 * (150px + 60px));
  animation: scrollLogos 30s linear infinite;
}
.logo-item {
  flex-shrink: 0;
  width: 150px;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-item img {
  max-width: 100%;
  max-height: 50px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition:
    filter 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}
.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-6 * (150px + 60px)));
  }
}
.logos-track:hover {
  animation-play-state: paused;
}

/* --- ABOUT US SECTION --- */
.about-us-section {
  padding: 80px 0;
  background-color: #fff;
  overflow-x: hidden;
}
.about-us-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.about-text-content h2 {
  font-size: 2.8em;
  color: #1a237e;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text-content > p {
  font-size: 1.05em;
  color: #555;
  margin-bottom: 40px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.feature-item {
  text-align: left;
}
.feature-icon-wrapper {
  margin-bottom: 15px;
}
.feature-item .fa-solid {
  font-size: 2.5em;
  color: #6a1b9a;
}
.feature-item h3 {
  font-size: 1.3em;
  color: #1a237e;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
}
.feature-item p {
  font-size: 0.95em;
  color: #666;
}
.about-image-content {
  display: flex;
  flex-direction: column;
}
.about-image-collage {
  position: relative;
  margin-bottom: 30px;
  align-self: flex-start;
  max-width: 100%;
}
.about-image-collage .main-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;
}
.about-image-collage .overlay-image {
  position: absolute;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 3px solid white;
}
.about-image-collage .image-bottom-right {
  width: 55%;
  bottom: -50px;
  right: -20px;
  z-index: 1;
}
.learn-more-link {
  color: #1976d2;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-bottom: 5px;
  font-size: 1em;
  align-self: flex-start;
}
.learn-more-link i {
  transition: transform 0.3s ease;
}
.learn-more-link:hover i {
  transform: translateX(5px);
}

/* --- WHY CHOOSE US SECTION --- */
.why-choose-us-section.dark-theme {
  background-color:#087487;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);

}
.why-choose-us-section.dark-theme h2 {
  font-size: 2.8em;
  color: #ffffff;
  margin-bottom: 60px;
  line-height: 1.3;
  font-weight: 600;
}
.choose-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
  text-align: left;
}
.choose-us-card {
  background-color: #FDFBEE;
  padding: 35px 30px 40px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  color: #e0e0e0;
}
.choose-us-card:hover {
  background-color: #ffffff;
  color: #121230;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.card-bg-number {
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 5.5em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  z-index: 0;
  line-height: 1;
  transition: color 0.35s ease;
  user-select: none;
}
.choose-us-card:hover .card-bg-number {
  color: rgba(42, 40, 69, 0.06);
}
.card-content {
  position: relative;
  z-index: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.card-content h3 {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
  transition: color 0.35s ease;
}
.choose-us-card:hover .card-content h3 {
  color: #1a237e;
}
.card-content p {
  font-size: 0.95em;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
  opacity: 0.85;
}
.choose-us-card:hover .card-content p {
  color: #555770;
  opacity: 1;
}
.learn-more-card {
  color: #82b1ff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
  margin-top: auto;
  font-size: 0.9em;
  gap: 8px;
}
.choose-us-card:hover .learn-more-card {
  color: #2962ff;
}
.learn-more-card:hover .arrow-icon {
  transform: translateX(6px);
}
.card-icon-container {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  z-index: 0;
}
.card-icon-bg {
  width: 150px;
  height: 150px;
  background-color: #FDFBEE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -75px;
  right: -75px;
  transition: background-color 0.35s ease;
}
.choose-us-card:hover .card-icon-bg {
  background-color: #FE4F2D;
}
.card-icon-bg .fa-solid {
  font-size: 1.5em;
  color: #ffffff;
  transform: translate(-25px, -25px);
}

/* --- STATS SECTION --- */
.stats-section {
  padding: 0;
  overflow-x: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.stat-card {
  position: relative;
  padding: 40px 30px;
  color: #ffffff;
  background-color: #333;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
}
.stat-card.left-card {
  background-image: url("assets/stat-2.jpg");
}
.stat-card.right-card {
  background-image: url("assets/stat-1.jpg");
}
.stat-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.stat-card.left-card .stat-card-overlay {
  background-color: rgba(30, 40, 80, 0.75);
}
.stat-card.right-card .stat-card-overlay {
  background-color: rgba(50, 40, 90, 0.75);
}
.stat-card-content {
  position: relative;
  z-index: 2;
  max-width: 400px;
}
.stat-card.right-card .stat-card-content {
  margin-left: auto;
}
.stat-value {
  display: flex;
  align-items: baseline;
  margin-bottom: 5px;
}
.stat-number {
  font-size: 4.5em;
  font-weight: 700;
  line-height: 1;
}
.plus-sign {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1;
  margin-left: 6px;
}
.stat-card h3 {
  font-size: 1.5em;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 10px;
}
.stat-card p {
  font-size: 0.9em;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 350px;
}
.decorative-shape {
  position: absolute;
  width: 30%;
  max-width: 200px;
  height: 100%;
  top: 0;
  z-index: 2;
  opacity: 0.85;
}
.decorative-shape.shape-blue {
  background-color: #29b6f6;
  right: 0;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.decorative-shape.shape-purple {
  background-color: #7e57c2;
  left: 0;
  clip-path: polygon(0% 0%, 75% 0%, 100% 100%, 0% 100%);
}

/* --- OUR SERVICES SECTION --- */
.our-services-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.our-services-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}
.our-services-section .section-header > div:first-child {
  flex-grow: 1;
  min-width: 280px;
  text-align: left;
}
.our-services-section .section-header h2 {
  font-size: 2.8em;
  color: #1a237e;
  line-height: 1.25;
  font-weight: 700;
  margin: 0;
}
.btn.btn-primary-services {
  background-color: #023d59;
  color: #ffffff;
  padding: 12px 30px;
  font-size: 0.9em;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn.btn-primary-services:hover {
  background-color: #68bfea;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(3, 169, 244, 0.3);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 15px 0;
  transition: transform 0.3s ease;
}
.service-icon {
  flex-shrink: 0;
  margin-top: 5px;
}
.service-icon .fas {
  font-size: 2em;
  color: #6a1b9a;
  transition: color 0.3s ease;
  width: 40px;
  text-align: center;
}
.service-item:hover .service-icon .fas {
  color: #29b6f6;
}
.service-content h3 {
  font-size: 1.25em;
  color: #1a237e;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-content p {
  font-size: 0.95em;
  color: #555770;
  line-height: 1.65;
}

/* --- CTA SECTION --- */
.cta-section {
  position: relative;
  padding: 120px 0;
  background-color: #f0f4f8;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}
.cta-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/cta-1.jpg") center/cover no-repeat;
  z-index: 1;
}
.cta-container {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}
.cta-main-content {
  /* No specific styles needed here */
}
.cta-subheading {
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 15px;
  opacity: 0.9;
}
.cta-heading {
  font-size: 4em;
  font-weight: 5000;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: bold;
  color: rgb(200, 71, 24);
    
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}
.btn.btn-cta {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 14px 35px;
  font-weight: 600;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.btn.btn-cta:hover {
  background-color: #29b6f6;
  border-color: #29b6f6;
  transform: translateY(-2px);
}

/* --- PROJECTS INTRO SECTION --- */
.projects-intro-section {
  padding: 80px 0 70px;
  background-color: #ffffff;
}
.projects-intro-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.projects-intro-left {
  flex-basis: 45%;
}
.projects-intro-left h2 {
  font-size: 2.8em;
  color: #1a237e;
  line-height: 1.2;
  font-weight: 700;
}
.projects-intro-right {
  flex-basis: 50%;
}
.projects-intro-right p {
  font-size: 1.05em;
  color: #555770;
  line-height: 1.7;
  max-width: 500px;
}

/* --- TECHNOLOGY INDEX SECTION --- */
.tech-index-section {
  position: relative;
  padding: 100px 0;
  background-image: url("assets/tech-1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
}
.tech-index-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 35, 60, 0.7);
  z-index: 1;
}
.tech-index-container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.tech-index-header {
  margin-bottom: 60px;
}
.tech-index-header h2 {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}
.tech-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 15px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.tech-item:hover {
  background-color: rgba(41, 182, 246, 0.8);
  border-color: #29b6f6;
}
.tech-icon {
  margin-bottom: 15px;
}
.tech-icon .fas,
.tech-icon .fab {
  font-size: 2.8em;
  color: #ffffff;
}
.tech-name {
  font-size: 0.9em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.section-header-center {
  text-align: center;
  margin-bottom: 60px;
}
.section-header-center h2 {
  font-size: 2.6em;
  color: #1a237e;
  line-height: 1.2;
  font-weight: 700;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.testimonial-card {
  background-color: #ffffff;
  padding: 30px 35px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}
.testimonial-author {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  object-fit: cover;
  background-color: #e0e0e0;
}
.author-name {
  display: block;
  font-size: 1.15em;
  font-weight: 600;
  color: #1a237e;
}
.author-title {
  display: block;
  font-size: 0.9em;
  color: #555770;
}
.testimonial-quote p {
  font-size: 1.05em;
  color: #333;
  line-height: 1.7;
  font-style: italic;
}

/* --- PAGE BANNER SECTION (FOR INNER PAGES) --- */
.page-banner-section {
  position: relative;
  padding: 100px 0;
  min-height: 350px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url(assets/banner.jpg) no-repeat center center/cover;
  color: #ffffff;
  /* filter: brightness(0.5); */
}

.page-banner-section {
  position: relative;
  padding: 100px 0;
  min-height: 350px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url(assets/banner.jpg) no-repeat center center/cover;
  color: #ffffff;
}

/* Dark overlay to reduce brightness */
.page-banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* adjust brightness here */
  z-index: 1;
}

/* Keep content above overlay */
.page-banner-section > * {
  position: relative;
  z-index: 2;
}










.banner-content-container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.banner-text h1 {
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}
.banner-breadcrumbs {
  font-size: 0.9em;
  font-weight: 500;
}
.banner-breadcrumbs a {
  color: #bdbdbd;
  transition: color 0.3s ease;
}
.banner-breadcrumbs a:hover {
  color: #ffffff;
}
.breadcrumb-separator {
  margin: 0 10px;
  color: #757575;
  font-size: 0.8em;
}

/* --- OTHER PAGE SECTIONS (ABOUT, SERVICES, CONTACT) --- */
.what-we-offer-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  overflow-x: hidden;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: flex-start;
}
.offer-text-content h2 {
  font-size: 2.9em;
  color:#0097B2 ;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);

}
.offer-text-content p {
  font-size: 1.05em;
  color: #555770;
  margin-bottom: 20px;
}
.video-showcase-button {
  display: flex;
  align-items: center;
  color: #FE4F2D;
  gap: 15px;
  margin-top: 30px;
}
.play-button-wrapper {
  width: 70px;
  height: 70px;
  background-color: #0097B2;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  position: relative;
  transition: background-color 0.3s ease;
}
.play-button-wrapper:hover {
  background-color:#055766;
}
.play-icon-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(106, 27, 154, 0.5);
  border-radius: 50%;
  animation: pulseRing 2s infinite ease-out;
  opacity: 0;
}
.play-icon-ring:nth-child(1) {
  animation-delay: 0s;
}
.play-icon-ring:nth-child(2) {
  animation-delay: 0.6s;
}
.play-icon-ring:nth-child(3) {
  animation-delay: 1.2s;
}
@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.video-showcase-button span:not(.play-icon-ring) {
  font-weight: 600;
  color: #FE4F2D;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;

}

.what-we-offer-section {
  padding: 80px 0;
}

/* GRID LAYOUT */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT CONTENT */
.offer-text-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.offer-text-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* RIGHT IMAGE */
.offer-image-content{
  width: 100%;

}
.offer-image-content img {
  width: 70%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ✅ RESPONSIVE */
@media (max-width: 992px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-image-content {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .offer-text-content h2 {
    font-size: 2.2rem;
  }
}







/* 
.flip-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.flip-card {
  background-color: transparent;
  width: 50%;
  height: 250px;
  aspect-ratio: 4 / 3;
  perspective: 1000px;
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.7s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
}
.flip-card-front {
  background-color: #bbb;
  color: white;
  background-size: cover;
  background-position: center;
}
.flip-card-front::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  border-radius: 8px;
  z-index: 0;
}
.flip-card-front h3 {
  position: relative;
  z-index: 1;
  font-size: 1.3em;
  font-weight: 600;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.flip-card-back {
  background-color: #2a2845;
  color: white;
  transform: rotateY(180deg);
  justify-content: center;
  padding: 25px;
}
.flip-card-back h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}
.flip-card-back p {
  font-size: 0.9em;
  line-height: 1.5;
  opacity: 0.9;
} */





.what-we-do-section {
  position: relative;
  background-color: #1a1f36;
  color: #ffffff;
  padding-top: 80px;
  overflow: hidden;
}
.what-we-do-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding-bottom: 80px;
}
.what-we-do-image {
  position: relative;
  padding-left: 40px;
}
.what-we-do-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 10px;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.image-accent-shape {
  position: absolute;
  top: -30px;
  left: 0;
  width: 80%;
  height: calc(100% + 60px);
  background-color: #00bfff;
  border-radius: 10px;
  z-index: 0;
  transform: translateX(-15px) translateY(15px);
}
.what-we-do-text h2 {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 25px;
}
.small-icon-boxes {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.icon-box {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
  cursor: pointer;
}
.icon-box:hover {
  background-color: #29b6f6;
  border-color: #29b6f6;
}
.icon-box .fas,
.icon-box .far,
.icon-box .fab {
  font-size: 1.6em;
  color: #ffffff;
}
.what-we-do-text p {
  font-size: 1em;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 30px;
  max-width: 500px;
}
.learn-more-link-darkbg {
  color: #64b5f6;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.learn-more-link-darkbg:hover {
  color: #ffffff;
}
.learn-more-link-darkbg i {
  transition: transform 0.3s ease;
}
.learn-more-link-darkbg:hover i {
  transform: translateX(5px);
}
.animated-stats-bar {
  background: linear-gradient(90deg, #007ea8 0%, #532082 100%);
  padding: 40px 0;
  color: #ffffff;
}
.stats-bar-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item {
  text-align: center;
  min-width: 200px;
  flex: 1;
}
.stat-number-large {
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}
.plus-suffix-large {
  font-size: 2em;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  vertical-align: super;
  margin-left: 3px;
}
.stat-item p {
  font-size: 0.9em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 5px;
  opacity: 0.9;
}

.tech-trends-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  overflow-x: hidden;
}
.tech-trends-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.tech-trends-text h2 {
  font-size: 2.8em;
  color: #1a237e;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 25px;
}
.tech-trends-text > p {
  font-size: 1.05em;
  color: #555770;
  margin-bottom: 40px;
  max-width: 500px;
}
.skills-progress-bars {
  margin-top: 30px;
}
.skill-item {
  margin-bottom: 25px;
}
.skill-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.skill-name {
  font-size: 0.9em;
  font-weight: 600;
  color: #1a237e;
  text-transform: uppercase;
}
.skill-percentage {
  font-size: 0.9em;
  font-weight: 600;
  color: #333;
}
.progress-bar-bg {
  width: 100%;
  height: 8px;
  background-color: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background-color: #29b6f6;
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 0;
}
.tech-trends-image {
  position: relative;
  text-align: center;
}
.tech-trends-image img {
  max-width: 100%;
  height: auto;
  max-height: 450px;
}

.contact-us-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.contact-info-left h2 {
  font-size: 2.7em;
  color: #0097B2;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact-info-left > p {
  font-size: 1.05em;
  color: #555770;
  margin-bottom: 40px;
  line-height: 1.7;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background-color: #e3f2fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-icon .fas {
  font-size: 1.3em;
  color: orangered;
}
.contact-detail-text h4 {
  font-size: 1.1em;
  font-weight: 600;
   color: #0097B2;

  margin-bottom: 5px;
}
.contact-detail-text p {
  font-size: 0.95em;
  color: #555770;
  line-height: 1.5;
}
.contact-detail-text p a {
  color: #0097B2;
  transition: color 0.3s ease;
}
.contact-detail-text p a:hover {
  color: #043a43;
  text-decoration: underline;
}

.contact-form-right {
  background: #0097B2;
  color: #ffffff;
  padding: 40px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
.contact-form-right h3 {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 10px;
}
.form-note {
  font-size: 0.90em;
  /* opacity: 0.8; */
  margin-bottom: 30px;
  color: #FE4F2D;
}
.form-group {
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.95em;
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.btn.btn-contact-submit {
  background-color: #ffffff;
  color: #0097B2;
  padding: 14px 30px;
  border: none;
  font-weight: 600;
  font-size: 0.95em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.btn.btn-contact-submit:hover {
  background-color: #f0f0f0;
  color:#093e47;
  transform: translateY(-2px);
}

.map-section {
  width: 100%;
  height: 500px;
}
.map-container,
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.partnership-cta-section {
  position: relative;
  /* background: url("assets/partern-1.jpeg") no-repeat center center/cover; */
  padding: 120px 0;
  color: #ffffff;
  text-align: center;
}
.cta-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 30, 55, 0.75);
  z-index: 1;
}
.cta-text-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.cta-intro-text {
  font-size: 1.1em;
  font-weight: 400;
  margin-bottom: 15px;
  opacity: 0.85;
  line-height: 1.5;
}
.cta-primary-heading {
  font-size: 3.2em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 35px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.btn.btn-cta-banner {
  background-color: #29b6f6;
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  font-weight: 600;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(41, 182, 246, 0.3);
}
.btn.btn-cta-banner:hover {
  background-color: #03a9f4;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 20px rgba(3, 169, 244, 0.4);
}

.portfolio-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.portfolio-description {
  font-size: 1.05em;
  color: #555770;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px auto;
}
.portfolio-filters {
  text-align: center;
  margin-bottom: 50px;
}
.filter-btn {
  background-color: transparent;
  border: none;
  color: #333;
  font-size: 1em;
  font-weight: 500;
  padding: 8px 18px;
  margin: 0 8px;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  outline: none;
}
.filter-btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background-color: #6a1b9a;
  transition: width 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
  color: #6a1b9a;
}
.filter-btn.active::after {
  width: 70%;
}
.portfolio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 3;
}
.gallery-item.hide {
  display: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.pricing-plans-section {
  padding: 80px 0;
  background-color: #f0f4f8;
}
.pricing-section-header {
  text-align: left;
  margin-bottom: 60px;
  max-width: 700px;
}
.pricing-section-header h2 {
  font-size: 3.5em;
  color: #0097B2;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}
.pricing-section-header p {
  font-size: 1.05em;
  color: #555770;
  line-height: 1.7;

}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.pricing-card img{
    /* border-radius: 40px; */
}
.pricing-card {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 35px 30px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #0097B2;
}
.card-decoration-icon {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 100px;
  height: 100px;
  color: white;
  background-color:#FE4F2D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
  transition: all 0.35s ease;
  z-index: 0;
}
.pricing-card:hover .card-decoration-icon {
  opacity: 0.8;
}
.card-decoration-icon .fa-solid {
  font-size: 1.8em;
  color: #ffffff;
  transform: translate(-15px, 15px);
}
.pricing-card h3 {
  font-size: 1.6em;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.price {
  font-size: 2.8em;
  
  font-weight: 700;
  color: #0097B2;
  margin-bottom: 5px;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.price .price-suffix {
  font-size: 0.5em;
  font-weight: 600;
  vertical-align: super;
}
.package-label {
  font-size: 0.9em;
  color: #FE4F2D;
  
  margin-bottom: 25px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 25px;
  position: relative;
  z-index: 1;
}
.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.features-list li {
  font-size: 0.95em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #333;
}
.features-list li .fas {
  color:white;
  margin-right: 10px;
  font-size: 1.1em;
}
.btn.btn-choose-plan {
  background-color: #087487;
  color: #ffffff;
  padding: 12px 25px;
  text-transform: uppercase;
  font-size: 0.9em;
  letter-spacing: 0.5px;
  width: 100%;
  margin-top: auto;
  position: relative;
  z-index: 1;
  border: 2px solid #087487;
  transition: all 0.3s ease;
}
.btn.btn-choose-plan:hover {
  background-color: #ffffff;
  color: #087487;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0s linear 0.3s;
  padding: 15px;
}
.modal-overlay.show {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.modal-content {
  background: #FDFBEE;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 100%;
  max-width: 500px;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  color: #333;
}
.modal-overlay.show .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.close-modal-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
  transition: color 0.2s ease;
  z-index: 10;
}
.close-modal-btn:hover {
  color: #333;
}
.order-modal-content h3 {
  font-size: 1.8em;
  color:#0097B2;
  margin-bottom: 8px;
  text-align: center;
}
.order-modal-content #selectedPlanNameModal {
  font-weight: 700;
  color: #29b6f6;
}
.order-modal-content .form-note {
  font-size: 0.85em;
  color: #FE4F2D;
  text-align: center;
  margin-bottom: 25px;
}
#planOrderForm .form-group-order {
  margin-bottom: 18px;
}
#planOrderForm label {
  display: block;
  font-size: 0.9em;
  font-weight: 500;
  color: #444;
  margin-bottom: 6px;
}
#planOrderForm input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  color: #333;
  transition: all 0.3s ease;
}
#planOrderForm input:focus {
  outline: none;
  border-color: #087487;
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}
.btn.btn-submit-order {
  background-color:#087487;
  color: #ffffff;
  padding: 12px 25px;
  text-transform: uppercase;
  font-size: 0.95em;
  letter-spacing: 0.5px;
  width: 100%;
  margin-top: 10px;
  border: none;
}
.btn.btn-submit-order:hover {
  background-color:#087487;
  transform: translateY(-2px);
}

/* --- FOOTER --- */
.site-footer-darkblue {
  background-color:#087487;
  color: #ffffff;
  padding: 60px 0 40px;
  font-size: 14px;
}
.footer-top-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-newsletter {
  flex: 1.5;
  max-width: 450px;
}
.footer-newsletter h3 {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  font-size: 1.9em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 25px;
}
.newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 10px;
}
.newsletter-form input[type="email"] {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1em;
  padding: 8px 0;
  outline: none;
}
.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.newsletter-form button {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-form button:hover {
  background-color: #ffffff;
  color: #002266;
}
.footer-nav-columns {
  display: flex;
  flex: 2;
  justify-content: space-around;
  gap: 30px;
}
.footer-nav-col h4 {
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #a8c9f5;
  letter-spacing: 0.5px;
}
.footer-nav-col ul li {
  margin-bottom: 10px;
}
.footer-nav-col ul li a {
  color: #e0efff;
  font-size: 0.95em;
  transition: color 0.3s ease;
}
.footer-nav-col ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.payment-methods-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
} /* Added flex-wrap */
.payment-methods-inline img {
  height: 28px;
  background: white;
  border-radius: 3px;
  padding: 2px;
}
.copyright-text-inline {
  font-size: 0.85em;
  color: #a8c9f5;
}

/* --- SCROLL TO TOP BUTTON --- */
#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  border: none;
  outline: none;
  background-color:#FE4F2D;
  color: white;
  cursor: pointer;
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
#scrollToTopBtn.visible {
  display: block;
  opacity: 1;
  visibility: visible;
}
#scrollToTopBtn:hover {
  background-color: #7c2514;
}

/* --- ANIMATION HELPERS --- */
.animate-on-scroll {
  opacity: 0;
  transition:
    opacity 0.7s ease-out,
    transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-in-left {
  transform: translateX(-50px);
}
.slide-in-right {
  transform: translateX(50px);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.animate-text-group .animate-text-item,
.animate-text {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.animate-on-scroll-group.is-visible .animate-text,
.animate-text-group.is-visible .animate-text-item {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll-group.is-visible .animate-text:nth-child(2),
.animate-text-group.is-visible .animate-text-item:nth-child(2) {
  transition-delay: 0.2s;
}
.animate-on-scroll-group.is-visible .animate-text:nth-child(3),
.animate-text-group.is-visible .animate-text-item:nth-child(3) {
  transition-delay: 0.4s;
}

/*
==============================================
    RESPONSIVE MEDIA QUERIES
==============================================
*/

/* --- TABLET VIEW (e.g., iPads) --- */
@media (max-width: 992px) {
  .container {
    padding: 0 30px;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }

  .hero-slide-item .hero-content {
    padding: 0 30px;
    margin-left: 0;
  }
  .hero-slide-item .hero-content .main-heading {
    font-size: 2.8em;
  }
  .hero-slide-item .hero-content .description {
    font-size: 1.1em;
  }

  .about-us-grid,
  .projects-intro-content,
  .offer-grid,
  .what-we-do-grid,
  .tech-trends-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-text-content h2,
  .why-choose-us-section.dark-theme h2,
  .our-services-section .section-header h2,
  .projects-intro-left h2,
  .tech-index-header h2,
  .section-header-center h2,
  .page-banner-section .banner-text h1,
  .offer-text-content h2,
  .what-we-do-text h2,
  .tech-trends-text h2,
  .contact-info-left h2,
  .pricing-section-header h2,
  .cta-primary-heading,
  .cta-heading {
    font-size: 2.4em;
  }

  .about-image-content {
    align-items: center;
  }
  .about-image-collage {
    margin-top: 30px;
  }
  .learn-more-link {
    align-self: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-card.right-card .stat-card-content {
    margin-left: 0;
  }

  .projects-intro-left,
  .projects-intro-right p,
  .what-we-do-text,
  .tech-trends-text > p {
    margin: 0 auto;
    text-align: left;
  }
  .projects-intro-content,
  .offer-grid,
  .what-we-do-grid,
  .tech-trends-grid {
    align-items: flex-start;
    text-align: left;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-newsletter {
    max-width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .footer-bottom-row {
    justify-content: center;
    text-align: center;
  }
  .copyright-text-inline {
    order: 2;
  }
  .footer-copyright-payment {
    order: 1;
  }

  .what-we-do-image {
    padding: 0;
    margin: 0 auto 40px auto;
  }
  .image-accent-shape,
  .about-image-collage .overlay-image {
    display: none;
  } /* Hide elements causing overflow */
  .small-icon-boxes,
  .video-showcase-button {
    justify-content: center;
  }
  .tech-trends-image {
    order: -1;
    margin-bottom: 30px;
  }

  .pricing-section-header {
    text-align: center;
  }
}

/* --- MOBILE LANDSCAPE & SMALL TABLETS --- */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .container {
    padding: 0 15px;
  }
  .top-bar {
    display: none;
  }
  .logo img {
    height: 120px;
  }

  .hero-slider-wrapper {
    height: 80vh;
  }
  .hero-slide-item .hero-content .main-heading {
    font-size: 2.2em;
  }
  .hero-slide-item .hero-content .description {
    font-size: 1em;
  }
  .btn.btn-hero {
    padding: 12px 25px;
    font-size: 1em;
  }

  .about-us-section,
  .our-services-section,
  .testimonials-section,
  .portfolio-section,
  .contact-us-section,
  .pricing-plans-section {
    padding: 60px 0;
  }
  .about-text-content h2,
  .why-choose-us-section.dark-theme h2,
  .our-services-section .section-header h2,
  .projects-intro-left h2,
  .tech-index-header h2,
  .section-header-center h2,
  .page-banner-section .banner-text h1,
  .offer-text-content h2,
  .what-we-do-text h2,
  .tech-trends-text h2,
  .contact-info-left h2,
  .pricing-section-header h2,
  .cta-primary-heading,
  .cta-heading {
    font-size: 2em;
  }

  .features-grid,
  .choose-us-grid {
    grid-template-columns: 1fr;
  }
  .our-services-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 40px;
  }
  .btn.btn-primary-services {
    align-self: flex-start;
    margin-top: 15px;
  }

  .cta-section {
    padding: 80px 0;
  }
  .tech-index-section {
    background-attachment: scroll;
    padding: 80px 0;
  }
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .banner-content-container {
    flex-direction: column;
    text-align: center;
  }
  .banner-text h1 {
    margin-bottom: 15px;
  }

  .flip-card-grid {
    grid-template-columns: 1fr;
  }
  .flip-card {
    min-height: 200px;
    aspect-ratio: 16/9;
  }

  .stats-bar-container {
    flex-direction: column;
    gap: 30px;
  }
  .map-section {
    height: 400px;
  }

  .portfolio-filters {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer-nav-columns {
    flex-direction: column;
    gap: 20px;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
  }
  .decorative-shape {
    display: none;
  } /* Hide decorative shapes on mobile */
}

/* --- MOBILE PORTRAIT --- */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  .logo img {
    height: 100px;
  }
  body.scrolled .main-nav .logo img {
    height: 90px !important;
  }

  .hero-slider-wrapper {
    height: 70vh;
  }
  .hero-slide-item .hero-content {
    padding: 0 15px;
  }
  .hero-slide-item .hero-content .main-heading {
    font-size: 1.8em;
  }
  .hero-slide-item .hero-content .description {
    display: none;
  }

  .about-text-content h2,
  .why-choose-us-section.dark-theme h2,
  .our-services-section .section-header h2,
  .projects-intro-left h2,
  .tech-index-header h2,
  .section-header-center h2,
  .page-banner-section .banner-text h1,
  .offer-text-content h2,
  .what-we-do-text h2,
  .tech-trends-text h2,
  .contact-info-left h2,
  .pricing-section-header h2,
  .cta-primary-heading,
  .cta-heading {
    font-size: 1.8em;
  }

  .service-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .cta-section,
  .partnership-cta-section {
    padding: 60px 0;
  }
  .cta-heading,
  .cta-primary-heading {
    margin-bottom: 20px;
  }

  .tech-grid {
    gap: 5px;
  }
  .tech-item {
    padding: 15px 5px;
  }

  .contact-detail-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .contact-form-right {
    padding: 30px 20px;
  }

  .map-section {
    height: 300px;
  }

  .footer-newsletter h3 {
    font-size: 1.5em;
  }
  .payment-methods-inline img {
    height: 22px;
  }
}
