@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

:root {
    --green: #6FBF44;
    --blue: #0B6E8A;

}

body {
    font-family: "Roboto", sans-serif;

}

/* top header */
.top-header {
    background: linear-gradient(90deg, var(--green), var(--blue));
    font-size: 14px;
    padding: 8px 0;
}

.top-header a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.top-left i {
    margin-right: 6px;
}

.top-right a {
    margin-left: 14px;
    font-size: 15px;
}

.top-header a:hover {
    color: #eafff3;
    transform: translateY(-1px);
}

/* Social Icons */
.top-right a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 10px;
    transition: 0.3s;
}

/* Hover effect */
.top-right a:hover {
    background: #fff;
    color: var(--blue);
    transform: translateY(-3px);
}

/* Mail & Phone hover */
.top-left a:hover {
    color: #eafff3;
    text-decoration: underline;
}


/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-nav {
    gap: 15px;
}

.navbar-brand img {
    height: 62px;
}

/* Links */
.nav-link {
    color: #222 !important;
    font-weight: 500;
    position: relative;
    padding: 8px 14px;
    transition: 0.3s;
}

/* Hover effect (logo color) */
.nav-link:hover {
    color: var(--blue) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    transition: 0.3s;
    border-radius: 10px;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.dropdown-item {
    font-weight: 500;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, var(--green), var(--blue));
    color: #fff;
}

/* Hover dropdown for desktop */
@media (min-width:992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.connect-btn {
    background: linear-gradient(90deg, var(--green), var(--blue));
    color: #fff !important;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.connect-btn:hover {
    background: linear-gradient(90deg, var(--blue), var(--green));
    box-shadow: 0 8px 20px rgba(11, 110, 138, 0.3);
    transform: translateY(-1px);
}
/* navbar end */


/* hero section index  */

 .hero-section{
  background:linear-gradient(120deg, #6FBF44, #0B6E8A);
  padding:50px 0;
  color:#fff;
}

.hero-title{
  font-size:48px;
  font-weight:700;
  color:#fff;
}

.hero-title span{
  color:#fff;
}

.hero-text{
  margin:20px 0;
  font-size:16px;
  color:#f1f1f1;
  max-width:520px;
  text-align: justify;
}


.hero-list{
  list-style:none;
  padding:0;
  margin-top:30px;
}

.hero-list li{
  display:flex;
  align-items:center;
  font-size:16px;
  margin-bottom:16px;
  font-weight:500;
}

.hero-list i{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,0.2);
  color:#fff;
  margin-right:14px;
  font-size:16px;
  backdrop-filter: blur(6px);
}

.hero-img{
  max-width:92%;
}

.hero-analytics-image {
  max-width: 70%;
  animation: floatAnalytics 4s ease-in-out infinite;
}

@keyframes floatAnalytics {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

@media(max-width:768px){
  .hero-title{
    font-size:34px;
  }
  
}

/* about */
    
 .about-section{
  /* padding:0 0  90px 0 ; */
  background:#fff;
}

.about-tag{
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  color:#0B6E8A;
  position:relative;
  
}

.about-tag::after{
  content:'';
  width:40px;
  height:2px;
  background:linear-gradient(90deg,#6FBF44,#0B6E8A);
  display:inline-block;
  margin-left:10px;
  vertical-align:middle;
}

.about-title{
  font-size:36px;
  font-weight:700;
  color:#222;
}

.about-text{
  color:#555;
  max-width:520px;
  line-height:1.7;
  text-align: justify;
}

.about-list{
  list-style:none;
  padding:0;
}

.about-list li{
  font-size:16px;
  margin-bottom:14px;
  display:flex;
  align-items:center;
  font-weight:500;
  color:#333;
}

.about-list i{
  color:#6FBF44;
  margin-right:10px;
  font-size:18px;
}

.explore-btn{
  padding:10px 28px;
  border-radius:30px;
  background:linear-gradient(90deg,#6FBF44,#0B6E8A);
  color:#fff;
  font-weight:600;
  transition:0.3s;
}

.explore-btn:hover{
  color:#fff;
  box-shadow:0 10px 25px rgba(11,110,138,0.3);
  transform:translateY(-2px);
}

/* Responsive */
@media(max-width:768px){
  .about-title{
    font-size:28px;
  }
}
.about-img-wrapper{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
  transition:0.4s;
}

.about-img{
  width:100%;
  border-radius:20px;
  transition:0.4s;
}

/* Hover effect */
.about-img-wrapper:hover .about-img{
  transform:scale(1.05);
}

/* Experience Box */
.experience-box{
  position:absolute;
  bottom:20px;
  left:20px;
  background:linear-gradient(90deg,#6FBF44,#0B6E8A);
  color:#fff;
  padding:14px 22px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 10px 30px rgba(11,110,138,0.4);
}

.experience-box h4{
  margin:0;
  font-size:26px;
  font-weight:700;
}

.experience-box span{
  font-size:13px;
  font-weight:500;
}


/* Wrapper hover lift */
.about-img-wrapper:hover{
  transform:translateY(-6px);
}

 .services-section{
 
  background:#f9fbfd;
}

.section-title{
  font-size:38px;
  font-weight:700;
  color:#222;
}

.section-subtitle{
  max-width:720px;
  margin:10px auto 0;
  color:#555;
}

/* Service Box */
.service-box{
  background:#fff;
  padding:20px 25px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.4s;
  position:relative;
  cursor: pointer;
}

.service-box:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 50px rgba(11,110,138,0.25);
}

/* Icon */
.service-icon{
  width:60px;
  height:60px;
  margin:0 auto 20px;
  border-radius:50%;
  background:linear-gradient(90deg,#6FBF44,#0B6E8A);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:28px;
  transition:0.4s;
}

.service-box:hover .service-icon{
  transform:rotate(10deg) scale(1.1);
}

.service-box h3{
  font-size:18px;
  font-weight:600;
  margin-bottom:12px;
}

.service-box p{
  font-size:15px;
  color:#555;
}

.service-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:14px;
  font-size:14px;
  font-weight:600;
  color:#0b6e8a; /* logo color */
  text-decoration:none;
  position:relative;
  transition:0.3s;
}

.service-link::after{
  content:"→";
  font-size:16px;
  transition:0.3s;
}

.service-box:hover .service-link{
  color:#0a4f63;
}.service-box:hover .service-link::after{
  transform:translateX(6px);
}


/* Audit Box */
.audit-box{
  background:linear-gradient(120deg,#6FBF44,#0B6E8A);
  color:#fff;
}

.audit-box p{
  color:#f1f1f1;
}

.audit-list{
  list-style:none;
  padding:0;
  margin:20px 0;
}

.audit-list li{
  margin-bottom:8px;
  font-weight:500;
}

.audit-list i{
  margin-right:8px;
}

.audit-btn{
  display:inline-block;
  padding:12px 28px;
  background:#fff;
  color:#0B6E8A;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.audit-btn:hover{
  background:#f1f1f1;
}



  /* Badge */
.why-badge{
  display:inline-block;
  padding:6px 14px;
  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
  color:#0B6E8A;
  background:#fff;
  border-radius:30px;
}

/* Title */
.why-title{
  font-size:42px;
  font-weight:800;
  line-height:1.2;
}

.why-title span{
  background:linear-gradient(90deg,#6FBF44,#ffffff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Subtitle */
.why-subtitle{
  font-size:16px;
  max-width:420px;
}

    /* .why-choose-section{
  padding:100px 0;
  background:url('img/business-meeting-office.jpg') center/cover no-repeat;
  position:relative;
} */

/* Gradient Overlay */
/* .bg-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    135deg,
    rgba(11,110,138,0.85),
    rgba(111,191,68,0.35)
  );
  z-index:0;
} */

/* Glass Cards */
.choose-box.glass{
    background:linear-gradient(135deg, rgba(11, 110, 138, 0.85), rgb(111 191 68 / 44%))
  ;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.25);
  border-radius:20px;
  padding:16px;
  color:#fff;
  transition:0.4s;
  cursor: pointer;
}

.choose-box.glass:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 60px rgba(0,0,0,0.4);
}

.choose-icon{
  width:56px;
  height:56px;
  border-radius:14px;
  background:#fff;
  color:#0B6E8A;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  margin-bottom:15px;
}

/* Highlight Card */
.choose-box.highlight{
  background:linear-gradient(135deg,#ffffff,#e9f7f2);
  color:#0B6E8A;
}

.choose-box.highlight p{
  color:#333;
}


/* accordian */
 .faq-section{
  background:#f9fbfd;
}

.faq-title{
  font-size:38px;
  font-weight:700;
  color:#222;
}

.faq-subtitle{
  max-width:600px;
  margin:10px auto 0;
  color:#555;
}

.faq-accordion .accordion-item{
  border:none;
  border-radius:14px;
  margin-bottom:15px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  overflow:hidden;
}

.faq-accordion .accordion-button{
  font-weight:600;
  padding:18px 20px;
}

.faq-accordion .accordion-button:not(.collapsed){
  background:linear-gradient(90deg,#0B6E8A,#6FBF44);
  color:#fff;
}

.faq-accordion .accordion-button:focus{
  box-shadow:none;
}

.faq-accordion .accordion-body{
  color:#555;
  line-height:1.7;
}


/* dark theme */
 .premium-dark{
  background: linear-gradient(145deg, #0f172a, #020617);
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(2,6,23,0.7);
  position: relative;
  overflow: hidden;
}

/* subtle glow accent */
.premium-dark::before{
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
}

/* TEXT */
.premium-dark .audit-year{
  color: #60a5fa;
  font-weight: 600;
  letter-spacing: 1px;
}

.premium-dark .audit-title{
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
}

.premium-dark .audit-desc{
  color: #cbd5f5;
  font-size: 16px;
}

.premium-dark .audit-points li{
  color: #e5e7eb;
  font-size: 15px;
}

.premium-dark .audit-points i{
  color: #22c55e;
}

/* BUTTON */
.premium-dark .audit-btn-modern{
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #022c22;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  transition: 0.3s ease;
}

.premium-dark .audit-btn-modern:hover{
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(34,197,94,0.4);
}

/* Mobile */
@media(max-width:768px){
  .premium-dark{
    padding: 35px;
  }
  .premium-dark .audit-title{
    font-size: 30px;
  }
}




/* breadcrum */
.rt-breadcrumb {
    font-size: 15px;
    letter-spacing: 0.5px;
}

.rt-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.rt-breadcrumb a:hover {
    color: #5df10d;
    opacity: 0.9;
}

.rt-bc-arrow {
    margin: 0 8px;
    font-size: 13px;
    opacity: 0.9;
}

.rt-bc-current {
    font-weight: 600;
}


/* about page css */
 
.about-wrap{

  background:#ffffff;
}

/* ABOUT TAG */
.about-tag{
  color:#0B6E8A; /* logo blue */
  font-weight:600;
  letter-spacing:1.5px;
  margin-bottom:12px;
  display:inline-block;
  text-transform:uppercase;
}

/* HEADING */
.about-heading{
  font-size:48px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:20px;
}

/* TEXT */
.about-text{
  /* font-size:16px;
  line-height:1.8;
  color:#475569;
  margin-bottom:30px; */
}

/* BUTTON – logo gradient */
.about-btn{
  padding:14px 34px;
  background: linear-gradient(135deg, #6FBF44, #0B6E8A);
  color:#ffffff;
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
  display:inline-block;
  transition:0.3s ease;
  box-shadow:0 10px 25px rgba(11,110,138,0.25);
}

.about-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(11,110,138,0.35);
}

/* IMAGE */
.about-img-box{
  position:relative;
  text-align:center;
}

.about-img-box img{
  width:100%;
  max-width:460px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

/* EXPERIENCE BOX */
.about-exp-box{
  position:absolute;
  bottom:-20px;
  left:0;
  background: linear-gradient(145deg, #0B6E8A, #022c22);
  color:#ffffff;
  padding:26px 32px;
  border-radius:18px;
  text-align:center;
  min-width:180px;
  box-shadow:0 20px 40px rgba(0,0,0,0.35);
}

.about-exp-box h3{
  margin:0;
  font-size:38px;
  color:#6FBF44; /* logo green */
  font-weight:700;
}

.about-exp-box span{
  font-size:14px;
  opacity:0.9;
  letter-spacing:0.5px;
}

/* RESPONSIVE */
@media(max-width:991px){
  .about-heading{
    font-size:36px;
  }
  .about-exp-box{
    position:static;
    margin:25px auto 0;
  }
}

.backdrop-blur {
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
.backdrop-blur:hover {
  transform: translateY(-8px);
  background-color: rgba(255,255,255,0.18);
}
.mv-card{
  background: linear-gradient(180deg, #083a7a, #062f63);
  border-radius:22px;
  padding:50px 30px;
  transition:0.4s ease;
  box-shadow:0 25px 60px rgba(0,0,0,0.45);
  border:1px solid rgba(255,255,255,0.06);
}

.mv-card:hover{
  transform:translateY(-10px);
  background: linear-gradient(180deg, #0a4c9c, #083a7a);
}

.mv-icon{
  width:80px;
  height:80px;
  background:#0B6E8A;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  border-radius:18px;
  margin:0 auto;
  box-shadow:0 15px 30px rgba(11,110,138,0.5);
}

.mv-card h4{
  font-weight:700;
  margin-top:25px;
}

.mv-card p{
  color:rgba(255,255,255,0.85);
  font-size:15px;
  line-height:1.7;
  margin-top:12px;
}

/* Mobile */
@media(max-width:768px){
  .mv-section{
    padding:70px 0;
  }
}


/* contact page */

.contact-section{
            padding:60px 0;
        }

        .contact-card{
            background:#fff;
            border-radius:12px;
            padding:30px;
            box-shadow:0 10px 30px rgba(0,0,0,0.08);
            height:100%;
        }

        .contact-card i{
            color:var(--brand-color);
            font-size:22px;
            margin-right:15px;
        }

        .contact-info{
            display:flex;
            align-items:flex-start;
            margin-bottom:25px;
        }

        .form-card{
            background:#fff;
            border-radius:12px;
            padding:35px;
            box-shadow:0 10px 30px rgba(0,0,0,0.08);
        }

        .form-control, .form-select{
            height:48px;
            border-radius:8px;
        }

        .btn-brand{
            background:var(--brand-color);
            color:#fff;
            padding:10px 25px;
            border-radius:8px;
        }

        .btn-brand:hover{
            opacity:0.9;
            color:#fff;
        }











/* Footer Base */
.footer-main {
  background: #0b1f3a;
  color: #fff;
}
.footer-brand img{
    height: 60px;
    margin-bottom: 10px;
}
.footer-logo {
  font-weight: 700;
}

.footer-text {
  color: #edf1f6;
  font-size: 16px; padding-right: 20px;
}

.footer-title {
  position: relative;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #2ecc71;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bfc9d8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #2ecc71;
  padding-left: 5px;
}

.footer-contact {
  color: #bfc9d8;
  font-size: 15px;
}

.footer-contact a {
  color: #bfc9d8;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #2ecc71;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  margin-right: 8px;
  transition: 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: #2ecc71;
  color: #0b1f3a;
}

.footer-bottom {
  background: #08162a;
  font-size: 14px;
  color: #bfc9d8;
  text-align: left;
  padding-left: 15px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .footer-text {
    font-size: 15px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-contact {
    font-size: 15px;
  }

  .footer-social {
    justify-content: flex-start; /* left align icons */
    margin-top: 10px;
  }
}
