/* ===========================
   GLOBAL STYLES & TYPOGRAPHY
=========================== */
:root {
  --primary-color: #e2ff00;   /* Teal */
  --primary-dark: #f8fdfd;
  --accent-color: #FFD700;    /* Yellow */
  --light-gray: #f8f9fa;
  --dark-bg: #111827;
  --text-dark: #222;
  --text-gray: #555;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;       /* large base text */
  line-height: 1.8;      /* more readable */
  margin: 0;
  padding: 0;
  color: var(--text-dark);
  background: #fff;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.3;
}

p {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 1rem;
}


/* ===========================
   NAVBAR
=========================== */
.navbar {
  background: #0b2b1c;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.08);
}

/*.navbar-brand img {*/
/*  height: 55px;*/
/*  transition: transform 0.3s ease;*/
/*}*/

.web-logo {
    margin-top: -10px;
    transition: transform 0.3s ease;
}

.mobile-logo {
        /*height: 55px;*/
   margin-top: 0px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 19px;   /* larger nav text */
  margin-left: 1.5rem;
  transition: color 0.3s ease;
  border-radius: 8px;
  padding: 8px 14px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
  background: rgba(235, 227, 14, 0.08);
}

.navbar-toggler {
  border: none;
}

/*.navbar-toggler-icon {*/
/*  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,128,128,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");*/
/*}*/

/* Sticky effect */
.navbar.fixed-top.scrolled {
  background: #fff;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.12);
}

/* ===========================
   SECTION HEADERS
=========================== */
.section-header .section-subtitle {
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.section-header .section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
.title-divider .line {
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}
.title-divider .square {
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  margin: 0 12px;
}


/* ===========================
   SLIDER 
=========================== */

@media (max-width: 425px) {
  .med-slider-wrapper {
    display: none !important;
  }
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-section {
  padding: 90px 0;
}

.about-content .section-title {
  font-size: 38px;
  font-weight: 700;
}

.about-text p {
  position: relative;
  padding-left: 28px;
}
.about-text .highlight-icon {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--accent-color);
  font-size: 12px;
}

.about-cta .btn {
  font-size: 18px;
  font-weight: 600;
  padding: 12px 28px;
}

.about-image-wrapper {
  text-align: center;
}
.about-main-image {
  border-radius: 16px;
  max-width: 100%;
  transition: transform 0.4s ease;
}
.about-main-image:hover {
  transform: scale(1.03);
}

/* ===========================
   SERVICES SECTION
=========================== */
#services {
  background-color: #f3fdf8;
  padding: 90px 0;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.service-title {
  font-size: 22px;
  font-weight: 700;
}

.service-card p {
  font-size: 17px;
  color: #666;
}

.btn-teal {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  font-size: 17px;
  font-weight: 600;
  padding: 12px 24px;
  transition: background 0.3s ease;
  border-radius: 8px;
}
.btn-teal:hover {
  background-color: var(--primary-dark);
  color: #fff;
}

/* ===========================
   REVIEWS SECTION
=========================== */
.reviews-section {
  padding: 90px 0;
  background: #f8f9fa;
}

.reviews-section .card {
  border-radius: 20px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reviews-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.reviews-section .card-text {
  font-size: 17px;
  color: #444;
}
.reviews-section h5 {
  margin-top: 12px;
  font-size: 19px;
  font-weight: 600;
}
.reviews-section small {
  font-size: 15px;
  color: #777;
}

/* ===========================
   FOOTER
=========================== */
.tech-footer {
  background: var(--dark-bg);
  color: #ddd;
  font-size: 18px;  /* bigger footer text */
  padding: 3rem 2rem;
}

.tech-footer .footer-title {
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 1rem;
  position: relative;
}
.tech-footer .footer-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  margin-top: 8px;
  border-radius: 2px;
}

.tech-footer a {
  color: #ccc;
  font-size: 18px;
  transition: color 0.3s ease;
}
.tech-footer a:hover {
  color: var(--primary-color);
}

.tech-footer .btn-outline-light {
  border-color: #ccc;
  color: #ccc;
  font-size: 18px;
  transition: all 0.3s ease;
}
.tech-footer .btn-outline-light:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.contact-info li h5 {
  font-size: 18px;
  font-weight: 600;
}

.tech-footer .border-top {
  border-color: rgba(255,255,255,0.1) !important;
}
.tech-footer p {
  margin: 0;
  font-size: 16px;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    margin: 0.6rem 0;
    font-size: 18px;
  }
  .tech-footer {
    text-align: center;
  }
  .contact-info li {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 2rem;
  }
}

/* ===========================
   SLIDER HEIGHT CONTROL
=========================== */
/*.med-slider {*/
/*  height: 50vh;*/
/*  overflow: hidden;*/
/*}*/

.med-slider .carousel-item img {
  max-height: 400px;      /* match parent height */
  width: 100%;
  object-fit: cover !important;  /* ensures image scales and crops nicely */
}

/*.med-slider .carousel-caption {*/
/*  bottom: 20px;*/
/*}*/


  /* Light green background for the services section */
  #services {
    background-color: #f3fdf8; /* very soft mint green */
  }

  /* Optional: improve service card hover */
  .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
  }

  /* Custom teal button */
  .btn-teal {
    background-color: #008080;
    color: #fff;
    border: none;
  }
  .btn-teal:hover {
    background-color: #006666;
    color: #fff;
  }
/* ===============================
   Services Section - Larger Cards
   =============================== */
.service-card {
  background: #fff;
  padding: 2.5rem 2rem;       /* balanced padding */
  transition: all 0.4s ease-in-out;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  height: 380px;              /* taller card */
  min-width: 320px;           /* wider card */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* keeps button aligned neatly */
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Icons */
.service-card .icon-wrapper i {
  font-size: 4.2rem;          /* larger icon */
  margin-bottom: 1rem;
  color: var(--teal-primary);
  transition: transform 0.4s ease, color 0.3s ease;
}
.service-card:hover .icon-wrapper i {
  transform: rotate(360deg) scale(1.15);
  color: var(--teal-dark);
}

/* Titles */
.service-card h4 {
  font-size: 1.8rem;          /* bigger title */
  font-weight: 700;
  margin-bottom: 0.8rem;
}

/* Paragraphs */
.service-card p {
  font-size: 1.15rem;         /* bigger paragraph text */
  line-height: 1.6;
  flex-grow: 1;               /* ensures text uses available space */
}

/* Button */
.service-card .btn {
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  background: var(--teal-primary);
  color: #fff;
  transition: all 0.3s ease;
}
.service-card .btn:hover {
  background: var(--teal-dark);
  color: #fff;
}
.btn-teal {
  background: #009688; /* Teal */
  color: #fff !important;
  border: 2px solid #009688;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-teal:hover {
  background: #000;   /* Black on hover */
  border-color: #000;
  color: #030303 !important;
  transform: translateY(-2px);
}

.btn-outline-teal {
  background: #ffffff; /* White background */
  color: #009688 !important;
  border: 2px solid #009688;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline-teal:hover {
  background: #000;   /* Black on hover */
  color: #040404 !important;
  border-color: #000;
  transform: translateY(-2px);
}
.card-padding {
  padding: 5.5rem !important; /* Custom padding for service cards */
}


/* Service Card Base */
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

/* Staggered Animation (nth-child delay) */
.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }
.service-card:nth-child(5) { animation-delay: 1s; }

/* Hover Effect */
.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Icon Style (Blue) */
.service-card .service-icon {
  font-size: 48px;
  color: #007bff; /* Blue */
  margin-bottom: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Icon Hover Pulse */
.service-card:hover .service-icon {
  transform: scale(1.2);
  animation: pulse 0.6s ease infinite alternate;
  color: #0056b3; /* Darker Blue on hover */
}

/* Title */
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #007bff; /* Blue highlight */
}

/* Description */
.service-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Button */
.btn-teal {
  position: relative;
  background-color: #0b8a5a;
  border: none;
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

/* Ripple Effect */
.btn-teal::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: 0;
}

.btn-teal:hover::after {
  width: 200%;
  height: 200%;
}

.btn-teal:hover {
  background-color: #000;
  color: #fff;
}

/* Animations */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  from { transform: scale(1); }
  to { transform: scale(1.2); }
}
.service-section {
  transition: all 0.5s ease-in-out;
}

.service-section:hover {
  transform: scale(1.01);
}

.service-section h3 {
  font-weight: 600;
  margin-bottom: 15px;
}

.service-section p {
  font-size: 16px;
  color: #555;
}

.service-section i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-section i:hover {
  transform: scale(1.2);
  color: #0b5ed7; /* blue hover */
}.service-section {
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}
.service-icon {
  font-size: 50px;
  color: #0d6efd; /* Blue */
  margin-bottom: 20px;
}
.service-section:nth-child(even) {
  background-color: #f9f9f9;
}
.service-section h3 {
  font-weight: 600;
  margin-bottom: 15px;
}
.btn-service {
  margin-top: 15px;
  background-color: #0d6efd;
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  transition: 0.3s ease;
}
.btn-service:hover {
  background-color: #000;
  color: #fff;
}

.service-section {
  padding: 80px 0;
}
.service-section:nth-child(even) {
  background-color: #e7ffe4;
}
.service-content h3 {
  font-weight: 600;
  margin-bottom: 15px;
}
.service-content p {
  font-size: 18px;
  color: #555;
}
.btn-service {
  margin-top: 15px;
  background-color: #0d6efd;
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  transition: 0.3s ease;
}
.btn-service:hover {
  background-color: #000;
  color: #fff;
}
.service-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
}
.service-icon {
  font-size: 45px;
  color: #0d6efd;
  margin-bottom: 15px;
}
/* General Pricing Card Styling */
.pricing-card .pricing-header {
  border-radius: 12px 12px 0 0;
}
.pricing-card h2 {
  font-size: 2rem;
}

/* Basic Plan (Black Theme) */
.pricing-basic .pricing-header {
  background-color: #000;
  color: #fff;
}
.pricing-basic .btn {
  background-color: #000;
  color: #fff;
}
.pricing-basic .btn:hover {
  background-color: #333;
}

/* Standard Plan (Silver Theme) */
.pricing-standard .pricing-header {
  background-color: #c0c0c0;
  color: #000;
}
.pricing-standard .btn {
  background-color: #c0c0c0;
  color: #000;
  font-weight: 600;
}
.pricing-standard .btn:hover {
  background-color: #a9a9a9;
}

/* Premium Plan (Golden Theme) */
.pricing-premium .pricing-header {
  background-color: #ffd700;
  color: #000;
}
.pricing-premium .btn {
  background-color: #ffd700;
  color: #000;
  font-weight: 700;
}
.pricing-premium .btn:hover {
  background-color: #e6c200;
}



    /* Shared visuals */
    .service-icon { font-size: 3rem; color: #0d6efd; }
    .service-image img {
      border-radius: 1rem;
      transition: transform 0.4s ease, box-shadow 0.3s ease;
    }
    .service-image img:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    .badge-tech { background:#f1f5f9; color:#0f172a; border:1px solid #e2e8f0; }
    .section-title { letter-spacing: .3px; }

    /* Pricing (separate, editable themes) */
    .pricing-card .pricing-header { border-radius: 12px 12px 0 0; }
    .pricing-card h2 { font-size: 2rem; }

    /* Basic (Black) */
    .pricing-basic .pricing-header { background:#000; color:#fff; }
    .pricing-basic .btn { background:#000; color:#fff; }
    .pricing-basic .btn:hover { background:#333; }

    /* Standard (Silver) */
    .pricing-standard .pricing-header { background:#c0c0c0; color:#000; }
    .pricing-standard .btn { background:#c0c0c0; color:#000; font-weight:600; }
    .pricing-standard .btn:hover { background:#a9a9a9; }

    /* Premium (Gold) */
    .pricing-premium .pricing-header { background:#ffd700; color:#000; }
    .pricing-premium .btn { background:#ffd700; color:#000; font-weight:700; }
    .pricing-premium .btn:hover { background:#e6c200; }
