
/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
 --white-color:           #ffffff;

  /* Main Theme */
  --primary-color:         #0F172A;   /* keep (great dark navy) */
  --secondary-color:       #3498D1;   /* brighter, more modern green */

  /* Backgrounds */
  --section-bg-color:      #F8FAFC;   /* softer than #f9f9f9 */
  --dark-color:            #020617;   /* deeper dark (less harsh than pure black) */

  /* Text */
  --p-color:               #64748B;   /* better readability */

  /* Borders */
  --border-color:          #E2E8F0;   /* cleaner subtle border */
  --featured-border-color: #3B82F6;   /* matches theme nicely */

  /* ✨ Add these (important for UI pop) */
  --accent-color:          #3498D1;   /* green highlight */
  --cta-color:             #F97316;   /* button color */

  --body-font-family:             'DM Sans', sans-serif;

  --h1-font-size:                 62px;
  --h2-font-size:                 48px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --menu-font-size:               12px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h5,
h6 {
  color: var(--dark-color);
}

h4{
  color:#dbe8ebc4;
};

h4 >.hero-small{
   color:#dbe8ebc4;
};


h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: 0px;
}

h2 {
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
  letter-spacing: 0px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: 15px;
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: 15px;
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
  
}

::selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 20px;
  padding-bottom: 25px;
}


b,
strong {
  font-weight: var(--font-weight-bold);
}

.section-title-wrap {
  background: var(--secondary-color);
  border-radius: var(--border-radius-small);
  padding: 10px 30px;
}


/*---------------------------------------
  AVATAR IMAGE               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 160px;
  height: 160px;
  object-fit: cover;
}

.avatar-image-large {
  width: 90.4px;
  height: 90.4px;
}


/*---------------------------------------
  PRE LOADER               
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--white-color);
}

.spinner {
  border: 1px solid transparent;
  border-radius: var(--border-radius-small);
  position: relative;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  border-top-color: var(--white-color);
  animation: spinner .9s linear infinite;
}



@keyframes spinner {
  to {transform: rotate(360deg);}
}


/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  color: var(--dark-color);
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
}

.is-sticky .navbar-icon {
  background: var(--secondary-color);
  color: var(--white-color);
  
}

.form-check-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn,
.navbar .custom-btn {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar .custom-btn {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: var(--white-color);
  color: var(--white-color);
  padding: 8px 22px;
}

.navbar .custom-btn:hover {
  background: var(--white-color);
  border-color: transparent;
  color: var(--secondary-color);
}

.custom-btn {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
  text-align: center;
}

.custom-btn:hover {
  background: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--p-color);
}

.custom-border-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.custom-link {
	background-color: #0dcaf085;
}

.custom-link:hover {
	background-color: light black;
 }


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: relative;
  z-index: 222;
  height: auto !important;
}


.is-sticky .navbar-brand,
.is-sticky .navbar-brand:hover {
  color: var(--dark-color);
}

.is-sticky .navbar-nav .nav-link {
  color: var(--p-color);
  
}

.is-sticky .navbar .custom-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.is-sticky .navbar .custom-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.navbar {
  position: relative;
  z-index: 100;
  right: 0;
  left: 0;
  transition: all 0.3s;
  padding-bottom: 0;
}

.navbar .container {
  border-radius: var(--border-radius-small);
}



.navbar-brand {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
 
  margin: 3px 10px 0 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
 
  color: white;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-radius: var(--border-radius-large);
  display: inline-block;
  padding: 3px 15px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--section-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link::after {
  content: "";
  background: transparent;
  position: absolute;
  bottom: 6px;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

/* Mobile menu background */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(20px);

    padding: 80px 20px 20px;
    z-index: 999;
  }


  /* Smooth dropdown feel */
  .navbar-collapse.collapsing {
    transition: all 0.3s ease;
  }
}



.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
    background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.7),
    rgba(34, 197, 94, 0.6))
  }

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin-top: 5px;  
  width: 2.5rem;   /* default is ~1.5rem */
  height: 2.5rem;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  z-index: 1000;
 }
 
/* Hamburger lines */
.navbar-toggler-icon {
  width: 30px;
  height: 2px;
}


.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  background: var(--secondary-color);
  position: relative;
  overflow: visible;
  padding-top: 240px;
  padding-bottom: 330px;
  z-index: 10;
}


.hero-shell {
  position: relative;
  overflow: hidden;
}


@media  screen and (min-width: 991px) {
  .hero {
    height: 60vh;
  }
}


.hero-title {
  color: #ffffff;
  font-weight: 600;
}

.hero h2 {
 
  font-weight: 600;
}

.hero-text {
  position: relative;
  z-index: 10;
  top: 65px;
}

.hero-image-wrap {
  background: var(--white-color);
  border-radius: 100%;
  width: 350px;
  height: 350px;
  position: absolute;
  z-index: 22;
  top: -50px;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
}

.hero-image {
  position: absolute;
  z-index: 22;
  top: 0;
  width: 100%;
  min-width: 550px;
}

.hero svg {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
  pointer-events: none;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.profile-thumb {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.profile-title {
  border-bottom: 1px solid var(--border-color);
  padding: 15px 30px;
}

.profile-small-title {
  border-right: 1px solid var(--border-color);
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  min-width: 140px;
  margin-right: 10px;
  padding: 13px 30px;
  display: inline-block;
}

.profile-body p {
  margin-bottom: 0;
}

.profile-body p:nth-of-type(even) {
  background: var(--white-color);
}

.about-image {
  border-radius: var(--border-radius-medium);
}

.about-thumb {
  padding-right: 20px;
  padding-left: 20px;
}


/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-numbers {
  font-size: var(--h1-font-size);
  line-height: normal;
  display: block;
}

.featured-text {
  color: var(--secondary-color);
}

.featured-border-bottom {
  border-bottom: 1px solid var(--border-color);
}

.featured-border-start {
  border-left: 1px solid var(--border-color);
}


/*---------------------------------------
  CLIENTS              
-----------------------------------------*/

.clients-item-height {
	height: 120px;
}

.clients-image {
  display: block;
  max-width: 100px;
  margin: auto;
  transition: all ease 0.2s;
}

.clients-image:hover {
  transform: scale(1.3);
}


/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services,
.featured {
  background: var(--section-bg-color);
}

.services-thumb {
  background: var(--white-color);
  border: 2px solid #0dcaf085;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 40px 40px 40px 40px;
  transition: all 0.5s;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  min-height: unset;
  display: flex;
  flex-direction: column;
}


.services-thumb {
  display: flex;
  flex-direction: column;
  height: auto;
}


.services-thumb {
  position: relative;
}

.services-thumb > *:not(.services-image-wrap) {
  position: relative;
  z-index: 2;
}

.services-image-wrap {
  z-index: 1;
  pointer-events: none
}


.services-image {
  max-width: 55%;
  height: auto;
}

.services-image-wrap {
  margin-top: auto;
}


.services-center-row {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}


.services-thumb-up {
  position: relative;
  bottom: 50px;
  margin-bottom: -50px;
}

.services-thumb:hover {
  border: 2px solid var(--secondary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.services-thumb:hover .services-image-wrap {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: rotate(-35deg) translateY(35px);
  color: var(--white-color);
}

.services-image-wrap {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 55%;
  transform: rotate(-35deg) translateY(55px);
  transition: all ease 0.5s;
}

.services-image {
  max-width: 50%;
  height: auto;

}

.services-thumb:hover .services-price-wrap {
  background: var(--secondary-color);
}

.services-thumb:hover .services-price-overlay {
  background: var(--primary-color);
}

.services-price-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 6px 20px 6px 15px;
  transition: all ease 0.5s;
}

.services-price-text {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-bold);
}

.services-price-overlay {
  background: var(--secondary-color);
  border-bottom-left-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
}


/*---------------------------------------
  PROJECTS              
-----------------------------------------*/
.projects-thumb {
  background: var(--section-bg-color);
  border: 2px solid #0dcaf085;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 12px 14px;
  transition: all ease 0.5s;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}


.projects-thumb:hover {
  border-color: var(--secondary-color);
}

.projects-thumb:hover .projects-image,
.projects-thumb:focus .projects-image {
  transform: rotate(0) translateY(0);
}

.projects-thumb .popup-image {
  display: block;
  width: 100%;
  
}

.projects-image {
  border-radius: var(--border-radius-medium);
  display: block;
  
  max-width: 80%;
  margin: 12px auto 0;

  transform: rotate(10deg) translateY(80px);
  transition: all ease 0.5s;
}

.projects-title {
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
}




/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact {
  background: var(--section-bg-color);
}

.contact-info {
  background: var(--white-color);
  border-top-right-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
  padding: 60px 30px 30px 30px;
  height: 100%;
}

.contact-info-border-start {
  border-right: 1px solid #0dcaf085;
  border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
}

.contact-form {
  margin-left: 10px;
}


.contact .custom-btn {
  padding: 12px 26px;   /* vertical padding = height */
  font-size: 0.95rem;
  line-height: 1.2;
  padding: 14px 28p
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  background: var(--white-color);
  box-shadow: none;
  border: 1px solid #0dcaf085;
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.form-floating>label {
  color: var(--p-color);
}

.form-check-inline {
  vertical-align: middle;
  width: 100%;
  position: relative;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 24px;
  padding: 0;
}

.custom-form .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-label-text {
  color: var(--p-color);
  display: block;
  font-size: copyright-font-size;
  margin-top: 5px;
}

.form-check-input[type=checkbox] {
  background: var(--white-color);
  border: 2px solid var(--border-color);
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 40px 50px;
}

.form-check-input:checked[type=checkbox] {
  background-image: none;
}

.form-check-input:hover,
.form-check-input:checked {
  background-color: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-floating textarea {
  height: 150px;
}

.write-us-title , .custom-form button[type="submit"], .custom-form button[type="button"] {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.7),
    rgba(34, 197, 94, 0.6));
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus,
.custom-form button[type="button"]:hover,
.custom-form button[type="submit"]:focus
{
  background: var(--primary-color);
  border-color: transparent;
}



/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.site-footer-title {
  font-size: var(--menu-font-size);
  color: var(--dark-color);
  text-transform: uppercase;
}

.copyright-text-wrap p,
.copyright-text {
  font-size: var(--copyright-font-size);
}

.copyright-text {
  border-right: 1px solid var(--border-color);
  padding-right: 25px;
  margin-right: 20px;
}

.copyright-text-wrap a {
  font-weight: var(--font-weight-bold);
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.footer-menu-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 6px 14px;
  min-width: 70px;
}

.footer-menu-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-large);
  font-size: var(--copyright-font-size);
  color: var(--dark-color);
  display: inline-block;
  vertical-align: top;
  margin: 2px 2px 5px 2px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.social-icon-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .hero {
    padding-top: 380px;
    padding-bottom: 380px;
  }

  .hero-image-wrap {
    top: -50px;
    width: 400px;
    height: 400px;
  }

  .hero-image {
    min-width: 650px;
  }
  
  .hero-title,
	.hero h2 {
	  font-size: var(--h2-font-size);
	}
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  

  .custom-btn,
  .navbar .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }



  .navbar-brand,
  .navbar-brand:hover {
    color: var(--dark-color);
  }

  .navbar-icon {
    background: var(--secondary-color);
    color: var(--white-color);
    width: 44px;
    height: 44px;
    line-height: 44px;
  }

  .navbar .custom-btn {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
  }

  .navbar-toggler .navbar-toggler-icon,
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    background: #ffffff;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 0;
    width: 100%;
  }

  .navbar-nav .nav-link {
    color: var(--p-color);
    margin-bottom: 5px;
  }

  .hero {
    padding-top: 200px;
    padding-bottom: 75px;
  }

  .hero-text {
    top: 0;
    margin-bottom: 50px;
    margin-top: -50px;
  }

  .about-thumb {
    padding-right: 0;
    padding-left: 0;
  }

  .about-numbers {
    font-size: 42px;
  }

  .services-thumb-up {
    bottom: 0;
    margin-bottom: 32px;
    padding: 12px 14px;
  }

  .services-image-wrap {
  margin-top: 10px;
  padding-bottom: 0;

  }

  .services .col-lg-10 .row .col-lg-6:last-child,
  .projects .col-lg-4:last-child {
    margin-bottom: 0;
  }

 
  .contact-info {
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
    padding: 40px 30px;
  }

  .contact-info-border-start {
    border-right: 0;
    border-bottom: 1px solid #0dcaf085;
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
  }
}

@media screen and (max-width: 575px) {
  .navbar .container {
    margin-right: 12px;
    margin-left: 12px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 16px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: 13px;
    padding: 6px 12px;
  }

  .navbar-icon {
    font-size: var(--copyright-font-size);
    width: 35.5px;
    height: 35.5px;
    line-height: 35.5px;
  }

  .hero-image-wrap {
    width: 300px;
    height: 300px;
  }

  .hero-image {
    min-width: inherit;
  }
}


.section-title-bar {
  display: flex;
  align-items: flex-end !important;  /* Line aligns at bottom */
  width: 100%;
}

.section-title-bar .title-box {
  color: white;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.7),
    rgba(34, 197, 94, 0.6));
  padding: 10px 25px; 
  font-size: 22px;
  font-weight: 700;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Perfect bottom border line, touching the box */
.section-title-bar::after {
  content: "";
  flex-grow: 1;
  height: 3px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.7),
    rgba(34, 197, 94, 0.6));
  margin-left: 0;          /* no gap */
  margin-bottom: 0px;      /* align line with bottom of box */
}

/* small service icon */
.service-header-icon, .project-header-icon, .contact-header-icon, .about-header-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  object-fit: cover;
}

/* HERO BACKGROUND */
.hero {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,0.4), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(34,197,94,0.3), transparent 40%),
    linear-gradient(135deg, #0F172A, #020617);
}

.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: 1;
}

.hero > .container,
.hero .hero-text {
  position: relative;
  z-index: 3;
}

.hero-text1 {
  padding: 8px 24px;
  
}

@media (max-width: 768px) {
  .hero-title,
  .hero h4 {
    white-space: normal;
  }
}


/* GLASS MORPHISM BLOBS */
.blob {
  position: absolute;
  width: 500px;
  height: 500px;

  border-radius: 58% 42% 65% 35% / 40% 60% 40% 60%;

  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.7),
    rgba(34, 197, 94, 0.6)
  )
  ;

  backdrop-filter: blur(120px);
  -webkit-backdrop-filter: blur(120px);

  box-shadow:
    0 0 120px rgba(37, 99, 235, 0.6),
    inset 0 0 100px rgba(255, 255, 255, 0.15);

  opacity: 0.85;
  z-index: 2;
  pointer-events: none;
}

/* ===============================
   TOP HERO / NAV BLOB
================================ */

.blob-top {
  width: 420px;
  height: 420px;

  top: -120px;          /* pushes into nav area */
  left: 50%;
  transform: translateX(-50%);

  opacity: 0.45;
  z-index: 2;           /* ABOVE background, BELOW text */

  animation: blobTopFloat 18s ease-in-out infinite;
}

/* smoother slow movement */
@keyframes blobTopFloat {
  0% {
    transform: translate(-50%, 0) scale(1);
  }
  50% {
    transform: translate(-48%, 40px) scale(1.08);
  }
  100% {
    transform: translate(-50%, 0) scale(1);
  }
}


.blob1 {
  top: -150px;
  left: -150px;
  animation: blobMove1 12s ease-in-out infinite alternate;
}

.blob2 {
  width: 380px;
  height: 380px;
  bottom: -80px;
  right: -80px;
  opacity: 0.5;
}

/* NEW SMALL TOP RIGHT */
.blob3 {
  width: 220px;
  height: 220px;
  top: 80px;
  right: 200px;
  opacity: 0.4;
  animation: float3 20s infinite ease-in-out;
}

/* MID LEFT */
.blob4 {
  width: 300px;
  height: 300px;
  top: 250px;
  left: -100px;
  opacity: 0.35;
  animation: float4 22s infinite ease-in-out;
}

/* CENTER SOFT GLOW */
.blob5 {
  width: 250px;
  height: 250px;
  top: 150px;
  left: 40%;
  opacity: 0.25;
  animation: float5 26s infinite ease-in-out;
}

/* SMALL CENTER BLOBS */

/* soft center glow */
.blob6 {
  width: 140px;
  height: 140px;
  top: 400px;
  left: 35%;
  opacity: 0.25;
  animation: float6 18s infinite ease-in-out;
}

/* slightly right */
.blob7 {
  width: 120px;
  height: 120px;
  top: 260px;
  left: 60%;
  opacity: 0.2;
  animation: float7 20s infinite ease-in-out;
}

/* slightly left */
.blob8 {
  width: 100px;
  height: 100px;
  top: 120px;
  left: 35%;
  opacity: 0.18;
  animation: float8 22s infinite ease-in-out;
}

.blob6,
.blob7,
.blob8 {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.4),
    rgba(34, 197, 94, 0.3)
  );

  box-shadow:
    0 0 60px rgba(37, 99, 235, 0.3),
    inset 0 0 30px rgba(255, 255, 255, 0.05);
}

@keyframes floatBlob {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, 30px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes float1 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 40px); }
}

@keyframes float2 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-40px, -30px); }
}

@keyframes float3 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-30px, 50px); }
}

@keyframes float4 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, -20px); }
}

@keyframes float5 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-20px, 30px); }
}

@keyframes float6 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, 25px); }
}

@keyframes float7 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-15px, 20px); }
}

@keyframes float8 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(10px, -15px); }
}

@keyframes float9 {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-20px, 25px); }
  100% { transform: translate(0, 0); }
}

@keyframes float10 {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(30px, -20px); }
  100% { transform: translate(0, 0); }
}

@keyframes float11 {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-15px, -30px); }
  100% { transform: translate(0, 0); }
}

@keyframes float12 {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(25px, 15px); }
  100% { transform: translate(0, 0); }
}

@keyframes float13 {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-10px, 35px); }
  100% { transform: translate(0, 0); }
}

@keyframes float14 {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(20px, -25px); }
  100% { transform: translate(0, 0); }
}

@keyframes float15 {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-30px, 10px); }
  100% { transform: translate(0, 0); }
}

.blob1 {
  animation: floatBlob 12s infinite ease-in-out;
}

.blob2 {
  animation: floatBlob 16s infinite ease-in-out;
}

@keyframes blobMove1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 60px) scale(1.1);
  }
}

@keyframes blobMove2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-60px, -40px) scale(1.15);
  }
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 170, 0.25),
    rgba(0, 255, 170, 0.08),
    transparent 70%
  );
  filter: blur(70px);
  z-index: 0;

}

.hero .container {
  position: relative;
  z-index: 10;
}

.hero h2 {
  color: #E2E8F0;
}



.glass-navbar .navbar-brand,
.glass-navbar .nav-link {
  color: #E5E7EB !important;
}

.glass-navbar .nav-link:hover {
  color: var(--accent-color) !important;
}



/* NAVBAR GLASS EFFECT */

.glass-navbar {
  

  position: absolute;
  top: 0;
  width: 100%;
  z-index: 50;
}


.hero-wrapper {
  position: relative;
  overflow: hidden;
}


.glass-navbar .navbar-brand,
.glass-navbar .nav-link {
  color: #000000 !important;
}

.glass-navbar .nav-link:hover {
  color: #ffffff !important;
}


.is-sticky .glass-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: none;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.18);
}

.is-sticky .glass-navbar .nav-link,
.is-sticky .glass-navbar .navbar-brand {
  color: var(--dark-color) !important;
}


.is-sticky .glass-navbar {
  position: fixed;
  background: rgba(15, 23, 42, 0.35); /* dark glass */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  height: 7ch;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.is-sticky .glass-navbar .nav-link,
.is-sticky .glass-navbar .navbar-brand {
  color: var(--dark-color) !important;
}


/* ✅ NAVBAR MUST SIT ABOVE BLOBS */


/* navbar floats on top of hero */
.glass-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;

}

.hero > .blob {
  z-index: 2;
}

.site-footer {
  position: relative;   /* ✅ REQUIRED */
  overflow: hidden;     /* ✅ hides overflow blobs */

  border-top: 1px solid var(--border-color);
  padding-top: 80px;
  padding-bottom: 80px;

  /* OPTIONAL: match hero background vibe */
  background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,0.15), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(34,197,94,0.15), transparent 40%),
    linear-gradient(135deg, #0F172A, #020617);

  color: white;
}

/* FOOTER BLOBS */

.blob-footer1 {
  width: 350px;
  height: 350px;

  bottom: -120px;
  left: -100px;

  opacity: 0.4;
  animation: float1 18s infinite ease-in-out;
}

.blob-footer2 {
  width: 300px;
  height: 300px;

  top: -100px;
  right: -80px;

  opacity: 0.35;
  animation: float2 20s infinite ease-in-out;
}

.blob-footer3 {
  width: 200px;
  height: 200px;

  bottom: 50px;
  right: 30%;

  opacity: 0.25;
  animation: float5 22s infinite ease-in-out;
}

.site-footer .container {
  position: relative;
  z-index: 5;
}

.site-footer .blob {
  z-index: 1;
}

.site-footer,
.site-footer p,
.site-footer a {
  color: #E2E8F0;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(37,99,235,0.15),
    transparent 70%
  );
  filter: blur(80px);
  z-index: 0;
}



/* new from here */


/* ===============================
   GLOBAL CONTENT BLOBS (WHITE BG)
================================ */

.content-blob-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.content-blob-wrapper .blob {
  position: absolute;
  border-radius: 58% 42% 65% 35% / 40% 60% 40% 60%;

  /* 🔥 STRONG CORE + FADE OUT */
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.4),
    rgba(34, 197, 94, 0.3)
  );

  box-shadow:
    0 0 60px rgba(37, 99, 235, 0.3),
    inset 0 0 30px rgba(255, 255, 255, 0.05);
}

.content-blob-wrapper .blob {
  transform: scale(1.1);
}

/* BIG SOFT BACK BLOBS */

.blob-g1 {
  width: 400px;
  height: 400px;
  top: 100px;
  left: -120px;
  animation: float1 30s infinite ease-in-out;
}

.blob-g2 {
  width: 350px;
  height: 350px;
  top: 600px;
  right: -100px;
  animation: float2 27s infinite ease-in-out;
}

.blob-g3 {
  width: 300px;
  height: 300px;
  top: 1200px;
  left: 20%;
  animation: float3 23s infinite ease-in-out;
}

/* MID BLOBS */

.blob-g4 {
  width: 220px;
  height: 220px;
  top: 300px;
  right: 20%;
  opacity: 0.5;
  animation: float4 23s infinite ease-in-out;
}

.blob-g5 {
  width: 200px;
  height: 200px;
  top: 900px;
  left: 10%;
  opacity: 0.45;
  animation: float5 15s infinite ease-in-out;
}

/* SMALL AMBIENT BLOBS – ALL UNIQUE */

.blob-g6 {
  width: 120px;
  height: 120px;
  top: 200px;
  left: 55%;
  opacity: 0.35;
  animation: float6 18s infinite ease-in-out;
}

.blob-g7 {
  width: 140px;
  height: 140px;
  top: 500px;
  right: 25%;
  opacity: 0.4;
  animation: float7 20s infinite ease-in-out;
}

.blob-g8 {
  width: 100px;
  height: 100px;
  top: 800px;
  left: 65%;
  opacity: 0.3;
  animation: float8 22s infinite ease-in-out;
}

.blob-g9 {
  width: 160px;
  height: 160px;
  top: 1100px;
  right: 8%;
  opacity: 0.38;
  animation: float3 24s infinite ease-in-out;
}

.blob-g10 {
  width: 130px;
  height: 130px;
  top: 1400px;
  left: 25%;
  opacity: 0.32;
  animation: float4 19s infinite ease-in-out;
}

.blob-g11 {
  width: 150px;
  height: 150px;
  top: 1700px;
  right: 35%;
  opacity: 0.36;
  animation: float5 21s infinite ease-in-out;
}

.blob-g12 {
  width: 110px;
  height: 110px;
  top: 2000px;
  left: 12%;
  opacity: 0.28;
  animation: float6 23s infinite ease-in-out;
}

.blob-g13 {
  width: 170px;
  height: 170px;
  top: 2300px;
  right: 20%;
  opacity: 0.4;
  animation: float7 26s infinite ease-in-out;
}

.blob-g14 {
  width: 140px;
  height: 140px;
  top: 2600px;
  left: 45%;
  opacity: 0.34;
  animation: float8 20s infinite ease-in-out;
}

.blob-g15 {
  width: 180px;
  height: 180px;
  top: 2900px;
  right: 12%;
  opacity: 0.42;
  animation: float3 25s infinite ease-in-out;
}

/* scatter them */
.blob-g6 { top: 200px; left: 50%; }
.blob-g7 { top: 500px; right: 30%; }
.blob-g8 { top: 800px; left: 25%; }
.blob-g9 { top: 1100px; right: 10%; }
.blob-g10 { top: 1400px; left: 80%; }
.blob-g11 { top: 1700px; right: 40%; }
.blob-g12 { top: 2000px; left: 85%; }
.blob-g13 { top: 2300px; right: 25%; }
.blob-g14 { top: 600px; left: 15%; }
.blob-g15 { top: 1900px; right: 90%; }


.content-blob-wrapper > *:not(.blob) {
  position: relative;
  z-index: 2;
}

.content-blob-wrapper .blob {
  animation: floatBlob 19s infinite ease-in-out;
  z-index: 1;
}

.content-blob-wrapper > * {
  position: relative;
  z-index: 2;
}

.about, 
.services,
.contact,
.projects {
  background: rgba(248, 250, 252, 0); /* instead of solid */

}

.content-blob-wrapper section {
  position: relative;
  z-index: 2;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}


.services-intro-text {
    max-width: 720px;
    margin: 0 auto 12px;
    font-size: 15px;
}

.msg {
  display: none;
  text-align: center;
  margin-top: 10px;
}
.success { color: green; }
.error { color: red; }

/*================================
   CTA MODAL – THEME OVERRIDES
================================ */

/* Modal background */
#ctaModal .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

/* Modal header */
#ctaModal .modal-header {
  background: linear-gradient(135deg, #0b1b2b, #0ea5a4);
  color: #ffffff;
  border-bottom: none;
  padding: 18px 24px;
}

#ctaModal .modal-title {
  font-size: 20px;
  font-weight: 700;
}

/* Close button */
#ctaModal .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

#ctaModal .btn-close:hover {
  opacity: 1;
}

/* Modal body */
#ctaModal .modal-body {
  padding: 22px 24px 10px;
}

/* Labels */
#ctaModal .form-label {
  font-size: 14px;
  font-weight: 600;
  color: #0b1b2b;
  margin-bottom: 4px;
}

/* Inputs & textarea */
#ctaModal .form-control {
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#ctaModal .form-control:focus {
  border-color: #0ea5a4;
  box-shadow: 0 0 0 3px rgba(14, 165, 164, 0.18);
}

/* Modal footer */
#ctaModal .modal-footer {
  border-top: none;
  padding: 10px 24px 22px;
}

/* Submit button */
#ctaModal .btn-primary {
  background: linear-gradient(135deg, #0ea5a4, #2563eb);
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#ctaModal .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.4);
}

#ctaModal .btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}


.write-us-title {
  background: linear-gradient(
    135deg,
    rgba(55, 116, 237, 0.7),
    rgba(154, 234, 194, 0.6));
  border: none;
  border-radius: var(--border-radius-medium);
  color: rgb(30, 28, 28);
  transition: all 0.3s;
  margin-bottom: 30px;
  padding: 10px;
  text-align: center;
}

/* Ensure intl-tel-input stretches like Bootstrap input */
.iti {
  width: 100%;
}

/* Align input height with Bootstrap */
.iti input.form-control {
  padding-left: 90px !important; /* space for flag + code */
  height: calc(2.5rem + 2px);   /* Bootstrap default height */
}

/* Align flag container vertically */
.iti__flag-container {
  padding: 0 10px;
}

/* Make flag section match input height */
.iti__selected-flag {
  height: 100%;
  display: flex;
  align-items: center;
}

/* Fix dropdown z-index inside modal */
.iti__country-list {
  z-index: 1056; /* higher than Bootstrap modal */
}



/* Navbar logo link */
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  }


  
/* Ensure horizontal alignment */
.navbar > .container-fluid {
  display: flex;
  align-items: center;
}


/* Wrapper */
.brand-logo {
  text-decoration: none;
  white-space: nowrap;
  gap: 6px;
}

/* ✅ Logo image – BIGGER, LESS GAP */
.brand-logo__image {
  width: 72px;          /* increased logo size */
  height: auto;
  object-fit: contain;
  margin-right: 4px;    /* reduced gap */
  flex-shrink: 0;
}

/* Text container */
.brand-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

/* Brand name */
.brand-logo__name {
  font-weight: 700;
  font-size: 2.8rem;    /* slightly bigger text */
  color: #ffffff;
}

/* Tagline */
.brand-logo__tagline {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0;        /* no extra gap */
  opacity: 0.8;
}

/* Keep logo left on tablet/mobile */
@media (max-width: 991px) {
  .navbar-brand {
    margin-right: auto !important;
  }

  .brand-logo__image {
    width: 64px;        /* still big on mobile */
    margin-right: 4px;
  }
}


@media (max-width: 576px) {
  .brand-logo__name {
    font-size: 1.6rem;
  }

  .brand-logo__tagline {
    font-size: 0.55rem;
  }
}




.responsive-text {
  display: block;
  padding: 0.5rem 1rem;          /* balanced inner spacing */
  margin: 0 auto 1rem auto;      /* center + bottom space */
  max-width: 70ch;               /* auto line length for readability */
  text-align: justify;           /* clean alignment */
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.3;
  word-spacing: 0.05em;
}

/* Mobile optimization */
@media (max-width: 576px) {
  .responsive-text {
    
    padding: 0.5rem;
  }
}