/* ===============================
   CSS VARIABLES
   =============================== */
:root {
    --primary-orange: #ff6b35;
    --primary-blue: #2e86ab;
}

* {
  scrollbar-width: none !important;
  scrollbar-color: #ffffff #ffffff !important;
}

/* ===============================
     RESET AND BASE STYLES
     =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ===============================
     UTILITY CLASSES
     =============================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* navigation */
.navbar {
    transition: all 0.3s ease;
    background-color: transparent !important;
    font-weight: 700;
    height:80px;
}

.navbar.scrolled {
    background-color: #14192D !important;
    backdrop-filter: blur(10px);
    height: 80px;
}

.navbar-nav .nav-link:hover {
    color: #ff6b6b !important;
}

.nav-logo {
    height: 25px;
}

.navbar-nav .nav-link.active {
    color: #e55a2b !important;
}

@media (min-width: 992px) {
    .navbar-collapse {
        border-radius: 0 !important;
        margin-top: 0 !important;
        height: 80px;
    }
}

@media (max-width: 991.98px) {
    .navbar.mobile-menu-open {
        background-color: #14192D !important;
    }

    .cta-section .dot-img-1 {
        display: none;
    }

    .navbar-collapse {
        background-color: #14192D;
    }
}

@media (max-width: 344px) {
    .services-img{
        width: 250px;
    }
}

/******* header text section *********** */
header {
    width: 100%;
    position: absolute;
    z-index: 1500;
    color: white;
    padding: 10px 0;
}

.header-text h2 {
  position: absolute;
  font-family: "Roboto";
  font-size: 19px;
  font-weight: 300;
  top: 100px;
}

.background-img {
  position: relative;
  height: 100vh;
}

.background-img img {
  width: 100%;
  height: auto;
}

.header-text h1 {
  font-size: 50px;
  position: relative;
  top: 135px;
}

.header-text h1::before {
  content: "●";
  color: #f57c00;
  position: absolute;
  left: 55px;
  top: -45px;
  font-size: 16px;
}

.header-text p {
  font-size: 15px;
  position: relative;
  top: 120px;
  color: #e1e1e1;
  line-height: 30px;
  max-width: 707px;
  letter-spacing: 0.2px;
  text-align: justify;
  font-family: "Syne", sans-serif;
}

.text-blue {
  color: #f57c00;
  font-family: "Satisfy";
}

/* Media Query for Mobile Responsiveness */
@media (max-width: 1200px) {
  .background-img img {
    height:500px;
  }

   /* Services Intro Mobile */
    .services-intro-row {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
  .text-blue {
    font-size: 35px;
    text-align: center;
  }

  .text-orange {
    margin-left: -22px;
  }

  .header-text h1 {
    padding: 15px;
  }

  .header-text p {
    font-size: 15px;
    top: 115px;
    left: -10px;
    padding: 10px;
  }

  .agile-section{
    padding: 10px;
  }
}

@media(max-width:568px) {
    .agile-section{
        padding: 10px !important;
    }

    .background-img img{
        height: 550px !important;
    }

    .services-title {
        text-align: left;
    }
}

/* ===============================
     SERVICES INTRO SECTION
     =============================== */
.services-intro-section {
    background: #f8f9fa;
    position: relative;
}

.services-intro-content {
    position: relative;
    z-index: 2;
}

.services-intro-header {
    padding: 60px 0;
    gap: 40px;
    position: relative;
}

.services-left-shape-svg {
    position: absolute;
    left: 0;
    top: 0;
}

.services-right-shape-svg {
    position: absolute;
    bottom: 0;
    right: 0;
}

.services-intro-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.services-image {
    flex: 1;
    position: relative;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.services-content {
    flex: 1;
    padding-left: 20px;
}

.services-title {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 30px;
    color: #2f327d;
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 22px;
}

.services-section .services-title{
    text-align: center;
    font-size: 22px;
}

.services-title .highlight {
    color: #f57c00;
    font-size: 22px;
}

.services-subtitle {
    font-weight: 600;
    font-style: Bold;
    font-size: 22px;
    margin-bottom: 20px;
    font-family: Poppins;
}

.services-description {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #646464;
    margin-bottom: 20px;
    line-height: 2;
    text-align: justify;
}

/* ===============================
     SERVICES SECTION
     =============================== */
.services-section {
    padding: 50px 0;
    background: white;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 10px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    color: var(--primary-blue);
    transform: scale(1.05);
}

.service-card h3 {
    font-family: "Syne", sans-serif;
    margin-bottom: 1rem;
    color: #2F327D;
    font-family: Poppins;
    font-weight: 500;
    font-size: 20px;
}

.service-card p {
    color: #041D38;
    font-size: 15px;
    left: 45px;
    text-align: justify;
    top: 105px;
    font-family: 'Syne', sans-serif;
    max-width: 489px;
}

/* ===============================
     MODAL STYLES
     =============================== */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
    color: #2f327d;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
}

.modal-title {
    font-family: "Syne", sans-serif;
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
}

.close-btn{
    border: none;
    background: white;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.tech-icon {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 80px;
}

.tech-icon:hover {
    background: #a1a3a784;
    color: white;
    transform: translateY(-5px);
}

.tech-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

/* ===============================
     AGILE PROCESS SECTION
     =============================== */
.agile-section {
    padding:60px;
    background: #f8f9fa;
    text-align: justify;
}

.agile-section h2 {
    font-family: "Syne", sans-serif;
    margin-bottom: 2rem;
    font-family: Poppins;
    font-weight: 600;
    font-size: 22px;
}

.agile-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #6c757d;
    text-align: justify;
    font-family: poppins;
}

.agile-image{
    width: auto;
}

/* ===============================
     CALL TO ACTION SECTION
     =============================== */
.cta-section {
    position: relative;
    padding: 50px 20px;
}

.cta-card {
    background: linear-gradient(135deg, #1a1b3e 0%, #2d2f5f 100%);
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(26, 27, 62, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.dot-img-1 {
    position: absolute;
    top: -100px;
    right: -120px;
    z-index: -100;
}

.dot-img-1 img {
    height: auto;
    opacity: 0.9;
}

.cta-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    text-align: left;
}

.cta-content h3 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    font-family: "Syne", sans-serif;
}

.cta-content p {
    color: #b8bcc8;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
}

.cta-button-wrapper {
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    padding: 9px 23px;
    border-radius: 33px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    font-family: "Syne", sans-serif;
}

.cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.arrow-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.cta-btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* ===============================
     RESPONSIVE DESIGN
     =============================== */
@media (max-width: 768px) {
    /* Navigation Mobile */
    nav {
        flex-direction: column;
        height: 100px;
        width: 100%;
        padding: 0px;
        background-color: rgba(20, 25, 45, 0.8);
    }

    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 53px;
        left: 0;
        right: 0;
        background-color: rgba(20, 25, 45, 1);
        display: none;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
        margin-top: 26px;
        row-gap: 35px;
    }

    #nav-logo {
        padding-left: 20px;
        margin-left: -182px;
        margin-top: 32px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        padding: 10px;
        margin-right: -326px;
        position: absolute;
        top: 32px;
    }

    .services-content {
        padding-left: 0;
    }

    .services-title {
        font-size: 22px;
    }

    .services-subtitle {
        font-size:22px;
    }

    /* Service Cards Mobile */
    .service-card {
        padding: 2rem 1.5rem;
    }

    /* Agile Section Mobile */
    .agile-image img {
        width: 300px;
    }

    .agile-section h2{
        font-size: 22px;
    }

    /* CTA Section Mobile */
    .cta-card {
        padding: 40px 24px;
        border-radius: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .cta-content {
        text-align: center;
    }

    .cta-content h3 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-button-wrapper {
        align-self: center;
    }

    .dot-img-1 {
        top: -30px;
        right: -40px;
    }

    .dot-img-1 img {
        width: 140px;
    }

    .cta-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .cta-section h3 {
        font-size: 2rem;
    }

    .services-intro-header {
        padding: 20px;
        gap: 40px;
        position: relative;
    }

    .agile-section {
        padding: 20px;
        gap: 40px;
        position: relative;
    }

    .agile-section p{
        font-size: 14px;
    }

    .services-description{
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cta-content h3 {
        font-size: 1.75rem;
    }

    .cta-card {
        padding: 32px 20px;
    }
}

.footer-content{
    padding-top: 20px;
}

/* footer */
.company_infor_footer{
  margin: 30px 0 0 30px !important;
}

.quick_link_footer{
  margin: 30px 0 0 50px !important;
}

.service_footer_sec{
  margin: 30px 0 0 30px !important ;
}

@media (min-width: 768px) and (max-width: 991px) {
    .company_infor_footer{
      margin: 30px 0 0 30px !important;
    }

    .quick_link_footer{
      margin: 30px 0 0 30px !important;
    }

    .service_footer_sec{
  margin: 30px 0 0 30px !important;
}
}

@media(max-width:1400px) {
  .company_infor_footer{
    margin: 30px 0 0 0 !important;
  }

  .quick_link_footer{
  margin: 30px 0 0 0px !important;
}

.service_footer_sec{
  margin: 30px 0 0 30px !important;
}
}

@media(max-width:1200px) {
  .company_infor_footer{
    margin: 30px 0 0 0 !important;
  }

  .quick_link_footer{
  margin: 30px 0 0 0px !important;
}

.service_footer_sec{
  margin: 30px 0 0 30px !important;
}
}

@media (max-width: 768px) {
  .footer-section {
    padding: 40px 0 20px;
    background-color: #14192d;
  }

  .footer-background {
    display: none !important;
  }

  .footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
  }

  .footer-section .col-lg-4,
  .footer-section .col-lg-3 {
    margin: 20px 0 0 0 !important;
  }

  .section-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

