:root {
  --var-white: #fff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
body {
  font-family: "Roboto", sans-serif;
  background-color: #e6f2ff;
}
section {
  background-color: #f0f8ff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}





/**====================================================================================
##Hero Section start
=======================================================================================*/
.hero-section {
  padding: 60px 0;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: var(--primary-blue);
  position: relative;
  overflow: hidden;
}


.hero-image-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.main-hero-image {
  border-radius: 25px;
}

.floating-shape {
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

/* Position different shapes uniquely */
.shape-1 { top: 10%; left: 15%; }
.shape-2 { top: 40%; right: 10%; }
.shape-3 { bottom: 20%; left: 25%; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

 /* Mobile-specific styles */
@media (max-width: 576px) {
  .hero-section {
    padding: 2px 0;
    min-height: 100px; /* or fixed height: height: 350px; */
  }

  .main-hero-image {
    max-height: 250px;
    object-fit: cover;
  }

  .floating-shape {
    width: 30px;
    height: 30px;
  }
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services {
  padding: 0rem 0 10px; /* Increased top padding to prevent overlap */
  font-family: Arial, sans-serif;
  position: relative;
  z-index: 1;
}

.services img {
  height: 100px;
  width: 200px;
  margin-bottom: 15px;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services .btn {
  border: 2px solid #ff4b2b;
  transition: background 0.3s ease-in-out;
}

.services .btn:hover {
  background: #ff4b2b;
  color: white;
}

/* Service Grid Icons */
#gridIcon {
  margin: 12px;
  width: 350px;
  height: 270px;
  filter: blur(0); /* Ensures icons are clear */
  background-color: #fff;
  color: #0d2750;
  border-radius: 50px;
  padding-left: 12px;
  padding-top: 5px;
  text-align: center;
  transition: filter 0.3s, transform 0.3s ease-in-out;
}

#gridIcon:hover {
  filter: blur(0);
  transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .services {
      padding-top: 7rem; /* Additional spacing on smaller screens */
  }
}

@media (max-width: 781px) {
  .services .col-md-4 {
      display: grid !important;
      place-items: center !important;
  }

  .services img {
      width: 80%; /* Full width for smaller screens */
      height: 40;
      max-width: none; /* Override max-width if necessary */
  }
}


/**====================================================================================
## About Section
=======================================================================================*/
.about-section {
/*   background-color: transparent; */ /* explicitly remove any background color */
  color: black;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}


.about-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: black;
}

.about-subtitle {
  color: black;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.about-lead {
  font-size: 1.25rem;
  color: black;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-img {
  width: 100%;
  max-width: 500px;
  height: 250px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
  margin-right: 1rem;
  color: blue;
}

.feature-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: black;
}

.feature-text {
  color: black;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
  .about-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  .about-section {
    padding: 3rem 0;
  }
  
  .about-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .about-subtitle {
    font-size: 1.6rem;
  }
  
  .about-img {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 2.5rem 0;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .about-subtitle {
    font-size: 1.4rem;
  }
  
  .about-lead {
    font-size: 1.1rem;
  }
  
  .feature-title {
    font-size: 1rem;
  }
  
  .feature-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .about-section {
    padding: 2rem 0;
  }
  
  .about-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .about-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .about-lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .feature-icon svg {
    width: 28px;
    height: 28px;
  }
}



/**====================================================================================
#Technology Stack
=======================================================================================*/
/* Styling for the box */
.info-box {
  min-height: 100px; /* Ensure a minimum height, but allow growth */
  border: 1px solid #ccc; /* Add a border */
  border-radius: 10px; /* Rounded corners */
  padding: 10px; /* Inner padding */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Shadow effect */
  overflow: hidden; /* Clip overflowing content */
  background-color: #fff; /* Background color */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Styling for the image */
.info-box img {
  height: 50px; /* Fixed height for image */
  width: auto; /* Maintain aspect ratio */
  border-radius: 5px;
  margin-bottom: 0.5rem;
}

/* Optional: Styling for text inside the box */
.info-box p,
.info-box h5 {
  font-size: 16px;
  color: #333;
  text-align: center;
  margin: 0;
}

/* Rainbow Border */
.rainbow-border {
  position: relative;
  padding-top: 4px;
}

.rainbow-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a4f8b, #e6007e, #00a651, #ffd700);
}

/* Methodology Card */
.methodology-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Fix misused styling here */
.methodology-card img {
  display: block;
  margin: 0 auto;
}

/* Stack Card */
.stack-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.stack-card img {
  height: 50px;
}

/* Icon Styles */
.tech-icon,
.service-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.service-icon {
  margin-bottom: 1rem;
}

/* Full Stack Diagram */
.full-stack-diagram {
  position: relative;
  padding: 2rem;
}

/* Waterfall Steps */
.waterfall-steps {
  position: relative;
  padding-left: 2rem;
}

.waterfall-steps::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-blue);
}

/* Agile Fullstack Image */
.agile-fullstack-img {
  height: auto;
  max-height: 250px;
  width: 100%;
  object-fit: contain;
}

/* Updated: Make section height auto for responsiveness */
.fixed-height-section {
  height: auto; /* Let the height adjust based on content */
  overflow: visible; /* Allow full content display */
}




/**====================================================================================
## Testimonnials Section
=======================================================================================*/
        .testimonial-container {
            max-width: 800px;
            width: 100%;
            position: relative;
            overflow: hidden;
           /*  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
            border-radius: 15px;
            /* background: white; */
        }
        
        .testimonial-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .testimonial-slide {
            min-width: 100%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .testimonial-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #f1f1f1;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-text {
            font-size: 18px;
            line-height: 1.6;
            color: #555;
            text-align: center;
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .testimonial-author {
            font-weight: bold;
            font-size: 20px;
            color: #333;
            margin-bottom: 5px;
        }
        
        .testimonial-role {
            color: #777;
            font-size: 16px;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .slider-dot.active {
            background-color: #4CAF50;
        }
        
        .slider-arrow:hover {
            background-color: #4CAF50;
            color: white;
        }
        
        .slider-arrow-left {
            left: 20px;
        }
        
        .slider-arrow-right {
            right: 20px;
        }
    
 /**====================================================================================
## Contact Section
=======================================================================================*/
.contact {
  padding: 0;
  margin: 0;
  background: 47b2e4;
}

.contact .container {
  height: 400px;
  border-radius: 5px;
}
contact li {
  color: #fff;
}
.contact img {
  height: 60px;
  width: 60px;
}
.contact .btn {
  color: #0d2750;
}
.contact h1 {
  text-transform: uppercase;
}
.social {
  z-index: 10;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.social li a {
  display: inline-block;
  margin-right: 2px;
  transform: scale(0.5);
  transition: 0.5s;
}
.social li a:hover {
  transform: scale(0.5) translateY(-15px);
}

@media (max-width: 781px) {
  .contact .container {
    height: 650px;
  }
}


h1,
h2 {
  color: #343a40; /* Dark text color */
}

.about-img {
  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.text-secondary {
  color: #6c757d; /* Softer text color */
}

/* Hover effect for cards */
.d-flex:hover {
  transform: translateY(-5px);
  transition: transform 0.3s;
}


