/* Base Styles */
:root {
  --primary-color: #ff7e00;
  --secondary-color: #343b6d;
  --text-color: #333;
  --light-text: #fff;
  --dark-text: #222;
  --gray-bg: #f5f5f5;
  --light-gray: #ddd;
  --dark-gray: #888;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 80px 0;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: rgb(17, 3, 84);
  color: rgb(251, 251, 252);
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgb(17, 3, 84);
  transition: var(--transition);
}

.btn:hover {
  background-color: transparent;
  color: rgb(20, 20, 18);
}

.btn-large {
  padding: 15px 35px;
  font-size: 1.1rem;
}

.btn-small {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-service {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--secondary-color);
  color: var(--light-text);
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-top: 15px;
}

.btn-service:hover {
  background-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .btn {
    padding: 10px 22px;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .btn-small {
    padding: 6px 15px;
    font-size: 0.75rem;
  }

  .btn-service {
    padding: 6px 15px;
    font-size: 0.8rem;
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .btn-large {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .btn-small {
    padding: 5px 12px;
    font-size: 0.7rem;
  }

  .btn-service {
    padding: 5px 12px;
    font-size: 0.7rem;
    margin-top: 10px;
  }
}


.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-header p {
  font-size: 1.1rem;
  color: rgb(21, 1, 40);
  max-width: 700px;
  margin: 0 auto;
}

.section-header.light h2,
.section-header.light p {
  color: var(--light-text);
}

.section-header.light h2::after {
  background-color: var(--light-text);
}

.section-footer {
  text-align: center;
  margin-top: 40px;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: var(--shadow);
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  margin-right: 0;
  /* Remove spacing to the right */
  margin-left: 0;
  /* Ensure no left spacing */
}

.navbar {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
}

.nav-item {
  margin-left: 30px;
  position: relative;
}

.nav-link {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-color);
  padding: 10px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

/* Adjust dropdown menu positioning and layout */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 75%;
  transform: translateX(-75%);
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 1100px;
  padding: 10px 10px;
  display: none;
  z-index: 999;
  border-radius: 10px;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.dropdown-column {
  flex: 1 1 20%;
  /* 4 columns with spacing */
  padding: 0 10px;
}

.dropdown-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-column ul li {
  margin-bottom: 5px;
  border-bottom: 1px dotted #ddd;
  padding-bottom: 4px;
}

.dropdown-column ul li:last-child {
  border-bottom: none;
}

.dropdown-column ul li a {
  display: flex;
  align-items: center;
  font-size: 0.80rem;
  font-weight: 70px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-column ul li a:hover {
  color: rgb(255, 140, 0);
  padding-left: 5px;
}

.dropdown-column ul li a i {
  margin-right: 10px;
  color: rgb(255, 140, 0);
}

/* Responsive */
@media (max-width: 992px) {
  .dropdown-menu {
    width: 100%;
    left: 0;
    transform: none;
    border-radius: 0;

    /* 👇 Added for scrolling */
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .dropdown-columns {
    flex-direction: column;
  }

  .dropdown-column {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}

/* hamburger menu styles */
.hamburger {
  cursor: pointer;
  display: none;
  /* hide on desktop */
  flex-direction: column;
  gap: 5px;
  z-index: 1000;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: 0.4s;
}

.hamburger .close {
  font-size: 30px;
  color: #333;
  display: none;
}

.bar.hide {
  display: none;
}

.close.show {
  display: block;
}


@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
    box-shadow: var(--shadow);
    display: none;
    /* hidden by default */
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-item {
    margin: 0;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 10px 0;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: 10px 0;
    border-radius: 0;
  }

  .dropdown-columns {
    flex-direction: column;
  }

  .dropdown-column {
    padding: 10px 0;
    border: none;
  }

  .dropdown-column h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    padding-bottom: 5px;
  }
}


/* Hero Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 650px;
  /* Full viewport height */
  max-height: 1000px;
  /* Optional: limit height on very large screens */
  min-height: 400px;
  /* Optional: ensure it's not too small on tiny screens */
}

.slider-container {
  width: 100%;
  height: 120%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--light-text);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide-1 {
  background-image: url('img/banner1.jpeg');
}

.slide-2 {
  background-image: url('img/banner2.jpg');
}

.slide-3 {
  background-image: url('img/banner3.jpeg');
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  flex: 1;
  padding: 50px;
  max-width: 600px;

}

.slide-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: rgb(24, 1, 19);
   text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgb(40, 2, 40);
}

.slide-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 50px;
}

.slide-image img {
  width: 500px;
  height: 100%;
  object-fit: cover;
  margin-left: 30px;
}

.slider-controls {
  display: none;
  /* <-- Hide the whole controls div if you don't need it */
}

.slide-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  /* Add gap between dots */
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(103, 94, 94, 0.5);
  cursor: pointer;
  transition: 0.3s ease;
  /* Direct value instead of var() */
}

.dot.active {
  background-color: rgba(30, 26, 26, 0.141);
  transform: scale(1.2);
}

/* Responsive layout for dots */
@media (max-width: 768px) {
  .slide-dots {
    bottom: 20px;
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .slide-dots {
    bottom: 15px;
    gap: 6px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1024px) {
  .hero-slider {
    height: 700px;
    /* increased height */
  }

  .slide-content {
    padding: 25px;
    max-width: 450px;
  }

  .slide-content h1 {
    font-size: 2.3rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slide-image {
    margin-right: 15px;
  }

  .slide-image img {
    max-width: 90%;
    max-height: 300px;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 600px;
    /* increased height */
  }

  .slide {
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
    padding: 0 10px;
  }

  .slide-content,
  .slide-image {
    flex: unset;
    width: 100%;
    padding: 15px 0 0 0;
    margin: 0 auto;
  }

  .slide-content h1 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slide-image img {
    width: 70%;
    max-height: 250px;
    margin: 0 auto;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 550px;
    /* increased height */
  }

  .slide-content h1 {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .slide-image img {
    width: 60%;
    max-height: 200px;
    margin: 0 auto;
    object-fit: contain;
  }

  .dot {
    width: 8px;
    height: 8px;

  }
}


/* Services Section */
#services {
  background-image: linear-gradient(to right, #FAF1E6, #FDFAF6);
}

#services .section-header p {
  color: #1a0116;

}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-image: linear-gradient(to top, #fffffea7, #ffcf8bcc);
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(13, 13, 13, 0.231);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 80px;
  height: 80px;
  color: var(--light-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.service-icon img.icon-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}


.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--dark-gray);
  margin-bottom: 20px;
}

/* Technologies Section */
.technologies {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #040222;
}

.section-header p {
  color: #040222;
  margin-bottom: 40px;
}

/* Marquee Track */
.technologies-marquee {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Each Item */
.marquee-item {
  flex: 0 0 auto;
  width: 160px;
  margin: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.marquee-item img {
  max-width: 100%;
  max-height: 80px;
  transition: transform 0.3s ease;
}

.marquee-item:hover img {
  transform: scale(1.1);
}

.marquee-item p {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #150101;
}

/* Responsive */
@media (max-width: 768px) {
  .marquee-item {
    width: 120px;
  }

  .marquee-item img {
    max-height: 60px;
  }
}

@media (max-width: 576px) {
  .marquee-item {
    width: 100px;
  }

  .marquee-item img {
    max-height: 50px;
  }
}


/* Hiring Section */
/* Hiring Section - Balanced Version */
.hiring {
  position: relative;
  background-image: url('img/hiring.jpg');
  background-size: cover;
  background-position: center;
  color: var(--dark-text);
  padding: 40px 0;
  /* Increased from 30px */
  z-index: 1;
}

.hiring::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(196, 111, 7, 0.373);
  z-index: -1;
}

.hiring-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  /* Increased from 15px */
  margin-top: 15px;
  /* Increased from 10px */
}

.hiring-text {
  flex: 1;
  min-width: 280px;
  padding-right: 20px;
  /* Increased from 15px */
}

.hiring-text h3 {
  font-size: 1.5rem;
  /* Increased from 1.3rem */
  margin-bottom: 15px;
  /* Increased from 10px */
}

.hiring-text p {
  font-size: 1rem;
  /* Increased from 0.9rem */
  line-height: 1.5;
  /* Increased from 1.35 */
  margin-bottom: 15px;
  /* Increased from 12px */
}

.hiring-positions {
  margin: 15px 0;
  /* Increased from 10px */
  padding-left: 0;
  list-style: none;
}

.hiring-positions li {
  margin-bottom: 8px;
  /* Increased from 6px */
  font-size: 1rem;
  /* Increased from 0.9rem */
  display: flex;
  align-items: center;
}

.hiring-positions li i {
  margin-right: 8px;
  /* Increased from 6px */
  font-size: 1rem;
  /* Increased from 0.9rem */
}

/* Scoped button styles */
.hiring .btn {
  padding: 8px 20px;
  /* Increased from 6px 16px */
  font-size: 0.95rem;
  /* Increased from 0.85rem */
  margin-top: 12px;
  /* Increased from 8px */
  display: inline-block;
  background-color: #021a33;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Section Header */
.section-header.light h2 {
  font-size: 2rem;
  /* Increased from 1.8rem */
  margin-bottom: 8px;
  /* Increased from 5px */
  color: rgb(3, 3, 95);
}

.section-header.light h2::after {
  height: 4px;
  /* Increased from 3px */
  margin-top: 10px;
  /* Increased from 6px */
  width: 70px;
  /* Added for better proportion */
  background: rgb(3, 3, 95);
  ;
}

.section-header.light p {
  font-size: 1rem;
  /* Increased from 0.9rem */
  margin-top: 5px;
  /* Increased from 2px */
  color: rgb(3, 3, 95);
}

/* Image container */
.hiring-image {
  flex: 1;
  min-width: 280px;
}

.hiring-image img {
  max-height: 350px;
  /* Increased size */
  width: 100%;
  /* Let it scale to the container's width */
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hiring {
    padding: 30px 0;
    /* Increased from 25px */
  }

  .hiring-image img {
    max-height: 220px;
    /* Increased from 180px */
  }
}

/* Industries Section */
.industries {
  background: #f8f7f770;
}

.industries .section-header p {
  color: #26012b;
  /* You can change this to any color code you like */
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 250px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.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: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.flip-card-front {
  background-color: var(--light-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.industry-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.flip-card-front h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.flip-card-back {
  background-color: var(--secondary-color);
  color: var(--light-text);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.flip-card-back h3 {
  margin-bottom: 15px;
}

.flip-card-back p {
  margin-bottom: 20px;
}

/* Web Development Services */

.web-dev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.web-dev-card {
  background-color: var(--light-text);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.web-dev-card:hover {
  transform: translateY(-10px);
}

.web-dev-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.web-dev-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Why Choose Us Section */
 .why-choose-us {
        background: linear-gradient(to right, #e78a48a1, #f2bf78a7, #faf7e6b0);
        padding: 80px 0;
    }

    .why-choose-us-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }

    .why-choose-us-text {
        flex: 1;
        min-width: 300px;
        max-width: 600px;
    }

    .why-choose-us-text h2 {
        font-size: 2.5rem;
        color: var(--secondary-color);
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .why-choose-us-text p {
        font-size: 1.1rem;
        color: #333;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .benefits-list {
        margin: 30px 0;
        padding: 0;
        list-style: none;
    }

    .benefits-list li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        font-size: 1rem;
        color: #222;
        line-height: 1.5;
    }

    .benefits-list li i {
        color: var(--primary-color);
        margin-right: 12px;
        font-size: 1.1rem;
        margin-top: 3px;
        flex-shrink: 0;
    }

    .why-choose-us-image {
        flex: 1;
        min-width: 300px;
        max-width: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .why-choose-us-image img {
        width: 100%;
        max-width: 500px;
        height: auto;
        border-radius: 12px;
        /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
        transition: transform 0.3s ease;
    }

    .why-choose-us-image img:hover {
        transform: scale(1.02);
    }

    .why-choose-us .btn {
        margin-top: 20px;
        display: inline-block;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .why-choose-us-content {
            flex-direction: column;
            gap: 40px;
        }
        
        .why-choose-us-text,
        .why-choose-us-image {
            max-width: 100%;
            text-align: center;
        }
        
        .benefits-list li {
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .why-choose-us {
            padding: 60px 20px;
        }
        
        .why-choose-us-text h2 {
            font-size: 2rem;
        }
        
        .benefits-list li {
            font-size: 0.95rem;
            text-align: left;
            justify-content: flex-start;
        }
    }

    @media (max-width: 480px) {
        .why-choose-us-text h2 {
            font-size: 1.8rem;
        }
        
        .why-choose-us-text p {
            font-size: 1rem;
        }
    }

/* Process Section */
.process .section-header p {
  color: #030124;
  /* You can change this to any color code you like */
}

.process-timeline {
  position: relative;
  padding: 20px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  height: 100%;
  width: 2px;
  background-color: #eee;
  z-index: -1;
}

.process-step {
  display: flex;
  margin-bottom: 30px;
  align-items: flex-start;
}

.process-number {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFA725;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
}

.process-content {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex: 1;
}

/* Responsive Design for Process Section */
@media (max-width: 768px) {
  .process-timeline::before {
    left: 20px;
    /* Adjust the timeline line position */
  }

  .process-step {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-bottom: 10px;
    /* Space between number and content */
  }

  .process-content {
    width: 100%;
    /* Ensure content takes full width */
    padding: 15px;
  }

  /* Adjust padding and margin for mobile */
  .process-timeline {
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .process-content {
    padding: 10px;
  }

  .process-step {
    margin-bottom: 15px;
  }
}

/* Portfolio Section */
/* General Responsive Styles */
@media screen and (max-width: 1200px) {
  .container {
    width: 90%;
    max-width: 1100px;
  }
}

@media screen and (max-width: 992px) {
  .container {
    width: 95%;
  }

  section {
    padding: 60px 0;
  }
}

@media screen and (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 16px;
  }
}

/* Portfolio Section Responsive Styles */
.portfolio .section-header p {
  color: #02011c;
  /* You can change this to any color code you like */
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.portfolio-filter {
  margin: 5px;
  padding: 8px 20px;
  border: none;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-filter.active {
  background-color: #0066cc;
  color: white;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  text-align: center;
  color: white;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.portfolio-overlay p {
  margin-bottom: 15px;
  font-size: 14px;
}

.btn-small {
  padding: 8px 15px;
  background-color: #0066cc;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.btn-small:hover {
  background-color: #0055aa;
}

@media screen and (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-filters {
    flex-direction: column;
    align-items: center;
  }

  .portfolio-filter {
    width: 80%;
    margin: 5px 0;
  }
}

.reviews {
  background: #fbfbfb;
  padding: 30px 10px;
  /* reduced top/bottom and side padding */
}

.reviews .section-header h2 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  text-align: center;
}

.reviews .section-header p {
  color: #040324;
  font-size: 0.9rem;
  margin-bottom: 15px;
  text-align: center;
}

.reviews-slider {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  /* reduced width */
  margin: 0 auto;
}

.review-slide {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.review-slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.review-content {
  background-color: #fff;
  border-radius: 8px;
  padding: 18px;
  /* reduced padding */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  margin: 12px;
}

.review-rating {
  color: #ffcc00;
  margin-bottom: 8px;
  font-size: 16px;
}

.review-text {
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.4;
  font-size: 0.9rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
}

.reviewer-info img {
  width: 45px;
  /* reduced size */
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.reviewer-details h4 {
  margin: 0;
  font-size: 0.95rem;
}

.reviewer-details p {
  margin: 2px 0 0;
  color: #777;
  font-size: 0.8rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.prev-review,
.next-review {
  background-color: #0066cc;
  color: white;
  width: 30px;
  height: 30px;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  margin: 0 8px;
}

.review-dots {
  display: flex;
  align-items: center;
}

.review-dot {
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
}

.review-dot.active {
  background-color: #0066cc;
}

@media screen and (max-width: 768px) {
  .review-content {
    padding: 14px;
    margin: 8px;
  }

  .review-text {
    font-size: 0.85rem;
  }

  .reviewer-info img {
    width: 40px;
    height: 40px;
  }

  .reviewer-details h4 {
    font-size: 0.9rem;
  }

  .reviewer-details p {
    font-size: 0.75rem;
  }
}

/* Clients Section Responsive Styles */
.clients .section-header p {
  color: #040222;
  /* You can change this to any color code you like */
}
.clients-marquee {
  overflow: hidden;
  background-color: #f9f9f9;
  padding: 20px 0;
}

.marquee-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: scroll-marquee 20s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 10px;
}

.client-logo {
  flex: 0 0 200px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  width: 100%;
  max-width: 120px;
  max-height: 80px;
  transition: transform 0.3s ease;
}

.client-logo:hover img {
  transform: scale(1.1);
}

/* Animation */
@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .client-logo {
    flex: 0 0 150px;
    margin: 0 15px;
  }

  .client-logo img {
    max-width: 100px;
    max-height: 60px;
  }
}

@media screen and (max-width: 576px) {
  .client-logo {
    flex: 0 0 120px;
    margin: 0 10px;
  }

  .client-logo img {
    max-width: 80px;
    max-height: 50px;
  }
}


/* CTA Section Responsive Styles */
.cta {
  background: linear-gradient(to bottom, #FF9F00, #ff9a03, #fdd198);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-large {
  padding: 15px 30px;
  background-color: white;
  color: #d04500;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-large:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .cta {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }
}

@media screen and (max-width: 576px) {
  .cta-content h2 {
    font-size: 24px;
  }

  .cta-content p {
    font-size: 14px;
  }

  .btn-large {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/*About section**/

.hero-about {
  background: linear-gradient(to top, #ffb300f2, #ffffff);

}

/*story */
.aboutservices-section .section-header p {
  color: #17000f;
}

.about-content {
  padding: 80px 0;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  color: var(--primary-color);
}

.about-content h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.about-story-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.hero-about .about-banner-img {
  width: 700px;
  /* or your desired size */
  height: auto;
  object-fit: cover;
  margin-left: 30px;
}

.about-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .about-content h2 {
    font-size: 30px;
  }

  .about-story {
    gap: 30px;
  }

  .about-story-content p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .about-story {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-story-content {
    order: 2;
  }

  .about-image {
    order: 1;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .about-content h2 {
    font-size: 26px;
    text-align: center;
  }

  .about-content h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .about-content {
    padding: 50px 0;
  }

  .about-content h2 {
    font-size: 22px;
  }

  .about-story-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}


/*our Dna*/
.our-dna {
  background-color: #FAD59A;
  padding: 80px 0;
}

.our-dna-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.our-dna h2 {
  font-size: 36px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  color: var(--primary-color);
  display: inline-block;
}

.our-dna h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.our-dna p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* about service section*/
.services-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  color: var(--primary-color);
}

.section-header h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

/* .section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--light-text);
  ;
} */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  padding: 30px 20px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.service-icon img {
  width: 100%;
  height: auto;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/*working process*/
.timeline {
  text-align: center;
}

.timeline-title {
  font-size: 28px;
  margin-bottom: 40px;
  color: #333;
}

.timeline-title span {
  color: #f29d09;
}

.timeline-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.timeline-item {
  background: linear-gradient(135deg, #f6aa68, #f24a4a);
  padding: 30px 20px;
  border-radius: 50%;
  width: 230px;
  height: 230px;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.timeline-item:hover {
  transform: translateY(-10px);
}

.timeline-circle {
  position: relative;
}

.timeline-icon {
  font-size: 39px;
  margin-bottom: 10px;
}

.timeline-number {
  position: absolute;
  top: -30px;
  right: -30px;
  background: #fff;
  color: #333;
  width: 40px;
  height: 40px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.timeline-item h3 {
  margin-top: 3px;
  font-size: 20px;
  font-family: "Comic Neue", cursive;
  font-weight: 700;
  ;
}

.timeline-item p {
  font-size: 15px;
  margin-top: 4px;
  padding: 0 14px;
  font-family: "Comic Neue", cursive;
}

/*mission section*/
.mission-section {
  background-color: rgba(255, 238, 212, 0.648);
  padding: 80px 0;
}

.mission-card {
  background: linear-gradient(to bottom, #FFD6BA, #FFE8CD, #FFF2EB);
  border: 1px solid #e0e0e0;
  border-top-left-radius: 210px;
  border-top-right-radius: 210px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 40px 60px;
  max-width: 500px;
  width: 100%;
  height: 300px;
  /* Controls how tall the dome is */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  text-align: center;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.11);
}

.mission-content h3 {
  font-size: 20px;
  margin-bottom: 25px;
  color: #f24a4a;
  align-items: center;
  justify-content: center;
}

.mission-content p {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
  align-items: flex-start;
  text-align: justify;
}

.mission-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

@media (max-width: 768px) {
  .mission-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .mission-card {
    max-width: 90%;
    height: auto;
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
    padding: 30px 25px;
    text-align: left;
  }

  .mission-content h3 {
    font-size: 18px;
    text-align: center;
  }

  .mission-content p {
    font-size: 13px;
    text-align: justify;
  }
}

@media (max-width: 480px) {
  .mission-card {
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    padding: 25px 20px;
  }

  .mission-content h3 {
    font-size: 16px;
  }

  .mission-content p {
    font-size: 12px;
  }
}


/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
}

.testimonials-section .section-header p {
  color: #02011c;
}

.testimonial-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: bold;
  color: var(--primary-color);
}

.testimonial-company {
  color: var(--light-text);
  margin-top: 5px;
}


/* Web Development Section */
.first-slide {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.first-slide .slide-content {
  flex: 1;
  text-align: right;
  padding: 40px;
  /* Fixed padding */
}

.first-slide .slide-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 150px;
  /* Shift image right */
}

@media (max-width: 768px) {
  .first-slide {
    flex-direction: column;
    /* Stack vertically */
    text-align: center;
  }

  .first-slide .slide-content {
    text-align: center;
    padding: 20px;
    /* Better on tablet */
  }

  .first-slide .slide-image {
    margin-left: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .first-slide {
    flex-direction: column;
    text-align: center;
  }

  .first-slide .slide-content {
    padding: 15px;
    font-size: 14px;
  }

  .first-slide .slide-image {
    margin-left: 0;
    width: 100%;
    margin-bottom: 10px;
  }
}

/* Tablet View */
@media (max-width: 1024px) {
  .first-slide {
    gap: 30px;
    padding: 30px;
  }

  .first-slide .slide-image {
    margin-left: 80px;
  }

  .first-slide .slide-image img {
    width: 85%;
  }
}

/* Small Tablets & Large Phones */
@media (max-width: 768px) {
  .first-slide {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .first-slide .slide-content {
    text-align: center;
    padding: 15px;
    margin-top: 25px;
  }

  .first-slide .slide-image {
    margin-left: 0;
    width: 100%;
    margin-bottom: 20px;
  }

  .first-slide .slide-image img {
    width: 80%;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .first-slide {
    padding: 15px;
  }

  .first-slide .slide-content {
    padding: 15px;
    font-size: 14px;
    margin-top: 20px;
  }

  .first-slide .slide-image {
    margin-left: 0;
    margin-bottom: 15px;
  }

  .first-slide .slide-image img {
    width: 100%;
    height: auto;
  }
}


.aboutservices-section .section-header p {
  color: #170101;
  /* Adjust color as needed */
  font-size: 16px;
  line-height: 1.8;
  margin-top: 15px;
  margin-bottom: 30px;
  text-align: justify;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styling for Smaller Screens */
@media (max-width: 768px) {
  .aboutservices-section .section-header p {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 15px;
    text-align: left;
  }
}

/*webservice section*/
.webservices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.webservice-card {
  background-image: linear-gradient(to left, #f0e6d6, #fbd2b4);
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(13, 13, 13, 0.231);
  transition: var(--transition);
}

.webservice-card:hover {
  transform: translateY(-10px);
}

.webservice-icon {
  width: 80px;
  height: 80px;
  color: var(--light-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.webservice-icon img.icon-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.webservice-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.webservice-card p {
  color: var(--dark-gray);
  margin-bottom: 20px;
}

/* Working Cycle Section */
.workingcycle-section .section-header p {
  color: #040222;
}

.arrow-timeline-section {
  background-color: #f8f9fa;
  padding: 80px 20px;
}

.arrow-timeline-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.arrow-timeline-section .title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 30px;
  color: #e07f00;
  position: relative;
  margin-bottom: 60px;
}

.arrow-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.arrow-timeline .step {

  border-radius: 16px;
  padding: 30px 20px;
  width: 240px;
  min-height: 240px;

  transition: transform 0.3s ease;
}

.arrow-timeline .step:hover {
  transform: translateY(-5px);
}

.arrow-timeline .step .icon img {
  width: 70%;
  /* Makes the image fill the entire container */
  height: 90%;
  /* Keeps the image within the defined width and height */
  object-fit: cover;
  /* Makes the image cover the area while maintaining aspect ratio */
  border-radius: 50%;
  color: white;
  font-size: 10px;
  padding: 20px;
  border-radius: 50%;
  display: inline-block;

}

.arrow-timeline .step h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #333;
  text-align: center;
}

.arrow-timeline .step p {
  font-size: 14px;
  color: #666;
}

.arrow-timeline .arrow {
  font-size: 50px;
  color: #ea870e;
}

/* Offering Section */
.offerings-section {
  text-align: center;

}

.offerings-section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.offerings-section h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

.offerings-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}


.offering {
  max-width: 300px;
  text-align: left;
  flex: 1 1 280px;
  padding: 10px;
  margin-bottom: 50px;
}

.icon-circle {
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-circle img {
  width: 50px;
  height: 50px;
}

.offering h3 {
  font-size: 1.5em;
  margin: 0 0 10px;
  color: #444;
}

.offering p {
  font-size: 1em;
  color: #555;
  line-height: 1.5em;
  text-align: justify;
}

.offering a {
  color: #00aeef;
  text-decoration: none;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 768px) {
  .offerings-container {
    flex-direction: column;
    align-items: center;
  }

  .offering {
    text-align: center;
  }

  .icon-circle {
    margin: 0 auto 20px auto;
  }

  .offering h3 {
    font-size: 1.3em;
  }

  .offering p {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .offerings-section h2 {
    font-size: 2em;
  }

  .icon-circle {
    width: 80px;
    height: 80px;
  }

  .icon-circle img {
    width: 40px;
    height: 40px;
  }

  .offering h3 {
    font-size: 1.2em;
  }

  .offering p {
    font-size: 0.9em;
  }
}

/*offering portfolio*/
.offering-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 40px 20px;
}

.portfolio-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.portfolio-image img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
}

.portfolio-overlay {
  padding: 20px;
  text-align: center;
}

.portfolio-overlay h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #faf8f8;
}

.portfolio-overlay p {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.btn-small {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.btn-small:hover {
  background-color: #2e0132;
}

/*graphics page*/
.graphic-hero-section {
  width: 100%;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}

.graphic-hero-section .graphic-slider-container {
  width: 100%;
  position: relative;
}

.graphic-hero-section .graphic-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #230126;
  position: relative;
}

.graphic-hero-section .graphic-slide-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.graphic-hero-section .graphic-slide-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #1c0015;
   text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.graphic-hero-section .graphic-slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #270117;
}

.graphic-hero-section .graphic-slide-video {
  flex: 1;
  max-width: 600px;
  z-index: 2;
  position: relative;
  margin-left: 40px;
}

.graphic-hero-section .graphic-slide-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* service style  */
.graphics-design-section {
  background-color: #ffffff;
  font-family: 'Arial', sans-serif;
}

.graphics-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  /* Wrap on small screens */
}

.graphics-image {
  flex: 1 1 45%;
  min-width: 280px;
}

.graphics-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;

}

.graphics-info {
  flex: 1 1 45%;
  min-width: 280px;
}

.graphics-info h2 {
  font-size: 28px;
  color: #ff8800;
  margin-bottom: 20px;
}

.graphics-info p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.graphics-info ul {
  list-style: disc inside;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}

.graphics-info ul li {
  margin-bottom: 8px;
}

/* Responsive: stack on smaller screens */
@media (max-width: 768px) {
  .graphics-content {
    flex-direction: column;
  }

  .graphics-image,
  .graphics-info {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .graphics-info h2 {
    font-size: 24px;
  }
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
  .graphic-slide {
    flex-direction: column;
    padding: 40px 10%;
  }

  .graphic-slide-content {
    max-width: 90%;
    /* Allow text to take up more space */
    text-align: center;
  }

  .graphic-slide-content h1 {
    font-size: 2rem;
  }

  .graphic-slide-content p {
    font-size: 1rem;
  }

  .graphic-slide-video {
    max-width: 100%;
    /* Allow video to stretch across */
    margin-top: 20px;
  }
}

/* Further adjustments for very small screens (mobile) */
@media screen and (max-width: 480px) {
  .graphic-slide {
    padding: 20px;
  }

  .graphic-slide-content h1 {
    font-size: 1.5rem;
  }

  .graphic-slide-content p {
    font-size: 0.9rem;
  }
}

/*why hire us*/
.why-hire-us {
  display: flex;
  flex-wrap: wrap;
  padding: 50px;
  background: linear-gradient(to right, #ebba8276, #f9c12792);
  align-items: center;
}

.why-hire-us .content {
  flex: 1;
  min-width: 280px;
}

.why-hire-us .content h2 {
  font-size: 24px;
  font-weight: medium;
  margin-bottom: 15px;
  color: #ff6d04;
}

.why-hire-us .content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}

.why-hire-us .image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.why-hire-us .image img {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
}

/* Responsive: Stack layout on small screens */
@media (max-width: 768px) {
  .why-hire-us {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .why-hire-us .content,
  .why-hire-us .image {
    flex: unset;
    width: 100%;
  }

  .why-hire-us .content h2 {
    font-size: 22px;
  }

  .why-hire-us .content p {
    font-size: 14px;
  }
}


/* Digital Marketing Banner */
.digital-marketing-banner {
  background: linear-gradient(to right, #ffb3009c, #f6f8ff7e 40%, #FADA7A, #ffb3009c);
  padding: 80px 0;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 80px; /* Space for fixed header */
}

.digital-marketing-banner .slider-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  gap: 30px;
}

.digital-marketing-banner .slide {
  width: 100%;
}

.digital-marketing-banner .slide-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.digital-marketing-banner .slide-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
}

.digital-marketing-banner .slide-content {
  flex: 1;
  min-width: 300px;
  padding: 0 20px;
}

.digital-marketing-banner h1 {
  color: #0a1f44;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  margin-top: 10px;
  line-height: 1.3;
}

.digital-marketing-banner p {
  color: #333;
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
}

.digital-marketing-banner .btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: rgb(17, 3, 84);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgb(17, 3, 84);
  transition: all 0.3s ease;
  font-size: clamp(14px, 2vw, 16px);
}

.digital-marketing-banner .btn:hover {
  background-color: transparent;
  color: rgb(17, 3, 84);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .digital-marketing-banner {
    padding: 60px 0;
    margin-top: 70px;
  }
  
  .digital-marketing-banner .slider-container {
    flex-direction: column-reverse;
    gap: 20px;
  }
  
  .digital-marketing-banner .slide-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .digital-marketing-banner p {
    max-width: 100%;
  }
  
  .digital-marketing-banner .slide-image img {
    max-width: 450px;
  }
}

@media (max-width: 576px) {
  .digital-marketing-banner {
    padding: 40px 0;
    margin-top: 60px;
  }
  
  .digital-marketing-banner .slide-image {
    padding: 10px;
  }
  
  .digital-marketing-banner .btn {
    padding: 10px 20px;
  }
}

/* Very small devices (phones, 360px and down) */
@media (max-width: 360px) {
  .digital-marketing-banner {
    padding: 30px 0;
  }
  
  .digital-marketing-banner h1 {
    font-size: 1.6rem;
  }
  
  .digital-marketing-banner .btn {
    width: 100%;
    text-align: center;
  }
}

/* Footer Responsive Styles */
.footer {
  background-color: #222;
  color: #f0f0f0;
  padding: 70px 0 20px;
  font-family: sans-serif;
  font-size: 14px;
}

/* Grid layout for footer content */
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Footer column styles */
.footer-column {
  line-height: 1.6;
}

.footer-column h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #0066cc;
}

/* Logo styles */
.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-height: 60px;
}

/* Social links */
.social-links {
  display: flex;
  margin-top: 20px;
}

.social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #0066cc;
  transform: translateY(-3px);
}

/* Footer link lists */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0066cc;
}

/* Contact column styles */
.contact-column a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-column a:hover {
  color: #ff9500;
  text-decoration: underline;
}

.contact-info i {
  margin-right: 8px;
  color: #f9f9f7;
}

/* Footer bottom (single line, evenly spaced) */
/* ===== FOOTER ===== */
.footer {
  background-color: #222;
  color: #f0f0f0;
  padding: 40px 0 15px;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto 25px;
  padding: 0 20px;
}

/* Columns */
.footer-column {
  padding: 0 10px;
}

.footer-column h3 {
  color: white;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 8px;
  position: relative;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background: #0066cc;
}

/* Logo Section */
.about-column {
  grid-column: 1 / 2;
}

.footer-logo img {
  max-height: 45px;
  margin-bottom: 12px;
}

.about-column p {
  margin-bottom: 15px;
  color: #aaa;
  font-size: 12px;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-link {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  transition: all 0.3s;
}

.social-link:hover {
  background: #0066cc;
  transform: translateY(-2px);
}

/* Links Lists */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 12px;
  display: block;
}

.footer-links a:hover {
  color: #0066cc;
  padding-left: 3px;
}

/* Contact Info */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 8px;
  color: #0066cc;
  font-size: 12px;
  margin-top: 2px;
}

.contact-info a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 12px;
}

.contact-info a:hover {
  color: #ff9500;
}

/* Footer Bottom */
/* FOOTER LAYOUT */
.footer {
  background-color: #222;
  color: #f0f0f0;
  padding: 50px 0 20px;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  /* Balanced column distribution */
  gap: 30px;
  margin-bottom: 40px;
}

/* COLUMN STYLES */
.footer-column {
  padding: 0 10px;
}

/* QUICK LINKS & SERVICES SPECIFIC STYLES */
.quick-links-column,
.services-column {
  display: flex;
  flex-direction: column;
}

.quick-links-column .footer-links,
.services-column .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Consistent gap between links */
  padding: 0;
  margin: 0;
  list-style: none;
  height: 100%;
  /* Equal height */
}

/* HEADER STYLES */
.footer-column h3 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 8px;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #0066cc;
}

/* LINK STYLES */
.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  font-size: 14px;
  line-height: 1.4;
}

.footer-links a:hover {
  color: #0066cc;
  transform: translateX(5px);
}

/* ABOUT COLUMN */
.about-column {
  padding-right: 30px;
}

.footer-logo img {
  max-height: 50px;
  margin-bottom: 15px;
}

.about-column p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #0066cc;
  transform: translateY(-3px);
}

/* CONTACT COLUMN */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 10px;
  color: #0066cc;
  font-size: 14px;
  margin-top: 2px;
}

.contact-info a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
  line-height: 1.4;
}

.contact-info a:hover {
  color: #ff9500;
}

/* FOOTER */
.footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
  padding: 20px 0 10px;
  font-family: 'Inter', Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

/* Modern Grid Layout */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

/* Column Styling */
.footer-column {
  position: relative;
  padding: 0 12px;
}

/* Decorative Accent */
.footer-column::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(204, 139, 0, 0.3), transparent);
}

.footer-column:first-child::before {
  display: none;
}

/* Header Styling */
.footer-column h3 {
  color: white;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 6px;
  position: relative;
  letter-spacing: 0.5px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 1px;
  background: linear-gradient(90deg, #cc9c00, #ff7b00);
  border-radius: 1px;
}

/* About Section */
.about-column {
  padding-right: 20px;
}

.footer-logo img {
  max-height: 50px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.about-column p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-link:hover {
  background: #cc8b00;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(204, 116, 0, 0.3);
}

/* Links Styling */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  position: relative;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 3px 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #cc9200;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 15px;
}

/* Contact Info */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 12px;
  color: #cc9200;
  font-size: 16px;
  margin-top: 2px;
}

.contact-info a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: white;
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #6b6969;
}

.footer-bottom-links a {
  color: #7c7777;
  text-decoration: none;
  margin-left: 20px;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #cc880082;
}

/* Background Pattern */
.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 102, 204, 0.1) 1px, transparent 1px);
  background-size: 15px 15px;
  opacity: 0.3;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .about-column {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom-links {
    margin-top: 10px;
  }

  .footer-bottom-links a {
    margin: 0 10px;
  }
}

/* Back to Top Button */
  /* Back to Top Button Styles */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background-color: var(--primary-color);
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .back-to-top i {
        font-size: 20px;
        transition: transform 0.3s;
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: #e5670f; /* Slightly darker orange */
        transform: translateY(-3px);
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    }

    .back-to-top:hover i {
        transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .back-to-top {
            width: 45px;
            height: 45px;
            bottom: 20px;
            right: 20px;
        }
        
        .back-to-top i {
            font-size: 18px;
        }
    }
@media screen and (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-column {
    grid-column: span 2;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 50px 0 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    margin-top: 15px;
  }

  .footer-bottom-links a {
    margin: 0 10px;
  }
}

@media screen and (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .about-column {
    grid-column: span 1;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: 4px;
    width: 100%;
  }
}

/*Contact Page */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, #fffaf5, #fff0e6);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 25px;
  color: #444;
  position: relative;
  padding-bottom: 10px;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #ff9a00, #ff5e00);
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
  color: #0066cc;
}

.contact-detail:hover {
  transform: translateX(5px);

}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 40%;
  background: linear-gradient(135deg, #fff8f0, #ffe8d6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(255, 145, 0, 0.1);
}

.contact-text h5 {
  font-size: 14px;
  margin-bottom: 3px;
  color: #666;
  font-weight: 600;
}

.contact-text p,
.contact-text a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: #ff6b00;
  text-decoration: underline;
}

.contact-form {
  padding: 10px;
}

.form-group {
  margin-bottom: 18px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: #fff;
}

.form-control:focus {
  border-color: #ff9a00;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 154, 0, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-detail:hover .contact-text p,
.contact-detail:hover .contact-text a,
.contact-detail:hover .contact-text h5 {
  color: #0502cf;
  /* or any color you prefer */
}


@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 30px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
  }

  .form-control,
  .btn {
    font-size: 13px;
  }

  .btn {
    padding: 10px 20px;
  }
}

.contact-hero-section {
  width: 100%;
  background-color: #f8f9fa;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.contact-banner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.contact-banner-content {
  padding: 3rem 2rem;
  text-align: center;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.95);
  width: 100%;
}

.contact-banner-content h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-banner-content p {
  font-size: 1.2rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-banner-gif {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateX(-40px);
  /* shift left */
}

/* Responsive for tablets and up */
@media (min-width: 768px) {
  .contact-banner {
    flex-direction: row;
    min-height: 450px;
  }

  .contact-banner-content {
    width: 50%;
    padding: 4rem;
    text-align: left;
    background-color: transparent;
  }

  .contact-banner-gif {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    z-index: 1;
  }

  .contact-banner-video::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.8;
  }
}

/* Desktop refinements */
@media (min-width: 992px) {
  .contact-banner {
    min-height: 500px;
  }

  .contact-banner-content {
    padding: 5rem;
  }
}

/* Overlay for readability */
.contact-banner-video::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.7;
  z-index: 1;
}