/* ===================================
   BASE STYLES & TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6, p, a, span, div {
  font-family: 'Poppins', sans-serif;
}
/* ===================================
   HERO SECTION
   =================================== */
.active {
  color: #E98451 !important;
  font-size: 18px;
}
.hero-section {
  position: relative;              /* IMPORTANT */
  background-size: cover;
  background-position: center;
  min-height: 700px;               /* Full screen banner */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;                 /* Safe padding for mobile */
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 20px;
  border-radius: 50px;
}

.header-area-radius{
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}
.logo-bg img {
  width: 400px;
  
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;                        /* shorthand for top/left/right/bottom */
  background: url('../assets/image/layer-banner.png') no-repeat center center / cover;
  z-index: -1;
}

/* Banner content wrapper */
.banner-pos {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 700px;
  padding-bottom: 80px;
  box-sizing: border-box;
}

.btn-gradient {
  background-color: #000;
  color: #fff;
  padding: 4px 4px 4px 14px;
  border-radius: 5px;
}
.btn-gradient:hover {
  background-color: #043476;
  color: #fff;
  text-decoration: none;
  scale: 1.05;
}
.btn-gradient img{
  width: 33px !important;
  margin-left: 8px !important;
  background-color: #fff;
  padding: 10px 10px;
  border-radius: 5px;
}
.nav-item{
  margin-left: 15px !important;
  margin-right: 15px !important;
}
/* Title styles */
.banner-title h1 {
  font-size: clamp(42px, 6vw, 68px); /* Responsive font */
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 600 !important;
  width: 60%;
  margin: auto;
}

.banner-title p {
  font-size: clamp(18px, 2.5vw, 36px);
  margin: 0;
}

.home-abt{
  padding-top: 140px;
  padding-bottom: 140px;
  background-color: #EEECF2;
  border-radius: 50px;
  margin: 20px;
}
.home-services {
  background: linear-gradient(45deg, #000000 45%, #676CDB 100%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin: 20px;
  border-radius: 50px;
  padding-top: 130px;
  padding-bottom: 5px;
}
.home-services h1{
  text-align: center;
  font-weight: 600;
  color: #fff;
  padding-bottom: 50px;
  font-size: clamp(42px, 6vw, 58px);
}
.abt-text {
  width: 65%;
  margin: auto;
  text-align: center;
}
.abt-text h2{
  font-size: 60px;
  font-weight: 600;
  padding-bottom: 15px;
}
.abt-text span img{
  width: 80px !important;
}
.abt-text p{
  font-size: 20px;
  opacity: 0.9; 
  padding-bottom: 20px;
}
.container{
  max-width: 1380px !important;
}
.service-card img{
width: 100%;
border-radius: 20px;
transition: transform 0.4s ease;
}
.service-card{
  background-color: transparent;
  border: 2px solid #4e4e4e;
  border-radius: 30px;
  padding: 15px;
  min-height: 580px;
  overflow: hidden;
  margin-bottom: 80px;
}
.service-card:hover img{
  transform: scale(1.03);
}
.service-card:hover{
  border: 2px solid #676CDB;
}
.service-card h3::before {
  content: url('../assets/image/arrow-up.png');
  display: inline-block;
  margin-right: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: none;
}
.service-card:hover h3::before {
  opacity: 1;
  display: inline-block;
}
.service-card:hover h3{
  padding-left: 25px;
  transition: padding 0.3s ease;
}
.service-card h3{
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  padding-top: 40px;
  padding-left: 5px;
}
.service-card a{
  text-decoration: none;
}
.service-card p{
  font-size: 18px;
  color: #fff;
  opacity: 0.8;
  padding-top: 20px;
  padding-left: 5px;
  
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
  background: linear-gradient(135deg, #000000 15%, #2d3b7e 50%, #676CDB 100%);
  padding: 90px 20px;
  margin: 56px;
  border-radius: 50px;
  border:1.5px solid #676CDB  ;
}
.contact-section h1{
  padding-bottom: 5px;
  margin-bottom: 0;
  text-align: left;
}
.contact-text {
  flex: 1;
  color: #fff;
  padding: 0 30px;
}
.contact-text h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
}
.contact-text p {
  font-size: 18px;
  opacity: 0.9;
  text-align: left !important;
  width: 100% !important;
}
.contact-form {
  padding: 0 50px;
}
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.form-input,
.form-textarea {
width: 100%;
    padding: 20px 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: #fff;
    color: #5b5b5b;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #999;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}
.form-textarea {
  resize: vertical;
}
.footer_area{
  padding-top: 60px;
}
.footer_area img{
width: 400px;
padding-bottom: 40px;
}
.footer_area p{
  color: #000;
  opacity: 0.6;
}
.footer_area h5{
color: #000;
font-size: 16px;
font-weight: 600
}
.footer_area a{
  text-decoration: none;
  opacity: 0.6;
  color: #000;
  display: grid;
  padding-bottom: 10px;
  font-size: 16px;
}
.footer-links a{
  padding-bottom: 10px;
  font-size: 16px;
  opacity: 1 !important
}
.footer_area a:hover{
  color: #043476;
  opacity: 1 !important
}
.footer-links ul{
  padding-left: 20px;
}
.footer-links ul li{
  opacity: 0.6;
}
.footer-links ul li:hover{
  opacity: 1
}

.btn-submit {
  background: #000;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}
.btn-submit img {
  width: 18px;
}
.btn-submit:hover {
  background: #043476;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: 40px;
  }
  .contact-text h1 {
    font-size: 36px;
  }
  .form-row {
    flex-direction: column;
  }
  .footer_area img {
    width: 340px;
  }
  .hero-section{
    padding: 0;
    margin:  0 10px;
  }
  .header-area-radius{
padding-right: 5px !important;
padding-left: 5px !important;
}
.navbar-collapse {
top: 95px !important;
position: absolute !important;
width: 100% !important;
z-index: 9999 !important;
left: 0 !important;
}
.home-abt {
    padding-top: 50px;
    padding-bottom: 20px;
}
.abt-text h2 {
    font-size: 30px;
  }
  .abt-text{
    width: 100%;
  }
  .banner-pos {
    min-height: 400px;
  }
  .abt-banner-pos {
    min-height: 400px !important;
  }
  .banner-pos {
    padding-bottom: 20px;
  }
  .abt-page-content {
    padding-top: 50px !important;
    padding-bottom: 10px !important;
}
.abt-text-main {
    padding-right: 0 !important;
}
.abt-text-main h2 {
    font-size: 30px !important;
  }
  .our-approach {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}
.approach-text {
    width: 100% !important;
  }
  .approach-text h1 {
    font-size: 36px !important;
    padding-bottom: 5px !important;
}
.ai-training h2 {
    font-size: 36px !important;
    padding-bottom: 30px !important;
  }
  .abt-capabilities-card h3 {
    padding-left: 0 !important;
  }
.abt-capabilities-card{
  padding: 25px !important;
}
.abt-bottom-area h2 {
  width: 100% !important;
}
.abt-bottom-area p {
    font-size: 20px;
    padding-top: 0 !important;
    width: 100% !important;
    padding-bottom: 30px !important;
}

}
/* AI-MODEL-TRAINING */
.abt-hero-section{
  min-height: 550px;
}
.abt-hero-section::before{
  background: url('../assets/image/abt-hero-banner.png') no-repeat center center / cover;
}
.ai-data-cleansing-hero::before{
  background: url('../assets/image/ai-data-banner.png') no-repeat center center / cover;
}
.ai-app-development-hero::before{
  background: url('../assets/image/ai-app-dev-banner.png') no-repeat center center / cover;
}

.abt-banner-pos{
  min-height: 550px;
  justify-content: flex-start;
  align-items: center;
}
.abt-banner-title h1{
  width: 100% !important;
   font-size: clamp(42px, 6vw, 60px) !important; /* Responsive font */
   padding-top: 60px;
}

.abt-page-content{
  padding-top: 140px;
  padding-bottom: 120px;
}
.abt-text-main {
  padding-right: 80px;
}
.abt-text-main h2{
  font-size: 48px;
  font-weight: 600;
}
.abt-text-para p{
  font-size: 18px;
  opacity: 0.9; 
}
.abt-strip img{
  width: 100%;
  border-radius: 20px;
  transition: transform 0.4s ease;
}
.approach-text {
  width: 65%;
  margin: auto;
  text-align: center;
}
.approach-text h1{
  font-size: 46px;
  font-weight: 600;
  padding-bottom: 20px;
}
.our-approach {
  padding-top: 120px;
  padding-bottom: 100px;
}
.our-approach p{
  font-size: 18px;
  opacity: 0.9; 
}
.ai-training{
  width: 100%;
}
.ai-training h2{
   font-size: 46px;
  font-weight: 600 !important;
  padding-bottom: 50px;
}
.abt-capabilities-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  transition: .3s ease;
}
.abt-capabilities-card:hover {
  transition: .3s ease;
  border: 1px solid #676CDB;
}
.min-275 {
  min-height: 275px;
}
.abt-capabilities-card img{
  width: 50px;
}
.abt-capabilities-card h3{
  font-size: 24px;
  font-weight: 600;
  padding-left: 10px;
  margin-top: 10px;
}
.abt-capabilities-card p{
  font-size: 20px;
  padding-top: 10px;
  opacity: 0.8;
  padding-bottom: 0;
  margin-bottom: 0;
}
.abt-bottom-area h2{
  font-size: 46px !important;
  font-weight: 600 !important;
  color: #ffffff;
  text-align: center;
  width: 65%;
  margin: auto;
}
.abt-bottom-area p{
  font-size: 20px;
  opacity: 0.9; 
  color: #ffffff;
  text-align: center;
  padding-top: 20px;
  width: 65%;
  margin: auto;
  padding-bottom: 80px;
}
.abt-home {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.abt-home p {
  width: 60%;
  margin: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  opacity: 0.8;
}
/* ===================================
   UTILITY CLASSES
  =================================== */

.pad-right-0 {
  padding-right: 0;
}
.pad-left-0 {
  padding-left: 0;
}
.pad-0-form {
  padding: 0;
}
/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablets and smaller desktops (992px - 1023px) */
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .header-area img {
    width: 320px;
  }
  .banner-title h1 {
    font-size: 48px;
  }
  .banner-title p {
    font-size: 28px;
  }
  .custom-box {
    width: 220px;
    height: 220px;
  }
  .services-home {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .custom-slider-container {
    padding-top: 60px;
    width: 98%;
  }
  .custom-slider-container h1 {
    font-size: 40px;
  }
  .form-input, .form-textarea {
    padding: 10px 10px;
    font-size: 10px;
}
.contact-form {
    padding: 0 0;
}
.contact-text h1 {
    font-size: 30px;
    margin-bottom: 5px;
}
.service-card{
  margin-bottom: 0;
}
.service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 14px;
    padding-top: 0;
  }
  .service-card{
    min-height: 400px;
  }
  .banner-pos{
    min-height: 220px;
    padding-bottom: 30px;
  }
  .hero-section {
    min-height: 390px;
  }
  .abt-text h2 {
    font-size: 32px;
  }
  .abt-text {
    width: 100%;
  }
  .abt-text span img {
    width: 50px !important;
}
.home-abt {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .abt-text p {
    font-size: 18px;
  }
  .home-services {
    padding-top: 70px;
  }
  .home-services h1 {
    font-size: 36px;
}
.contact-section {
    padding: 48px 0px;
  }
  .footer_area img {
    width: 100%;
    padding-bottom: 32px;
  }
  .footer_area a{
    font-size: 14px;
  }
  .footer_area p{
    font-size: 14px;
}.contact-text p {
    font-size: 14px;
}
.abt-page-content {
    padding-top: 70px;
    padding-bottom: 50px;
}
.abt-text-main h2{
    font-size: 26px;
}
.our-approach {
    padding-top: 70px;
    padding-bottom: 40px;
}
.abt-text-para p {
    font-size: 16px;
  }
  .approach-text h1 {
    font-size: 36px;
    padding-bottom: 10px;
  }
  .our-approach p {
    font-size: 16px;
  }
  .abt-capabilities-card {
    padding: 30px;
  }
  .abt-capabilities-card h3{
    padding-left: 0;
  }
  .abt-capabilities-card{
    min-height: 350px;
  }
  .abt-bottom-area h2 {
    font-size: 32px !important;
    width: 100%;
  }
  .abt-bottom-area p {
    font-size: 16px;
    width: 80%;
    padding-bottom: 0;
    padding-top: 10px;
  }
  .abt-banner-title h1 {
    width: 100% !important;
    font-size: clamp(42px, 5vw, 60px) !important;
  }
}

/* Tablets portrait and smaller (768px and below) */
@media (max-width: 767px) {
  .header-area {
    position: relative;
  }
  .header-area img {
    width: 150px;
  }
  .hero-section,
  .hero-section:hover {
    height: auto;
    min-height: 500px;
  }
  .hero-section::before {
    height: auto;
    min-height: 500px;
  }
  .banner-title h1 {
    font-size: 36px;
    text-align: center;
  }
  .banner-title p {
    font-size: 24px;
  }
  .custom-slider-container {
    padding-top: 50px;
  }
  .custom-box {
    width: 250px;
    height: 250px;
  }
  .services-home {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .alumni-left,
  .alumni-right {
    padding: 60px 30px;
    border-right: none;
  }
      .contact-form {
        padding: 0 10px;
    }
  .alumni-left h2,
  .alumni-right h2 {
    font-size: 32px;
  }
  .contact-section {
        margin: 10px;
        padding: 70px 0;
    }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 18px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .btn-gradient {
    padding: 12px 24px;
  }
  .footer-sec {
    padding-top: 100px;
  }
  .social-icon {
    padding-top: 20px;
  }
  .sm-card {
    max-width: 33.33%;
  }
  .home-abt{
    margin: 10px;
  }
  .home-services{
  padding-top: 70px;
  padding-bottom: 1px;
  margin: 10px;
}
    .footer_area a {
        font-size: 16px;
    }
.header-area img {
        width: 260px;
    }
.abt-text span img {
        width: 40px !important;
    }
    .service-card{
  min-height: 430px;
  max-height: 520px;
}
.abt-bottom-area h2{
    font-size: 30px !important;
    padding-bottom: 10px;
}
.abt-bottom-area p {
    font-size: 18px;
}
.contact-text {
    padding: 0 10px;
    }
}

/* Mobile devices (576px and below) */
@media (max-width: 576px) {
  .header-area {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  .hero-section,
  .hero-section:hover {
    min-height: 400px;
    background-size: 300px;
  }
  .hero-section::before {
    min-height: 400px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  .banner-title h1 {
    font-size: 28px;
    width: 100%;
    padding: 0 15px;
  }
  .banner-title p {
    font-size: 18px;
    padding: 10px 15px;
  }
  .custom-slider-container {
    padding-top: 30px;
    width: 100%;
  }
  .custom-box {
    width: 220px;
    height: 220px;
    margin-right: 15px;
    border-radius: 20px;
  }
  .custom-box p {
    padding-left: 20px;
    padding-top: 20px;
    font-size: 14px;
  }
  .custom-box h1 {
    font-size: 40px;
    padding-bottom: 20px;
    padding-right: 15px;
  }
  .services-home {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .alumni-left,
  .alumni-right {
    padding: 40px 20px;
  }
  .alumni-left h2,
  .alumni-right h2 {
    font-size: 28px;
  }
  .alumni-left img,
  .alumni-right img {
    padding-bottom: 20px;
  }
  .team-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .team-section h1 {
    font-size: 32px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
    padding: 8px 0;
  }
  .btn-gradient {
    padding: 10px 20px;
    font-size: 14px;
  }
  .btn-arrow img {
    width: 12px !important;
  }
  .navbar-collapse {
    background-color: #fff;
    padding: 15px;
    border-radius: 15px;
    margin-top: 0;
    padding-top: 0;
  }
  .navbar-toggler {
    padding: 8px 10px;
  }
  .footer-sec {
    padding-top: 80px;
  }
  .sm-card {
    max-width: 50%;
  }
  .abt-home p {
    width: 90%;
  }
}

/* Extra small devices (420px and below) */
@media (max-width: 420px) {
  .banner-title h1 {
    font-size: 38px;
  }
  .banner-title p {
    font-size: 16px;
  }
  .custom-box {
    width: 200px;
    height: 200px;
  }
  .custom-slider-container h1 {
    font-size: 28px;
  }
  .abt-text span img {
    width: 40px !important;
}
.home-services{
  padding-top: 70px;
  padding-bottom: 1px;
  margin: 10px;
}

.contact-section {
  margin: 10px;
  padding: 70px 0;
}
.contact-form{
  padding: 0 10px;
}
.contact-text {
  padding: 0 10px;
}
.contact-text h1 {
 margin-bottom: 10px;
}
.footer_area a{
  font-size: 16px;
}
.home-abt{
  margin: 10px;
}
}

/* iPad Pro 12.9" - Portrait */
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
  .header-area img {
    width: 320px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .btn-arrow img {
    width: 15px !important;
  }
  .btn-gradient {
    padding: 10px 18px;
    font-size: 15px;
  }
  .service-card p {
    font-size: 16px;
  }
  .hero-section {
    min-height: 600px;
    margin: 15px;
    border-radius: 40px;
  }
  .banner-pos {
    min-height: 600px;
    padding-bottom: 60px;
  }
  .banner-title h1 {
    font-size: 52px;
    width: 70%;
  }
  .banner-title p {
    font-size: 30px;
  }
  .home-abt {
    padding-top: 100px;
    padding-bottom: 100px;
    margin: 15px;
    border-radius: 40px;
  }
  .abt-text h2 {
    font-size: 36px;
  }
  .custom-slider-container {
    padding-top: 70px;
  }
  .custom-box {
    width: 240px;
    height: 240px;
  }
  .service-card {
    min-height: 445px;
    padding: 30px;
  }
  .contact-text h1{
    font-size: 38px;
    margin-bottom: 0;
  }
  .form-input, .form-textarea {
    padding: 10px 10px;
  }
  .service-card h3 {
    font-size: 22px;
  }
  .services-home {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .team-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .footer-sec {
    padding-top: 120px;
  }
}

/* iPad Pro 12.9" - Landscape */
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
  .header-area img {
    width: 350px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .btn-gradient {
    padding: 12px 20px;
  }
  .hero-section {
    min-height: 550px;
    margin: 15px;
    border-radius: 40px;
  }
  .banner-pos {
    min-height: 550px;
    padding-bottom: 50px;
  }
  .banner-title h1 {
    font-size: 56px;
    width: 65%;
  }
  .banner-title p {
    font-size: 32px;
  }
  .home-abt {
    padding-top: 110px;
    padding-bottom: 110px;
    margin: 15px;
    border-radius: 40px;
  }
  .abt-text h2 {
    font-size: 38px;
  }
  .custom-slider-container {
    padding-top: 80px;
  }
  .custom-box {
    width: 260px;
    height: 260px;
  }
  .service-card {
    min-height: 450px;
    padding: 35px;
  }
  .service-card h3 {
    font-size: 24px;
  }
  .services-home {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .team-section {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .footer-sec {
    padding-top: 130px;
  }
}
/* iPad Pro 11" - Portrait */
@media only screen and (min-width: 834px) and (max-width: 834px) and (orientation: portrait) {
  .header-area img {
    width: 300px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 15px;
    margin-left: 7px;
    margin-right: 7px;
  }
  .btn-gradient {
    padding: 10px 16px;
    font-size: 14px;
  }
  .hero-section {
    min-height: 580px;
    margin: 15px;
    border-radius: 40px;
  }
  .banner-pos {
    min-height: 580px;
    padding-bottom: 55px;
  }
  .banner-title h1 {
    font-size: 48px;
    width: 75%;
  }
  .banner-title p {
    font-size: 28px;
  }
  .home-abt {
    padding-top: 90px;
    padding-bottom: 90px;
    margin: 15px;
    border-radius: 40px;
  }
  .abt-text h2 {
    font-size: 34px;
  }
  .custom-slider-container {
    padding-top: 65px;
  }
  .custom-box {
    width: 230px;
    height: 230px;
  }
  .service-card {
    min-height: 400px;
    padding: 28px;
  }
  .service-card h3 {
    font-size: 21px;
  }
  .services-home {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .team-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .footer-sec {
    padding-top: 110px;
  }
}

/* iPad Pro 11" - Landscape */
@media only screen and (min-width: 1194px) and (max-width: 1194px) and (orientation: landscape) {
  .header-area img {
    width: 330px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
    margin-left: 9px;
    margin-right: 9px;
  }
  .btn-gradient {
    padding: 11px 19px;
  }
  .hero-section {
    min-height: 530px;
    margin: 15px;
    border-radius: 40px;
  }
  .banner-pos {
    min-height: 530px;
    padding-bottom: 48px;
  }
  .banner-title h1 {
    font-size: 54px;
    width: 67%;
  }
  .banner-title p {
    font-size: 31px;
  }
  .home-abt {
    padding-top: 105px;
    padding-bottom: 105px;
    margin: 15px;
    border-radius: 40px;
  }
  .abt-text h2 {
    font-size: 37px;
  }
  .custom-slider-container {
    padding-top: 75px;
  }
  .custom-box {
    width: 250px;
    height: 250px;
  }
  .service-card {
    min-height: 435px;
    padding: 33px;
  }
  .service-card h3 {
    font-size: 23px;
  }
  .services-home {
    padding-top: 105px;
    padding-bottom: 105px;
  }
  .team-section {
    padding-top: 105px;
    padding-bottom: 105px;
  }
  .footer-sec {
    padding-top: 125px;
  }
}

/* ===================================
   CONTACT FORM VALIDATION STYLES
   =================================== */
.form-group {
  position: relative;
  width: 100%;
}

.error-message {
  display: block;
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  margin-left: 5px;
  
}

.form-input.error,
.form-textarea.error {
  border: 2px solid #dc3545 !important;
  background-color: #fff5f5;
}

.form-input.error:focus,
.form-textarea.error:focus {
  outline: none;
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}