/* ===================================
   Color Scheme & Base Styles
   =================================== */
:root {
  --primary-orange: #d85d27;
  --light-cream: #fff1e4;
  --white: #fff;
  --black: #312d2d;
  --gray-700: #0606067a;
  --gray-600: #4b5563;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --green-500: #10b981;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--white);
  color: var(--black);
}

/* Override Bootstrap primary color */
.text-primary {
  color: var(--primary-orange) !important;
}

.bg-primary {
  background-color: var(--primary-orange) !important;
}

.btn-primary {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  transition: all 0.5s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: white;
  color: var(--primary-orange);
  border: 1px solid var(--primary-orange);
}

.btn-outline-primary {
  color: var(--primary-orange);
  border-color: var(--primary-orange);
}

.btn-outline-primary:hover {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  color: var(--white);
}

.bg-cream {
  background-color: var(--light-cream);
}

/* ===================================
   Typography
   =================================== */
.fw-black {
  font-weight: 900;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--black);
}

@media (min-width: 992px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 48rem;
}

/* ===================================
   Header / Navigation
   =================================== */
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 1030;
  backdrop-filter: blur(5px);
  background-color: transparent;
  border-bottom: 0px;
}

.dark.header-sticky {
  background: white;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 25%);
}

.header-height {
  height: 5rem;
}

.logo-icon {
  font-size: 2rem;
  color: var(--primary-orange);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
}

.contact-text {
  font-size: 16px;
  color: var(--white);
}

.btn-cta {
  padding: 0.625rem 1.25rem;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-cta-mobile {
  padding: 0.625rem 1.25rem;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0.5rem;
}

.mobile-menu {
  display: none;
  background-color: var(--white);
}

.mobile-menu.show {
  display: block;
}

.header-sticky.mob-dark {
  background: white !important;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
  background-color: var(--black);
  overflow: hidden;
  min-height: 100vh;
  margin-top: -80px;
}

/* Hero Background Slider */
.hero-background-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

/* Hero Video Background */
.hero-slide-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.5),
    var(--black)
  );
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #e5e7eb;
  font-weight: 300;
}

@media (min-width: 992px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.btn-hero {
  padding: 1rem 2rem !important;
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  border-radius: 0.5rem !important;
  background: linear-gradient(to right, var(--primary-orange), #e67135) !important;
  border: 1px solid var(--primary-orange) !important;
  transition: 0.5s ease !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.btn-hero:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3) !important;
  background: var(--white) !important;
  color: var(--primary-orange) !important;
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0.5rem;
  border: 1px solid var(--white);
  transition: 0.5s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-text-small {
  font-size: 0.875rem;
  color: #d1d5db;
}

.trust-bar {
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-icon {
  font-size: 1.5rem;
  color: var(--primary-orange);
}

/* ===================================
   Pain Points Cards
   =================================== */
.pain-card {
  background-color: var(--white);
  border: none;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.pain-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
}

.pain-icon {
  font-size: 3rem;
  color: var(--primary-orange);
}

/* ===================================
   Solution Section
   =================================== */
.check-icon {
  font-size: 2rem;
  color: var(--primary-orange);
  flex-shrink: 0;
}

/* ===================================
   Services Section
   =================================== */
.service-card {
  background-color: var(--white);
  border: none;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-0.5rem);
}

.service-icon {
  font-size: 4rem;
  color: var(--primary-orange);
}

.badge-service {
  padding: 0.5rem 1rem;
  background-color: rgba(216, 93, 39, 0.1);
  color: var(--primary-orange);
  font-size: 0.875rem;
  border-radius: 9999px;
  font-weight: 600;
}

/* ===================================
   Portfolio Section
   =================================== */
.portfolio-card {
  background-color: var(--black);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}

.portfolio-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.portfolio-img-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    var(--black),
    rgba(0, 0, 0, 0.5),
    transparent
  );
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 0.9;
}

.portfolio-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.badge-portfolio {
  padding: 0.25rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.75rem;
  border-radius: 9999px;
  font-weight: 700;
}

.text-white-custom {
  color: #e5e7eb;
}

/* ===================================
   Why Choose Us Section
   =================================== */
.value-icon-wrapper {
  width: 5rem;
  height: 5rem;
  background-color: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon {
  font-size: 2.5rem;
  color: var(--white);
}

/* ===================================
   Process Timeline
   =================================== */
.process-line {
  position: absolute;
  top: 6rem;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--gray-200);
}

.process-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--primary-orange);
}

.process-step-wrapper {
  width: 5rem;
  height: 5rem;
  background-color: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  border: 4px solid var(--white);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.process-step-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
  background: linear-gradient(
    to bottom right,
    var(--black),
    #1f2937,
    var(--black)
  );
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.cta-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(216, 93, 39, 0.2), transparent);
}

.cta-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
}

@media (min-width: 992px) {
  .cta-title {
    font-size: 3.75rem;
  }
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
}

.btn-cta-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 0.5rem;
  background: linear-gradient(to right, var(--primary-orange), #e67135);
  border: none;
  transition: all 0.3s ease;
}

.btn-cta-large:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

/* ===================================
   FAQ Section
   =================================== */
.faq-item {
  background-color: var(--white);
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  background-color: var(--white);
  border: none;
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black) !important;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-question:not(.collapsed) {
  background-color: #f9fafb;
  box-shadow: none;
}

.faq-question:focus {
  box-shadow: none;
  border: none;
}

.faq-question::after {
  font-family: "iconify-icon";
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D85D27'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat;
  background-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question:not(.collapsed)::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 1.5rem 2rem;
  background-color: #f9fafb;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-700);
}

/* ===================================
   Contact Form Section
   =================================== */
.contact-icon {
  font-size: 4rem;
  color: var(--primary-orange);
}

.benefit-icon {
  font-size: 2rem;
  color: var(--green-500);
  flex-shrink: 0;
}

.contact-form {
  background-color: transparent !important;
}

.contact-form-wrapper {
  background-color: var(--light-cream) !important;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.form-control-custom,
.form-select {
  padding: 0.75rem 1rem;
  background-color: var(--white);
  border: 2px solid #d1d5db;
  border-radius: 0.5rem;
  transition: border-color 0.3s ease;
}

.form-control-custom:focus,
.form-select:focus {
  border-color: var(--primary-orange);
  box-shadow: none;
  outline: none;
}

.btn-submit {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0.5rem;
  background: linear-gradient(to right, var(--primary-orange), #e67135);
  border: none;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

/* ===================================
   Footer Section
   =================================== */
.footer-section {
  background-color: var(--black);
  color: var(--white);
}

.footer-logo-icon {
  font-size: 2.5rem;
  color: var(--primary-orange);
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.footer-text {
  font-size: 0.875rem;
  color: var(--white);
  line-height: 1.6;
}

.footer-text a {
  color: var(--white);
  text-decoration: none;
}

.footer-contact-icon {
  font-size: 1.25rem;
  color: var(--primary-orange);
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--white);
}

.footer-social-link {
  font-size: 1.25rem;
  color: var(--white);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  color: var(--primary-orange);
}

/* ===================================
   Utility Classes
   =================================== */
.rounded-4 {
  border-radius: 1.5rem !important;
}

/* Header */

.header-logo img {
  width: 70px;
  height: auto;
}

.flag {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 25px;
}

.flag-anchor {
  text-decoration: none;
  color: white;
  transition: 0.5s ease;
}

.dark .flag-anchor {
  color: #212529;
}

.flag-anchor:hover {
  color: var(--primary-orange);
}

.flag-uae {
  background: url(https://www.chicmicstudios.in/wp-content/themes/chicmic/img/new/flag-uae.webp)
    no-repeat center center;
  background-size: cover;
}

.flag-india {
  background: url(https://www.chicmicstudios.in/wp-content/themes/chicmic/img/new/flag-ind.webp)
    no-repeat center center;
  background-size: cover;
}

.hero-content {
  min-height: calc(100vh - 190px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.stats-main-container {
  z-index: 1;
  position: relative;
  min-height: 190px;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin: 0 auto;
  padding: 30px 0;
  border-radius: 5px;
}

.stat-item {
  text-align: center;
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item:last-child {
  border-right: none;
}

.img-container > img {
  width: 90%;
}

.contact-idea .form_section {
  padding: 50px 100px;
  border-radius: 14px;
  overflow: hidden;
}

.inner-container {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0px 20px;
}

.title_h2_new h3,
.contact-form-heading h3 {
  font-weight: 700;
}

.title_h2_new h1 {
  font-weight: 600;
}

.title_h2_new p,
.contact-form-heading p {
  font-weight: 400;
}

.quotes_form input {
  height: 60px;
  box-sizing: border-box;
  padding: 23px 25px;
}

.quotes_form textarea {
  padding: 23px 25px;
}

.quotes_form p {
  margin-bottom: 0px;
}

.custom-design {
  background: #faeee0;
  padding: 20px 6px;
  border-radius: 8px;
  border: 1px solid #ffccb5;
  margin-bottom: 30px;
}

.our-presence h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(0, 0, 0, 0.7);
}

.locations .location .location-icon {
  display: inline-flex;
  border: 1px solid #efd0ba;
  background: #f9e8dc;
  padding: 6px 12px;
  border-radius: 30px;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #2f2b2b;
  font-weight: 700;
  text-transform: uppercase;
}

.locations .location a {
  display: flex;
  font-size: 22px;
  color: #55504d;
  gap: 10px;
  font-weight: 700;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

.call_icon_circle {
  height: 32px;
  width: 32px;
  background: linear-gradient(42.39deg, #fdc80e -95.22%, #eb513b 84.48%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
}

.call_icon_circle > img {
  max-width: 13px;
}

.social-icons-new ul {
  display: flex;
  gap: 20px;
  padding: 0px;
}

.social-icons-new ul li {
  list-style: none;
  height: 55px;
  padding: 0px !important;
  width: 55px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 50%;
}

.social-icons-new ul li a {
  background: url(https://www.chicmicstudios.in/wp-content/themes/chicmic/img/new/sprite-social.webp)
    0px 0px no-repeat;
  display: block;
  height: 100%;
  font-size: 0px;
  background-size: 220px;
}

.social-icons-new ul li.telegram a {
  background-position: 0px 0px;
}

.social-icons-new ul li.phone a {
  background-position: -55px 0px;
}

.social-icons-new ul li.whatsapp a {
  background-position: -110px 0px;
}

.social-icons-new ul li.mail a {
  background-position: -165px 0px;
}

.contact-btn:hover {
  box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: white !important;
}

.contact-form .card {
  border: none;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: 0px !important;
  max-width: initial !important;
}
#strategyCallModal .form-control[type="tel"]{
  padding-left: 134px !important;
}
@media only screen and (max-width:1200px){
  .contact-form .card {
    margin: 0 auto !important;
  }
}

@media (min-width: 1200px) and (max-width: 1679px) {
  .contact-idea .form_section {
    padding: 50px 80px;
  }
}

@media only screen and (max-width: 1200px) {
  .contact-idea .form_section {
    padding: 20px !important;
  }
}

/* ===================================
   Strategy Call Modal Styles
   =================================== */
#strategyCallModal .modal-content {
  border-radius: 25px !important;
  overflow: hidden;
  border: none;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

#strategyCallModal .modal-header {
  padding: 1.5rem 2rem;
  background: linear-gradient(to right, var(--primary-orange), #e67135);
  border-radius: 1.5rem 1.5rem 0 0;
}

#strategyCallModal .modal-title {
  color: var(--white);
  font-size: 1.5rem;
}

#strategyCallModal .btn-close {
  filter: brightness(0) invert(1);
  opacity: 1;
}

#strategyCallModal .modal-body {
  background-color: #fef9f5;
}

#strategyCallModal .error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

#strategyCallModal .global_error_strategy,
#strategyCallModal .global_success_strategy {
  margin-bottom: 1rem;
}

#strategyCallModal .contact-form-heading h3 {
  color: var(--black);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

#strategyCallModal .contact-form-heading p {
  color: var(--gray-600);
  margin-bottom: 0;
}

#strategyCallModal .form-control {
  border: 2px solid #d1d5db;
  transition: border-color 0.3s ease;
}

#strategyCallModal .form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(216, 93, 39, 0.25);
}

#strategyCallModal .form-label {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

#strategyCallModal .form-text {
  font-size: 0.875rem;
  color: var(--gray-600);
}

#strategyCallModal .arrow_circle_white {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-left: 10px;
  display: inline-flex;
}

.arrow_circle_white i {
  color: var(--white);
}

/* Loading spinner for modal form */
.submit_loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-form .start-project button {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 1680px) {
  .header-logo img {
    width: 50px;
    height: auto;
  }

  .flag-anchor,
  .btn-cta {
    font-size: 14px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .btn-hero,
  .btn-hero-outline {
    font-size: 1rem !important; 
  }

  .btn-hero-container {
    margin-bottom: 0px !important;
  }

  .h2,
  h2 {
    font-size: 1.5rem;
  }

  .h3,
  h3 {
    font-size: 1.4rem;
  }

  .h4,
  h4 {
    font-size: 1.2rem;
  }

  .h5,
  h5 {
    font-size: 1rem;
  }

  .mb-3 {
    margin-bottom: 0.3rem !important;
  }

  .mb-4 {
    margin-bottom: 1.3rem !important;
  }

  .mb-5 {
    margin-bottom: 2rem !important;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle,
  .fs-5 {
    font-size: 1.1rem !important;
  }

  .check-icon {
    font-size: 1.7rem;
  }

  .service-icon {
    font-size: 3rem;
  }

  .stats-main-container {
    min-height: initial;
  }

  .hero-content {
    min-height: calc(100vh - 174px);
  }

  .p-lg-5 {
    padding: 2rem !important;
  }

  .our-presence h2,
  .locations .location a {
    font-size: 16px;
  }

  .locations .location .location-icon {
    font-size: 14px;
  }

  .flag {
    width: 20px;
    height: 20px;
  }

  .value-icon-wrapper {
    width: 3rem;
    height: 3rem;
  }

  .value-icon {
    font-size: 1.9rem;
  }

  .process-step-wrapper {
    width: 3rem;
    height: 3rem;
  }

  .process-step-number {
    font-size: 1.6rem;
  }

  .process-line {
    top: 4.6rem;
  }

  .cta-title {
    font-size: 2.3rem;
  }

  .row.custom-design .col-sm-12.col-md-12.col-xl-6 {
    margin-bottom: 10px !important;
  }
}

/* Responsive modal */
@media (max-width: 768px) {
  #strategyCallModal .modal-dialog {
    margin: 1rem;
  }

  #strategyCallModal .modal-header {
    padding: 1rem 1.5rem;
  }

  #strategyCallModal .modal-title {
    font-size: 1.25rem;
  }

  #strategyCallModal .contact-form-heading h3 {
    font-size: 1.25rem;
  }

  #strategyCallModal .contact-form-heading p {
    font-size: 0.875rem;
  }
}

@media only screen and (max-width: 767px) {
  .container,
  .container-sm {
    max-width: 630px;
  }

  .row {
    margin-left: 0px;
    margin-right: 0px;
  }

  .img-container > img {
    width: 100%;
  }
}

@media only screen and (max-width: 580px) {
  .stats-container {
    flex-wrap: wrap !important;
    gap: 0px;
  }

  .stat-item {
    width: 50%;
    max-width: initial;
    flex: none;
  }

  .stat-item:nth-child(1) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .stat-item:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .hero-content {
    min-height: initial !important;
    padding-bottom: 10px !important;
  }

  .hero-content > div {
    padding-bottom: 0px !important;
  }

  .btn-hero-container {
    margin-bottom: 0px !important;
  }

  .portfolio-img-wrapper {
    position: relative;
    aspect-ratio: 11 / 9;
  }

  .title_h2_new h3 {
    margin-bottom: 20px !important;
  }

  .title_h2_new h1 {
    margin-bottom: 10px !important;
  }

  .custom-right-presence,
  .custom-left-presence {
    padding: 0px !important;
  }

  #front_form_get_started_landing > div {
    padding: 0px !important;
  }

  .portfolio-content {
    padding: 10px 15px;
  }
}

@media only screen and (max-width: 380px) {
  .portfolio-img-wrapper {
    position: relative;
    aspect-ratio: 9 / 9;
  }
}
