/********** Template CSS **********/
:root {
    --primary: #091929;
    --secondary: #FBA504;
    --light: #F6F4F9;
    --dark: #04000B;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}


/*** Hero Header ***/
.hero-header {
  margin-bottom: 6rem;
  padding: 18rem 0;
  background-color: #091929 !important;
  background: url(../img/blob-top-left.png), url(../img/blob-top-right.png),
    url(../img/blob-bottom-left.png), url(../img/blob-bottom-right.png),
    url(../img/blob-center.png), url(../img/bg-bottom.png);
  background-position: left 0px top 0px, right 0px top 0px, left 0px bottom 0px,
    right 0px bottom 0px, center center, center bottom;
  background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}

/*** Feature ***/
.feature-dark {
  background-color: #ee690a !important;
}

.feature-dark h5,
.feature-dark p,
.feature-dark em,
.feature-dark i {
  color: #ffffff;
}
.feature-section {
  background-color: #091929 !important;
}
.feature-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: 0.5s;
}

.feature-item:hover {
  margin-top: -15px;
}

/*** About ***/
.About-section {
  background-color: #091929;
}
/* Make all text white in About section */
.About-section h1,
.About-section h2,
.About-section h3,
.About-section h4,
.About-section h5,
.About-section h6,
.About-section p,
.About-section a {
  color: white;
}

/* Change Read More button color */
.About-section .btn-primary {
  background-color: #ee690a;
  border-color: #ee690a;
}

/* Button hover (when mouse goes on it) */
.About-section .btn-primary:hover {
  background-color: #d85d08;
  border-color: #d85d08;
}
.progress {
  height: 5px;
}

.progress .progress-bar {
  width: 0px;
  transition: 3s;
}

/*** Fact ***/
.fact {
    margin: 6rem 0;
    background-color: #0D1B2A !important;
    background-image:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}

/*** Service ***/
.service-item {
  position: relative;
  padding: 45px 30px;
  background: #091929; /* Dark background */
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.4s;
}

/* Image icon */
.service-icon img {
  width: 120px;
  height: auto;
  display: block;
  margin: auto;
  transition: 0.4s;
}

/* Remove blue/yellow backgrounds */
.service-item .service-icon,
.service-item:hover .service-icon {
  background: none;
}

/* Text colors */
.service-item h5 {
  color: #ffffff; /* White heading */
  transition: 0.4s;
}

.service-item p {
  color: #d1d5db; /* Light grey text */
  transition: 0.4s;
}

/* Hover effect (keep same dark bg) */
.service-item:hover {
  margin-top: -15px;
  padding-bottom: 60px;
  background: #091929;
}

/* Button */
.service-item a.btn {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #091929;
  border-radius: 40px 40px 0 0;
  transition: 0.4s;
}

/* Button hover */
.service-item a.btn:hover {
  background: #ffffff;
  color: #000000;
}

.service-item:hover a.btn {
  bottom: 0;
}

/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 34, 204, .9);
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background-color: #0D1B2A !important;
    background-image:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}

/* ----- MONKEY SECTION STYLE ----- */
.monkey-section {
  --bg-color: #ffd100;
  --curve-color: #ffb6dc;
  background-color: var(--bg-color);
  padding: 100px 20px 180px;
  text-align: center;
  position: relative;
  transition: background-color 0.3s ease;
  font-family: "Segoe UI", Arial, sans-serif;
}

.monkey-section::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -10%;
  width: 120%;
  height: 250px;
  background-color: var(--curve-color);
  border-radius: 0 0 100% 100%;
  transition: background-color 0.3s ease;
  z-index: 1;
}

.monkey-section h2,
.monkey-row,
.note {
  position: relative;
  z-index: 10;
}

.monkey-section h2 {
  font-size: 36px;
  color: #0a1e2c;
  margin-top: 0;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
}

.monkey-row {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 70px;
  flex-wrap: wrap;
}

.monkey-img {
  height: 200px;
  width: auto;
  cursor: pointer;
  background: white;
  padding: 12px 12px 0;
  border-radius: 24px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  border: 3px solid white;
}

.monkey-img:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 22px 30px rgba(0, 0, 0, 0.3);
}

.note {
  margin-top: 40px;
  font-size: 20px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.8);
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  color: #222;
  backdrop-filter: blur(4px);
}

/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}


/*** Team ***/
.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

/*** about us ***/
.about-zidoodoo {
  background-color: #091929;
  color: #ffffff;
  padding: 100px 20px;
}

.about-zidoodoo h2 {
  color: white !important;
}
.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Content */
.about-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.orange-line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #ee690a;
  margin-bottom: 30px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* List */
.about-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.about-list li {
  padding-left: 25px;
  margin-bottom: 12px;
  position: relative;
}

.about-list li::before {
  content: "•";
  color: #ee690a;
  position: absolute;
  left: 0;
  font-size: 22px;
}

/* Images */
.about-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.image-box {
  border: 2px solid #ee690a;
  border-radius: 12px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* SEO Booster */
.seo-booster {
  max-width: 900px;
  margin: 80px auto 0;
  border-top: 1px solid #ee690a;
  padding-top: 30px;
  text-align: center;
}

.seo-booster p {
  font-size: 14px;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 991px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .orange-line {
    margin: 20px auto 30px;
  }
}

/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    background:
        url(../img/bg-top.png),
        url(../img/map.png);
    background-position:
        center top,
        center center;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}

/* ============================= */
/* SERVICES HERO SECTION */
/* ============================= */

.hero-section {
  background-color: #0d1b2a;
  padding: 120px 20px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: auto;
}

.hero-content h1 {
  color: #ee690a;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
}

/* SERVICES SECTION */
.services-section {
  width: 100%;
}

/* ROW */
.service-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 100px 10%;
}

/* FIRST SERVICE */
.service-row:first-child {
  background-color: #ee690a;
}

.service-row:first-child h2,
.service-row:first-child p,
.service-row:first-child .accordion-btn {
  color: #0d1b2a;
}

/* SECOND SERVICE */
.service-row.reverse {
  background-color: #0d1b2a;
}

.service-row.reverse h2,
.service-row.reverse h5,
.service-row.reverse .accordion-btn {
  color: #ffffff;
}

/* Change paragraph color to black */
.service-row.reverse p {
  color: #ffffff;
}

/* ACCORDION */
.accordion-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
}

.service-row.reverse .accordion-btn {
  background: rgba(255, 255, 255, 0.1);
}

.accordion-content {
  background: rgba(255, 255, 255, 0.15);
  color: inherit;
}

/* ROW */
.service-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}

/* REVERSE ROW */
.service-row.reverse {
  flex-direction: row-reverse;
}

/* COLUMNS */
.service-image,
.service-text {
  flex: 1;
}

/* IMAGE */
.service-image img {
  width: 80%;
  max-width: 500px;
  display: block;
}

/* TEXT */
.service-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.service-text p {
  color: #555;
  margin-bottom: 20px;
}

/* ACCORDION */
.accordion-btn {
  width: 100%;
  padding: 14px;
  background: #f4f4f4;
  border: none;
  margin-bottom: 8px;
  font-weight: 600;
  cursor: pointer;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fafafa;
  padding: 0 15px;
}

/* MOBILE */
@media (max-width: 991px) {
  .service-row,
  .service-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .service-image img {
    margin: auto;
  }
}
/* SERVICES HERO SECTION end */
/* ============================= */
/* Our Work Section Start */
/* ============================= */
.our-work {
  background: #0d1b2a;
  padding: 80px 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: #ee690a;
  font-size: 42px;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 18px;
  opacity: 0.9;
}

/* Work Card */
.work-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #ffffff;
  color: #000;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 50px;
}

/* Slider */
.image-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.image-slider img {
  width: 100%;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: start;
}

/* Content */
.work-content {
  padding: 40px;
}

.work-content h3 {
  font-size: 30px;
  margin-bottom: 5px;
}

.industry {
  color: #ee690a;
  font-weight: 600;
}

.overview {
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.6;
}

/* Dropdown */
details {
  background: #f7f7f7;
  padding: 15px;
  border-radius: 8px;
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: #0d1b2a;
}

.details-content {
  margin-top: 20px;
}

.details-content h4 {
  color: #ee690a;
  margin-bottom: 8px;
}

.details-content ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.details-content li {
  margin-bottom: 6px;
}

/* Button */
.visit-btn {
  display: inline-block;
  margin-top: 15px;
  background: #ee690a;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.visit-btn:hover {
  background: #0d1b2a;
}

/* Responsive */
@media (max-width: 900px) {
  .work-card {
    grid-template-columns: 1fr;
  }

  .image-slider img {
    height: 300px;
  }
}
/* Our Work Section end */
/* ============================= */
/* Contact Section Start */
/* ============================= */

.contact-section {
  background: #091929;
  padding: 80px 0;
}

.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: stretch;
  gap: 40px;
}

/* LEFT */
.contact-info {
  flex: 1;
}

.contact-info h2 {
  color: #ee690a!important;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #fff;
  font-size: 16px;
}

.info-item i {
  color: #ee690a;
  font-size: 18px;
  margin-right: 15px;
}

/* RIGHT */
.contact-map {
  flex: 1;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 8px;
}
/* ============================= */
/* Zidoodoo Offerings Section */
/* ============================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #0d1b2a;
}

.offerings {
  width: 100%;
  padding: 100px 8%;
  background: #0d1b2a;
}

.offer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 120px;
  gap: 60px;
}

.offer-row.reverse {
  flex-direction: row-reverse;
}

.offer-text {
  flex: 1;
}

.offer-text h2 {
  font-size: 42px;
  color: #ee690a;
  margin-bottom: 20px;
  font-weight: 700;
}

.offer-text p {
  font-size: 18px;
  color: #bcbcbc;
  line-height: 1.7;
  max-width: 500px;
}

.offer-video {
  flex: 1;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.4s ease;
  position: relative;
  background: #1a2e3f;
}

.offer-video img,
.offer-video video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s ease;
  display: block;
}

.offer-video img {
  position: relative;
  z-index: 2;
}

.offer-video video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.offer-video:hover img {
  opacity: 0;
  pointer-events: none;
}

.offer-video:hover video {
  z-index: 3;
}

.offer-video:hover {
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 992px) {
  .offer-row,
  .offer-row.reverse {
    flex-direction: column;
  }

  .offer-video img,
  .offer-video video {
    height: 300px;
  }

  .offer-text h2 {
    font-size: 32px;
  }
}

/* Play icon overlay (optional) */
.offer-video::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  background:(238, 105, 10, 0.8);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.offer-video:hover::after {
  opacity: 1;
}
/* ============================= */
/* Whatsapp button Section */
/* ============================= */

.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 25px;
  background-color: #25d366;
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  text-align: center;
  font-size: 38px;
  line-height: 68px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #20b859;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.whatsapp-float i {
  vertical-align: middle;
}
/* ===== MODERN GLASSMORPHISM FORM STYLES ===== */
.contact-wrapper-modern {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-family: "Jost", "Heebo", sans-serif;
}

.contact-content-modern {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem;
}

.row-modern {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.justify-content-center {
  justify-content: center !important;
}

.col-modern-lg-8 {
  flex: 0 0 auto;
  width: 66.66667%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-modern-md-6 {
  flex: 0 0 auto;
  width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-modern-12 {
  flex: 0 0 auto;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.g-4 {
  --bs-gutter-y: 1.5rem;
  --bs-gutter-x: 1.5rem;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.g-4 > * {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.card-modern {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
}

.card-body-modern {
  flex: 1 1 auto;
  padding: 3rem;
}

/* Form elements */
.form-label-modern {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.input-group-modern {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.input-group-modern:focus-within {
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.input-group-text-modern {
  display: flex;
  align-items: center;
  padding: 0.85rem 1.2rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #667eea;
  text-align: center;
  white-space: nowrap;
  background-color: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem 0 0 0.75rem;
}

.form-control-modern {
  display: block;
  width: 100%;
  padding: 0.85rem 1.2rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #e0e0e0;
  border-radius: 0 0.75rem 0.75rem 0;
  transition: all 0.3s ease;
}

.form-control-modern:focus {
  border-color: #667eea;
  outline: 0;
  box-shadow: none;
}

.form-control-modern::placeholder {
  color: #aaa;
  font-weight: 300;
}

.border-start-0 {
  border-left-width: 0 !important;
  border-left-style: none !important;
}

.border-end-0 {
  border-right-width: 0 !important;
  border-right-style: none !important;
}

.ps-0 {
  padding-left: 0 !important;
}

/* Checkbox */
.form-check-modern {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.8em;
  margin-bottom: 0.5rem;
}

.form-check-input-modern {
  float: left;
  width: 1.2em;
  height: 1.2em;
  margin-left: -1.8em;
  margin-top: 0.15em;
  cursor: pointer;
  accent-color: #667eea;
}

.form-check-input-modern:checked {
  background-color: #667eea;
  border-color: #667eea;
}

.form-check-label-modern {
  cursor: pointer;
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Button */
.btn-modern {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-modern::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn-modern:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary-modern {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  z-index: 1;
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.5);
}

.btn-primary-modern:disabled {
  opacity: 0.65;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

/* Alert */
.alert-modern {
  position: relative;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shared utilities */
.text-center {
  text-align: center !important;
}

.text-primary {
  color: #667eea !important;
}

.text-white {
  color: #fff !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.8) !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-dark {
  color: #333 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.display-5 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  border-radius: 50rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shadow-lg {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

.border-0 {
  border: 0 !important;
}

.w-100 {
  width: 100% !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.px-lg-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-5 {
  padding: 3rem !important;
}

/* Alert states */
.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

.d-none {
  display: none !important;
}

/* Spinner */
.spinner-border {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  border: 0.2em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

/* Text decoration */
.text-decoration-none {
  text-decoration: none !important;
}

/* Responsive */
@media (max-width: 992px) {
  .col-modern-lg-8 {
    width: 100%;
  }

  .contact-content-modern {
    padding: 1.5rem;
  }

  .card-body-modern {
    padding: 2rem;
  }

  .display-5 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .col-modern-md-6 {
    width: 100%;
  }

  .card-body-modern {
    padding: 1.5rem;
  }

  .display-5 {
    font-size: 2rem;
  }

  .btn-modern {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .contact-content-modern {
    padding: 1rem;
  }

  .p-5 {
    padding: 1.5rem !important;
  }

  .badge {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }
}