
/* body font  */
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Viga', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0px;
    overflow-x: hidden;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth; 
}
.site-footer {
  bottom: 0;
  width: 100%;
}

/* Prevent extra space from sections */
.section {
  box-sizing: border-box;
}

body {
  font-family: 'Viga', sans-serif;
}

.wb-bg {
  background-color: #e9f1fd !important;
}
/* ================== Header Section ================== */
/* ================== Header Section ================== */
.custom-header {
  background-color: white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Scroll Effect */

.custom-header.scrolled {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  z-index: 1030;
}

/* Navbar Reset */
.navbar {
  padding: 0.5rem 1rem;
}

.navbar-brand img {
  width: 200px;
  transition: all 0.3s ease;
}

.custom-header.scrolled .navbar-brand img {
  width: 170px;
}

/* Navbar Links */
.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 12px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #0d3b4c;
}

/* Dropdown Style */
.navbar .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  animation: dropdownFade 0.3s ease-in-out;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.navbar .dropdown-menu .dropdown-item:hover {
  background: linear-gradient(135deg, #1a5965, #0d3b4c);
  color: #fff;
}

/* Hover Open Dropdown */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

/* Right Side Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icons a {
  color: #0d3b4c;
  font-size: 22px;
  transition: all 0.3s ease;
}

.header-icons a:hover {
  color: #1a5965;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .header-icons {
    display: none;
  }
  .navbar-brand img {
    width: 160px;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    width: 130px;
  }
}



/* ================== End Header Section ================== */


/* ================== Hero Section ================== */
#hero {
  position: relative;
  width: 100%;
  height: 85vh; 
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 85vh;
  background-size: cover;
  background-position: center; 
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 32, 40, 0.592);
  color: #fff;
  padding: 0 15px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  animation: fadeInDown 1.8s ease;
}
.hero-one h1{
       margin-left: 5%;
}
.hero-one p{
  margin-left: 5%;
}
.hero-one a{
  margin-left: 5%;
}
.hero-subtitle {
  font-size: 1.3rem;
  margin: 15px 0;
  animation: fadeInUp 1.5s ease;
}

.hero-btn {
  margin-top: 10px;
  padding: 12px 30px;
  font-size: 1rem;
  animation: fadeIn 2s ease;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #1a5965, #0d3b4c);
  border: #0d3b4c;
  color: #fff;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgb(1, 41, 52);
  color: #000000;
  background: linear-gradient(90deg, rgb(140, 240, 185), rgb(17, 55, 32));
}

/* Animations */
@keyframes fadeInDown {
  from {opacity:0; transform: translateY(-30px);}
  to {opacity:1; transform: translateY(0);}
}

@keyframes fadeInUp {
  from {opacity:0; transform: translateY(30px);}
  to {opacity:1; transform: translateY(0);}
}

@keyframes fadeIn {
  from {opacity:0;}
  to {opacity:1;}
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-btn {
    font-size: 0.9rem;
    padding: 10px 25px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
}
/* ================== End Hero Section ================== */

/* ================== About Section ================== */
.about-section {
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}
/* this is title botom underline design */
/* .about-title {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0d3b4c;
  margin-top: 8px;
  border-radius: 3px;
  animation: expand 1s ease-in-out forwards;
} */

@keyframes expand {
  from { width: 0; }
  to { width: 60px; }
}

.about-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  animation: fadeInUp 1.2s ease forwards;
}

.about-btn {
  transition: all 0.3s ease;

}
.my-button {
 background: linear-gradient(135deg, #1a5965, #0d3b4c);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 5px 15px rgba(0,123,255,0.4);
  color: #000000;
  background: linear-gradient(90deg, rgb(140, 240, 185), rgb(17, 55, 32));
}

/* Image Hover Animation */
.about-img-wrapper {
  display: inline-block;
  overflow: hidden;
  border-radius: 15px;
}

.about-img-wrapper img {
  transition: transform 0.6s ease, filter 0.3s ease;
}

.about-img-wrapper:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ================= SERVICES ================= */
#services{
  padding-top: 100px !important;
  padding-bottom: 90px !important;
  background: #f4fcfa;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Flexbox for equal height cards in Bootstrap row */
.row{
  padding-top: 50px;
}
 
.row > .col-md-4 {
  display: flex;
}

.row > .col-md-4 > .service-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card {
  background: #fff;
  color: #0d3b4c;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.service-card:hover {
  background: linear-gradient(135deg, #1a5965, #0d3b4c);
  color: #fff;
  transform: translateY(-10px);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.service-card:hover .service-desc {
  color: #fff;
}


/* ================== Unique Testimonial Section ================== */
.section-title h2{
  font-size: 50px;
  font-weight: 800;
}
.section-title p{
  font-size: 20px;
}
.testimonial-unique {
  background: linear-gradient(135deg, #1a5965, #0d3b4c);
  border-radius: 10px;
  color: #fff;
  padding: 85px 60px !important;
}

.testimonial-slider-unique {
  position: relative;
  min-height: 220px;
}

.testimonial-item {
  display: none;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

.testimonial-item.active {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.quote-icon {
  font-size: 40px;
  color: #f7c671;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 15px;
}

.author {
  font-weight: bold;
  color: #fff;
}

/* Icon Navigation */
.testimonial-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-icon {
  width: 45px;
  height: 45px;
  background: #fff;
  color: #0d3b4c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-icon:hover {
  background: #f7c671;
  color: #020000;
}

.nav-icon.active {
  background: #f7c671;
  color: #0d3b4c;
  border: 2px solid #f7c671;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-text { font-size: 1rem; }
  .nav-icon { width: 38px; height: 38px; font-size: 14px; }
}
/* ================== End Unique Testimonial Section ================== */

/* ================== Contact Section ================== */
.contact-section {
  padding: 150px 50px !important;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}

.contact-form {
  background: #fff;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.contact-form .form-control {
  border-radius: 15px;
  padding: 15px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form .form-control:focus {
  outline: none;
  border-color: #1a5965;
  box-shadow: 0 0 15px rgba(26, 89, 101, 0.5);
}

.contact-btn {
  background: linear-gradient(135deg, #1a5965, #0d3b4c);
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  padding: 12px 35px;
  border: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(26, 89, 101, 0.4);
  color: #000000;
  background: linear-gradient(90deg, rgb(140, 240, 185), rgb(17, 55, 32));
}

/* Responsive */
@media (max-width: 991px) {
  .contact-info h2 { font-size: 2rem; }
  .contact-info p { font-size: 1rem; }
  .contact-form { padding: 30px; }
}

@media (max-width: 576px) {
  .contact-form { padding: 20px; }
}
/* ================== End Contact Section ================== */


/* ================== Footer Section ================== */
.site-footer {
  background: #ffffff;
  color: #001a1a; 
  font-family: 'Viga', sans-serif;
  font-weight: 300;
  padding: 60px 20px 30px 20px;
  text-align: center;
}

.footer-logo img {
  width: 300px;
  max-width: 80%;
  object-fit: contain;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

/* Social Icons */
.footer-social {
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-block;
  margin: 0 10px;
  color: #001a1a;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #053912;
  transform: scale(1.2);
}

/* Footer Menu */
.footer-menu {
  margin-bottom: 10px;
}

.footer-menu a {
  color: #001a1a;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  text-decoration: underline;
}

/* Underline for menu */
.footer-menu-underline {
  width: 100%;
  height: 1px;
  background-color: #001a1a;
  margin: 10px auto;
  border-radius: 2px;
}

/* Copyright */
.site-footer p {
  font-size: 0.9rem;
  color: #001a1a;
  margin-top: 15px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 576px) {
  .footer-menu a {
    display: block;
    margin: 5px 0;
  }
  .footer-social a {
    margin: 0 8px;
    font-size: 1.1rem;
  }
}
/* footer section end */

/* ================== Animated Underline for Titles ================== */
.animated-title {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  cursor: default;
  color: #000;
  /* font-family: 'Courier New', Courier, monospace; */
  font-family: 'Viga', sans-serif;
  font-weight: 800;
  font-size: 40px;
}

.animated-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 2px;   
  border-radius: 2px;
  background: linear-gradient(90deg, rgb(26, 89, 101), rgb(20, 220, 90));
  transition: width 0.4s ease;
}

.animated-title:hover::after {
  width: 100%;
}
/* ================== End Animated Underline ================== */

/* ================= SKILLS ================= */
.skillsbg{
  background-color: #e9f1fd;
  padding-top: 80px !important;
  padding-bottom: 90px !important;
}
.skills-wrapper{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px;justify-content:center}
.skill{background:#e0f6f1;border-radius:12px;padding:20px;box-shadow:0 6px 15px rgba(0,0,0,0.1);transition:all .4s ease}
.skill:hover{transform:translateY(-5px);box-shadow:0 10px 25px rgba(0,0,0,0.15)}
.skill h4{font-size:1.1rem;color:#0d3b4c;margin-bottom:10px}
.progress{background:#f7c671;border-radius:999px;height:12px;overflow:hidden}
.progress-bar{height:12px;width:0%;border-radius:999px;background:linear-gradient(90deg,#1a5965,#0d3b4c);transition:width 2s ease}
/* ================= PRICING ================= */
.pricing-section{background:#f4fcfa;
  padding-bottom: 90px;
  padding-top: 110px;
}
.pricing-container{display:flex;flex-wrap:wrap;justify-content:center;gap:25px;
padding-top: 35px;
}
.pricing-card{background:#fff;border-radius:16px;box-shadow:0 8px 20px rgba(0,0,0,0.08);padding:40px 25px;position:relative;overflow:hidden;flex:1;min-width:280px;max-width:350px;transition:all 0.4s ease}
.pricing-card:hover{transform:translateY(-10px);box-shadow:0 18px 40px rgba(0,0,0,0.2)}
.pricing-card.popular{background:linear-gradient(135deg,#1a5965,#0d3b4c);color:#fff;transform:scale(1.05)}
.pricing-card.popular .pricing-btn{background:#fff;color:#0d3b4c}
.popular-tag
 {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #f7c671;
    color: #0d3b4c;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 15px;
    margin-top: 15px;
}
.pricing-title{font-size:1.6rem;margin-bottom:10px}
.pricing-price{font-size:1.8rem;font-weight:700;margin-bottom:15px;color:#1a5965}
.pricing-card.popular .pricing-price{color:#fff}
.pricing-features{list-style:none;padding:0;margin-bottom:20px}
.pricing-features li{padding:8px 0;border-bottom:1px solid #ddd}
.pricing-btn{padding:10px 25px;border:none;border-radius:30px;background:linear-gradient(135deg,#1a5965,#0d3b4c);color:#fff;font-weight:600;transition:all .3s ease}
.pricing-btn:hover{background:linear-gradient(90deg,rgb(140,240,185),rgb(17,55,32));color:#000}

.popular-tag
 {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #f7c671;
    color: #0d3b4c;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 15px;
    margin-top: 15px;
}

/* ================= PORTFOLIO ================= */

.portfolio-filter {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

.filter-btn {
  padding: 10px 20px;
  margin: 0 5px;
  border: none;
  border-radius: 25px;
  background: #1a5965;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(90deg, rgb(140, 240, 185), rgb(17, 55, 32));
  color: #000;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Flexbox for fixed image height */
.portfolio-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-img {
  width: 100%;
  max-width: 300px;  /* max width of image */
  max-height: 200px; /* max height of image */
  overflow: hidden;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* maintain aspect ratio and crop if needed */
  display: block;
}

.portfolio-content {
  padding: 20px;
  text-align: center;
}

.portfolio-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #1a5965, #0d3b4c);
  color: #fff;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio-btn:hover {
  background: linear-gradient(90deg, rgb(140, 240, 185), rgb(17, 55, 32));
  color: #000;
}
#portfolio{
  padding-top: 90px !important;
  padding-bottom: 110px !important;
  
}

/* Reveal animation */
.reveal{opacity:0;transform:translateY(40px);transition:all 0.8s ease}
.reveal.active{opacity:1;transform:translateY(0)}
