/**
* Template Name: Virtualcareerguide
* Template URL: https://bootstrapmade.com/Virtualcareerguide-free-bootstrap-landing-page-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');


:root {
  --default-font: "Outfit", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #003e7d; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff6600; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffc600; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1acc8d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #d7e3e4;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: rgba(0, 43, 79, 0.9);
	
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0c0091;
  --contrast-color: #ffffff;
}



.dark-background1 {
  --background-color: #08005e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0c0091;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Inter";
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.01);
  --default-color: #111;
  --heading-color: #111;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  position:fixed;
    z-index:99999;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 85px;
  margin-right: 8px;
	/*background:#fff; border-radius: 20%; width: 100%;*/
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #003e7d;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 20%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fac303;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/*.footer-modern{
    background:#071c34;
    color:#fff;
    padding:80px 0 20px;
}*/

/*.footer-modern {
    background-color: #071c34; 
    color: #fff;
    padding: 80px 0 20px;
    position: relative; 
    z-index: 1;
}*/

/*.footer-modern::before { content: ""; position: absolute; top: -86px; left: 0; width: 100%; height: 150px;  background: url('../img/footer-bgtop.png') no-repeat top center; background-size: contain;  z-index: -1;  pointer-events: none; }*/

.footer-modern{
    position: relative;
    background:#071c34;
    padding: 50px 0 20px; color: #fff;
}

.footer-modern::before{
    content:"";
    position:absolute;
    top:-80px;
    left:0;
    width:100%;
    aspect-ratio:1920/120; /* আপনার image অনুযায়ী */
    height:auto;

    background:url('../img/footer-bgtop.png') no-repeat center top;
    background-size:100% 100%;
}

.footer-modern .container{
    position:relative;
    z-index:1;
}

@media (min-width:992px) and (max-width:1366px){
    .footer-modern::before{
        top:-55px;
        height:120px;
    }
}

.footer-modern h3{
    color:#fff;
    margin-bottom:20px;
}

.footer-modern h5{
    color:#fff;
    margin-bottom:20px;
    position:relative;
}

.footer-modern h5:after{
    content:'';
    width:40px;
    height:3px;
    background:#ff6b00;
    position:absolute;
    left:0;
    bottom:-8px;
}

.footer-modern ul{
    padding:0;
    list-style:none;
}

.footer-modern ul li{
    margin-bottom:12px;
}

.footer-modern ul li a{
    color:#c7d0db;
    text-decoration:none;
    transition:.3s;
}

.footer-modern ul li a:hover{
    color:#ff6b00;
    padding-left:5px;
}

.footer-social a{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#0f2e53;
    border-radius:50%;
    color:#fff;
    margin-right:10px;
    transition:.3s;
}

.footer-social a:hover{
    background:#ff6b00;
}

.footer-modern hr{
    border-color:rgba(255,255,255,.1);
    margin:40px 0 20px;
}

.copyright{
    text-align:center;
    color:#b9c1ca;
}

/* Mobile responsive media query (For screens less than 768px) */
@media (max-width: 767px) {
    .footer-modern {
        /* Mobile-e padding ektu komiye deya bhalo jaate ghabre na jay */
        padding: 60px 0 20px; 
    }

    .footer-modern::before { display: none;
        /* Mobile-e image-ta ektu niche nambate hobe, dhoro -45px ba -50px */
        top: -50px; 
        height: 100px; /* Mobile-er jonno unish-bish height safe */
        
        /* 'cover' dile image-ti choto hobe na, borong screen-er width fill korbe 
           ebong center-er element gulo perfectly dekhabe */
        background-size: cover; 
        background-position: bottom center; /* Dheu-er nicher ongsho-ti jeno perfectly footer-e bose */
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}


/*--------------------service-boxes---------------------*/
.service-cards{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;

    /*margin-top:-60px;*/
    position:relative;
    z-index:20; /* Hero */
	 margin-top:0 !important;
    padding-top:40px;
}

.service-card{
    width:260px;
    background:#fff;
    padding:35px 25px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    text-align:center;

    margin-top:0 !important; /* Remove this */
	transition: all 0.4s ease;
	opacity: 0;
    animation: arcEntry 1.2s ease-out forwards;
}

.service-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Delay for each card */
.card1{ animation-delay: 0.1s; }
.card2{ animation-delay: 0.3s; }
.card3{ animation-delay: 0.5s; }
.card4{ animation-delay: 0.7s; }

@keyframes arcEntry{
    0%{
        opacity:0;
        transform: translate(-300px, 120px) rotate(-25deg);
    }

    25%{
        opacity:1;
        transform: translate(-180px, -40px) rotate(-15deg);
    }

    50%{
        transform: translate(-80px, -70px) rotate(-8deg);
    }

    75%{
        transform: translate(20px, -20px) rotate(5deg);
    }

    100%{
        opacity:1;
        transform: translate(0,0) rotate(0deg);
    }
}

.icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:#ff6b00;
    color:#fff;
    font-size: 45px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.service-card h4{
    margin-bottom: 15px;
    font-weight: 700;
    font-weight:700;
    color:#222;
    
}



@keyframes arcEntry{

    0%{
        opacity:0;
        transform:
        translateX(-250px)
        translateY(80px)
        rotate(-12deg);
    }

    60%{
        opacity:1;
        transform:
        translateX(30px)
        translateY(-25px)
        rotate(4deg);
    }

    100%{
        opacity:1;
        transform:
        translateX(0)
        translateY(0)
        rotate(0deg);
    }
}

/*.service-card:hover{
    transform:translateY(-10px);
    transition:.4s;
}*/





/*.service-card{  margin-top:-120px;
    position:relative;
    z-index:99;
    animation:
        arcEntry 1s ease-out forwards,
        floating 4s ease-in-out infinite;
}*/

.card1{
    animation-delay:.2s,.2s;
}
.card2{
    animation-delay:.5s,.5s;
}
.card3{
    animation-delay:.8s,.8s;
}
.card4{
    animation-delay:1.1s,1.1s;
}

@keyframes floating{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

@media (max-width: 768px){
    .service-cards{
        gap: 20px;
        padding: 0 15px;
    }

    .service-card{
        width: 100%;
        max-width: 350px;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*=========================
 HERO SECTION
=========================*/

.hero{
    position:relative;
    overflow:hidden;
    min-height:100vh;
    padding:0;
}

#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item{
    height:100vh;
}

#heroCarousel .carousel-item{
    position:relative;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
    z-index:1;
}

.hero .container{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
}

.hero h1{
    color:#fff;
    font-size:40px;
    font-weight:700;
    line-height:1;
    margin-bottom:15px;
}

.hero h1 span{
    color:#f9c349;
}

.hero p{
    color:#fff;
    font-size:15px;
    line-height:1.5;
    margin-bottom:15px;
    max-width:900px;
}

.btn-get-started{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 35px;
       background:#fff;
    color:#0c91be;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-get-started:hover{

	 background:#0c91be;
    color:#fff;
}

/*=========================
 Carousel Controls
=========================*/

.carousel-control-prev,
.carousel-control-next{
    width:60px;
    z-index:10;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background-color:rgba(255,255,255,.25);
    background-size:45%;
}

/*=========================
 Text Animation
=========================*/

.carousel-item h1,
.carousel-item p,
.carousel-item .btn-get-started{
    opacity:0;
    transform:translateY(40px);
}

.carousel-item.active h1{
    animation:fadeUp .8s ease forwards;
}

.carousel-item.active p{
    animation:fadeUp .8s ease .25s forwards;
}

.carousel-item.active .btn-get-started{
    animation:fadeUp .8s ease .45s forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/*=========================
 Waves
=========================

.hero-waves{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:100px;
    z-index:5;
}

.wave1 use{
    fill:#fff;
    opacity:.5;
    animation:moveWave1 10s linear infinite;
}

.wave2 use{
    fill:#fff;
    opacity:.3;
    animation:moveWave2 8s linear infinite;
}

.wave3 use{
    fill:#fff;
    animation:moveWave3 6s linear infinite;
}

@keyframes moveWave1{
    from{transform:translateX(90px);}
    to{transform:translateX(-90px);}
}

@keyframes moveWave2{
    from{transform:translateX(-90px);}
    to{transform:translateX(90px);}
}

@keyframes moveWave3{
    from{transform:translateX(-90px);}
    to{transform:translateX(90px);}
}
*/


.hero .col-lg-7{
    transform: translateY(200px);
}

/*=========================
 Mobile
=========================*/

@media (max-width:991px){

    #heroCarousel,
    #heroCarousel .carousel-inner,
    #heroCarousel .carousel-item{
        height:700px;
    }

    .hero .container{
        text-align:center;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:17px;
        max-width:100%;
    }
	 .hero .col-lg-7{
        transform: translateY(50px);
    }
}

@media (max-width:575px){
	
	.hero {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  padding: 0;
}

    #heroCarousel,
    #heroCarousel .carousel-inner,
    #heroCarousel .carousel-item{
        height:620px;
    }

    .hero h1{
        font-size:30px;
    }

    .hero p{
        font-size:15px;
    }

    .btn-get-started{
        padding:12px 28px;
        font-size:15px;
    }

    .hero-waves{
        height:70px;
    }
	
	.hero .col-lg-7{
        transform: translateY(30px);
    }
}

/*.hero{
    position:relative;
    min-height:90vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    padding:180px 0 120px;
}

.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:2;
}

#heroCarousel{
    position:relative;
    z-index:5;
    width:100%;
}

.carousel-item{
    min-height:400px;
    display:flex;
    align-items:center;
}

.hero h1{
    color:#fff;
    font-size:52px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.hero h1 span{
    color:#f9c349;
}

.hero p{
    color:#fff;
    font-size:20px;
    margin-bottom:30px;
}

.hero-img{
    max-height:250px;
}

.btn-get-started{
    background:#0c91be;
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.btn-get-started:hover{
    color:#000;
}

.hero-waves{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:100px;
    z-index:4;
}

.wave1 use{
    fill:#fff;
    opacity:.5;
    animation:move1 10s linear infinite;
}

.wave2 use{
    fill:#fff;
    opacity:.3;
    animation:move2 8s linear infinite;
}

.wave3 use{
    fill:#fff;
    animation:move3 6s linear infinite;
}

@keyframes move1{
    from{transform:translateX(90px);}
    to{transform:translateX(-90px);}
}

@keyframes move2{
    from{transform:translateX(-90px);}
    to{transform:translateX(90px);}
}

@keyframes move3{
    from{transform:translateX(-90px);}
    to{transform:translateX(90px);}
}

.animated{
    animation:float 3s ease-in-out infinite;
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0);}
}

/* Text Animation 
.carousel-item.active h1,
.carousel-item.active p,
.carousel-item.active .btn-get-started{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Mobile 
@media(max-width:768px){

    .hero{
        padding:100px 0 140px;
    }

    .hero h1{
        font-size:32px;
    }

    .hero p{
        font-size:16px;
    }

    .carousel-item{
        min-height:auto;
        text-align:center;
    }

    .hero-img{
        max-height:280px;
        margin-top:30px;
    }
}


/* Indicators Bottom 
#heroCarousel .carousel-indicators{
    bottom: 25px;
    margin-bottom: 0;
    z-index: 20;
}

#heroCarousel .carousel-indicators button{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(255,255,255,.45);
    margin: 0 6px;
    opacity: 1;
    transition: .3s;
}

#heroCarousel .carousel-indicators .active{
    background: #ff9800;
    border-color: #ff9800;
    transform: scale(1.25);
}*/


/*-------------------------------------------*/

.client-logos {
    padding: 80px 0;
    background: #f3f3f3;
}

.client-logos .section-title {
    margin-bottom: 50px;
}

.client-logos .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.client-logos .section-title p {
    color: #666;
    font-size: 16px;
}

.client-logo-section {
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.client-logo-section .section-title {
    margin-bottom: 40px;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

.logo-item {
    width: 180px;
    height: 100px;
    margin: 0 25px;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);

    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on Hover */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .logo-item {
        width: 140px;
        height: 80px;
        margin: 0 15px;
    }

    .logo-item img {
        max-height: 50px;
    }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 100px;
}

.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

/*.about .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}*/

.about .icon-box{
    background:#fff;
    border-radius:20px;

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);

    transition:.5s;
    overflow:hidden;
    position:relative;
}

.about .icon-box::before{
    content:'';
    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.5),
    transparent);

    transition:.8s;
}

.about .icon-box:hover::before{
    left:100%;
}

.about .icon-box:hover{
    transform:
    translateY(-12px);

    box-shadow:
    0 25px 60px rgba(0,62,125,.25);
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
	height: 50px;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}


.leftpic img { position: relative; }




/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px; height: 30px;
}

/*--------------------------------------------------------------
# Details Section
--------------------------------------------------------------*/
.details {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.details-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;  
	background: url('../img/details-bg.jpg')center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    z-index: 0;
}

.details-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(5px);
    background: rgba(0,0,0,0.4);
}

.details .container {
    position: relative;
    z-index: 2;
}

.details .section-title,
.details .features-item {
    position: relative;
    z-index: 2;
}

.details .features-item {
    color: rgba(255,255,255,0.9);
}

.details .features-item h3,
.details .section-title h2,
.details .section-title span {
    color: #fff;
}

.details .features-item ul {
    padding: 0 !important;
    margun: 20px 0 20px 0;
    list-style-type: none !important;
}

.details .features-item ul i {
    color: #ffc107;
}

.details .features-item+.features-item {
    margin-top: 100px;
}

@media (max-width: 768px) {
    .details-bg {
        background-attachment: scroll; /* Mobile parallax issue fix */
    }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
    padding: 100px 0;
    background: linear-gradient(rgba(245, 248, 252, 0.8), rgba(245, 248, 252, 0.8)), url(../img/contact-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-header span{
    color:#ff6b00;
    font-weight:600;
    letter-spacing:2px;
}

.contact-header h2{
    font-size:42px;
    font-weight:700;
    margin:15px 0;
}

.contact-header p{
    color:#666;
    margin-bottom:60px;
}

.contact-info-card,
.contact-form-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.info-box{
    text-align:center;
    padding:25px;
    border-bottom:1px solid #eee;
}

.info-box:last-child{
    border-bottom:none;
}

.info-box i{
    font-size:32px;
    color:#ff6b00;
    margin-bottom:15px;
}

.contact-form-card .form-control{
    height:55px;
    border-radius:10px;
}

.contact-form-card textarea.form-control{
    height:auto;
}

.btn-contact{
    background:#003e7d;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-contact:hover{
    background:#ff6b00;
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*----------------Hero Background Pattern----------------------
.hero::after{
    content:'';
    position:absolute;
    inset:0;
    z-index:2;

    background-image:
    radial-gradient(circle at 20% 20%, rgba(255,198,0,.15) 2px, transparent 2px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.12) 2px, transparent 2px),
    radial-gradient(circle at 60% 80%, rgba(255,198,0,.15) 3px, transparent 3px);

    background-size:120px 120px;
    animation:patternMove 25s linear infinite;
}

@keyframes patternMove{
    from{
        background-position:0 0;
    }
    to{
        background-position:300px 300px;
    }
}



/*-------------Image Hover Like NicePage-------------------*/

.leftpic img,
.gallery-item img{

    border-radius:20px;

    transition:.6s;
}

.leftpic img:hover,
.gallery-item img:hover{

    transform:
    scale(1.05)
    rotate(-1deg);

    box-shadow:
    0 20px 60px rgba(0,0,0,.25);
}

/*---------------Animated Gradient Section--------------------*/
.stats{
    position:relative;
    overflow:hidden;
}

.stats::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:
    linear-gradient(
    45deg,
    rgba(255,198,0,.15),
    rgba(0,62,125,.15));

    border-radius:50%;

    filter:blur(100px);

    top:-100px;
    left:-100px;

    animation:rotateGradient 12s linear infinite;
}

@keyframes rotateGradient{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

/*------------------Premium Button Animation----------------------*/
.btn-get-started{
    position:relative;
    overflow:hidden;
}

.btn-get-started::before{

    content:'';

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.4),
    transparent);

    transition:.7s;
}

.btn-get-started:hover::before{
    left:100%;
}

/*--------------------- --------------------------*/
.reveal{

opacity:0;

transform:
translateY(50px);

transition:.8s ease;
}

.reveal.active{

opacity:1;

transform:
translateY(0);
}



/*------------------------------------*/
.clean-energy-section{
    background:#f3f3f3;
    padding:120px 0;
    overflow:hidden;
}

.energy-wrapper{
    max-width:1200px;
    margin:auto;
    position:relative;
    height:700px;
}

/* Yellow Box */

.bg-box{
    position:absolute;
    right:120px;
    top:20px;
    width:420px;
    height:630px;
    background:var(--accent-color);
    z-index:1;
}

/* Image */

.energy-image{
    position:absolute;
    right:170px;
    top:80px;
    z-index:2;

    animation:imageSlide 1.2s ease;
}

.energy-image img{
    width:620px;
    height:520px;
    object-fit:cover;
}

/* White Card */

.energy-content{
    position:absolute;
    left:40px;
    top:250px;

    width:420px;

    background:#fff;
    padding:50px;

    z-index:3;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    animation:cardSlide 1.2s ease;
}

.energy-content h2{
    font-size:44px;
    font-weight:300;
    margin-bottom:25px;
    color:#333;
}

.energy-content p{
    font-size:18px;
    line-height:1.6;
    color:#666;
    margin-bottom:25px;
}

.energy-btn{
    display:inline-block;
    background:var(--accent-color);
    color:#fff;
    padding:16px 40px;
    border-radius:50px;
    text-decoration:none;
    letter-spacing:2px;
    font-weight:600;
}

.energy-btn:hover{
    display:inline-block;
    background:#0c91be;
    color:#fff;
    padding:16px 40px;
    border-radius:50px;
    text-decoration:none;
    letter-spacing:2px;
    font-weight:600;
}

/* Animation */

@keyframes imageSlide{
    from{
        opacity:0;
        transform:translateX(150px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes cardSlide{
    from{
        opacity:0;
        transform:translateX(-150px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/*----------------------------*/
.solar-work-section{
    position:relative;
    background:#f3f3f3;
    padding-bottom:180px;
}

/* Banner Image */

.solar-banner{
    height:520px;
    overflow:hidden;
    position:relative;
}

.solar-banner::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;

background:linear-gradient(
        to right,
        rgba(7,25,56,0.85),
        rgba(7,25,56,0.45),
        rgba(7,25,56,0.05)
    );
}

.solar-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transform:scale(1.08);
    animation:bannerZoom 12s ease-in-out infinite alternate;
}

@keyframes bannerZoom{
    from{
        transform:scale(1.08);
    }
    to{
        transform:scale(1.15);
    }
}

/* Floating Card */

.solar-card{
    position:absolute;
    left:18%;
    top:280px;

    width:480px;
    background:var(--accent-color);

    padding:55px 50px;

    text-align:center;

    animation:cardUp 1s ease; z-index:5;
}

.solar-card h2{
    font-size:40px;
    line-height:1.15;
    font-weight:300;
    color:#fff;
    margin-bottom:20px;
}

.solar-card p{
    font-size:18px;
    line-height:1.8;
    color:#fff;
    margin-bottom:35px;
}

/* Button */

.solar-btn{
    display:inline-block;

    background:#fff;
    color:var(--accent-color);

    text-decoration:none;

    padding:18px 45px;

    border-radius:50px;

    letter-spacing:3px;
    font-weight:700;

    transition:.4s;
}

.solar-btn:hover{
    transform:translateY(-4px);
}

/* Animation */

@keyframes cardUp{

    from{
        opacity:0;
        transform:translateY(80px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@media (max-width:991px){

    .solar-card{
        position:relative;
        left:auto;
        top:-80px;
        margin:auto;
        width:90%;
    }

    .solar-card h2{
        font-size:42px;
    }

    .solar-card p{
        font-size:18px;
    }
}


/*-----------------Nextarea-------------------------*/


/* -- Inner Area -- */
.roofLink{display:block; display:block; overflow:hidden; position:relative; top:-125px; z-index:99; margin-bottom: -75px;}
.roofLink > div{padding:0; background:var(--red); text-align:right; color:#fff; position:absolute; bottom:1px; width:100%;}
.roofLink > div a{color:#fff; display:inline-block; padding:10px 30px; border-left:1px #fff solid;}
.roofLink > div a i{margin-left:5px;}
.roofLink > div a:hover{background:var(--dark);}
.roofLink img{width:45%; position:relative; z-index:5;}



.nxtbannerarea {
  position: relative;
  width: 100%;
  min-height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background Image */
.nxtbannerarea img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;

  /* Blur Effect */
  filter: blur(0.1px);
transform: scale(1.00);
}

/* Overlay */
.nxtbannerarea:before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* Content container */
.nxtbannerarea .container {
  position: relative;
  z-index: 3;
}

/* Center content */
.nxtbannerarea .inner-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: left;
  color: #fff;
}

/* Heading */
.nxtbannerarea .inner-header h1 {
  font-size: 50px;
  color: #012148;;
  margin-bottom: 10px;
}

/* Breadcrumb */
.nxtbannerarea .inner-header ul.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nxtbannerarea .inner-header ul.breadcrumb-list li {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  position: relative;
  padding-right: 10px;
}

.nxtbannerarea .inner-header ul.breadcrumb-list li:before {
  content: '/';
  position: absolute;
  left: -8px;
  top: 0;
}

.nxtbannerarea .inner-header ul.breadcrumb-list li:first-child:before {
  display: none;
}

.nxtbannerarea .inner-header ul.breadcrumb-list li a {
  color: #fff;
}

.nxtbannerarea .inner-header ul.breadcrumb-list li a:hover {
  color: #ffe87d;
}

.hero-tagline{
    margin-top: 30px;
    line-height: 0.95;
    text-transform: uppercase;
}

.hero-tagline .small-text{
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 5px;
	    background:rgb(12, 145, 190);;
    width: 150px;
  
    padding: 5px;
    text-align: center;
    border-radius: 16px;
}

.hero-tagline .big-text{
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #012148;
    line-height: 1; font-family: 'Poppins', sans-serif;
}

.hero-tagline .trust-text{
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #e53935;
    line-height: 1; font-family: 'Poppins', sans-serif;
}

@media(max-width:991px){
    .hero-tagline .big-text,
    .hero-tagline .trust-text{
        font-size:18px;  display:none;
    }

    .hero-tagline .small-text{
        font-size:14px;
        letter-spacing:2px; display:none;
    }
}

@media(max-width:576px){
    .hero-tagline .big-text,
    .hero-tagline .trust-text{
        font-size:34px;  display:none;
    }
}

/* SVG Waves */
.nxtbannerarea .hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
}

.nxtbannerarea .wave1 use {
  animation: move-forever1 10s linear infinite;
  fill: #fff;
  opacity: 0.6;
}

.nxtbannerarea .wave2 use {
  animation: move-forever2 8s linear infinite;
  fill: #fff;
  opacity: 0.4;
}

.nxtbannerarea .wave3 use {
  animation: move-forever3 6s linear infinite;
  fill: #fff;
}

.sub-menu-toggle{ display: none!important;}



.inner-page-section {
  width: 100%;
  position: relative;
  padding: 80px 0;
  background-color: #fff;
  background-image: url('../img/nextbg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* Inner White Box */
.inner-page-section .inner-box {
  background: #fff;
  padding: 60px 40px;
  margin-top: -60px;
  margin-bottom: 60px;
  border-radius: 20px;
  border-top: 5px solid var(--red);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Headings */
.inner-page-section h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 25px;
}

/* Form Fields */
.inner-page-section input,
.inner-page-section select,
.inner-page-section textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 6px;
  transition: 0.3s;
}

.inner-page-section input:focus,
.inner-page-section textarea:focus {
  border-color: var(--orange);
  outline: none;
}

/* Submit Button */
.inner-page-section input[type="submit"] {
  background: var(--dark);
  color: #fff;
  padding: 14px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.inner-page-section input[type="submit"]:hover {
  background: var(--orange);
}




/* Tablet & Mobile */
@media (max-width: 991px) {
  .nxtbannerarea .inner-header {
    text-align: center;
    padding: 0 20px;
  }
	
	

  .nxtbannerarea .inner-header h1,
  .nxtbannerarea .inner-header h2,
  .nxtbannerarea .inner-header p,
  .nxtbannerarea .inner-header .breadcrumb,
  .nxtbannerarea .inner-header .btn {
    text-align: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
	
	/* Heading */
.nxtbannerarea .inner-header h1 {
  font-size: 35px;
  /*color: #fff;*/
  margin-bottom: 10px;
}
	
	.inner-page-section .inner-box {

  background: #fff;

  padding:30px 10px;

  margin-top: -60px;

  margin-bottom: 60px;

  border-radius: 20px;

  border-top: 5px solid var(--red);

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);}
	

	.inner-page-section {
  width: 100%;
  position: relative;
  padding: 40px 0;
  background-color: #fff;}
	
}

@media (max-width: 767px) {
  .nxtbannerarea .inner-header {
    text-align: center;
    padding: 0 15px;
  }

  .nxtbannerarea .inner-header * {
    text-align: center;
  }
}



/*---------------Next page About-----------------------*/
.about-section {
    padding: 50px 30px;
    background: #f9fbf9;
    /*font-family: 'Poppins', sans-serif;*/
}



/* Intro */
.about-intro {
    text-align: left;
    margin-bottom: 50px;
}

.about-intro h2 {
    /*font-family: 'Poppins', sans-serif;*/
    font-size: clamp(1rem, 3vw, 2rem); /* Responsive: 32px - 48px */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 20px;
    position: relative;
}

/* Optional underline accent */
.about-intro h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #ff6600; /* Change to your brand color */
    margin-top: 12px;
    border-radius: 2px;
}

.about-intro p {
    font-size: 16px;
    color: #555;
    /*max-width: 800px;*/
    margin: auto;
    line-height: 1.7;
}

/* Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.about-box {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.about-box h3 {
    color: #003e7d;
    margin-bottom: 10px;
}

.about-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Motto */
.about-highlight {
    background: #003e7d;
    color: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 50px;
}

.about-highlight h2 {
    margin-bottom: 15px; color: var(--accent-color);
}

/* Vision Mission */
.about-flex {
    display: flex;
    gap: 30px;
}

.about-flex div {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.about-flex h2 {
    color: #003e7d;
    margin-bottom: 10px;
}


.core-values {
    margin-top: 35px;
}

.core-values ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.core-values ul li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
    padding: 18px;
    background: #fff;
    border-radius: 10px;
    border-left: 4px solid #d4a017;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    transition: all .3s ease; text-align: left;
}

.core-values ul li:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.core-values ul li i {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: #d4a017;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.core-values ul li strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.core-values ul li p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.core-values h3{
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    padding-bottom: 15px; text-align: left;
}

.core-values h3::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d5a021, #f4c542);
    border-radius: 50px;
}

.core-values h3 span{
    color: #d5a021;
}

/*==========================
 Vision & Mission
===========================*/

.vision-mission-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    margin-top:60px; margin-bottom: 30px;
}

.vm-card{
    position:relative;
    background:#fff;
    padding:45px 35px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 40px rgba(0,0,0,.08);
    transition:.45s ease;
    border-top:5px solid #d5a021;
}

.vm-card::before{
    content:"";
    position:absolute;
    left:-120%;
    top:0;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(213,160,33,.12),transparent);
    transition:.8s;
}

.vm-card:hover::before{
    left:120%;
}

.vm-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.vm-icon{
    width:80px;
    height:80px;
    margin-bottom:25px;
    border-radius:50%;
    background:#d5a021;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    transition:.4s;
}

.vm-card:hover .vm-icon{
    transform:rotate(12deg) scale(1.12);
}

.vm-card h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:18px;
    color:#111;
    font-family:'Poppins',sans-serif;
}

.vm-card p{
    margin:0;
    color:#666;
    line-height:1.9;
    font-size:16px;
}

.vision-card{
    border-top-color:#0d6efd;
}

.vision-card .vm-icon{
    background:#0d6efd;
}

.mission-card{
    border-top-color:#d5a021;
}

.mission-card .vm-icon{
    background:#d5a021;
}


/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-flex {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-intro h1 {
        font-size: 28px;
    }
}

.whychoose-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.whychoose-section .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.why-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-header h2 {
    font-size: 34px;
    color: #006633;
    margin-bottom: 10px;
}

.why-header p {
    color: #555;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.why-box {
    background: #f9fbf9;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid #eee;
    transition: 0.3s;
    position: relative;
}

.why-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* Icon */
.why-box .icon {
    font-size: 28px;
    margin-bottom: 15px;
}

/* Title */
.why-box h3 {
    font-size: 18px;
    color: #006633;
    margin-bottom: 10px;
}

/* Text */
.why-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-header h2 {
        font-size: 26px;
    }
}


/*=========================
 Certificates
=========================*/

.certificate-section{
    padding:80px 0;
    background:linear-gradient(135deg,#f8fbfd 0%,#eef5f8 100%);
}

.certificate-wrapper{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
    margin-top:50px;
}

.certificate-box{
    width:340px;
    text-align:center;
}

.certificate-box a{
    display:block;
    position:relative;
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.certificate-box img{
    width:100%;
    display:block;
    transition:.5s;
}

.certificate-overlay{
    position:absolute;
    inset:0;
    background:rgba(12,145,190,.85);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s;
}

.certificate-overlay span{
    color:#fff;
    font-size:18px;
    font-weight:600;
}

.certificate-box:hover img{
    transform:scale(1.08);
}

.certificate-box:hover .certificate-overlay{
    opacity:1;
}

.certificate-box h4{
    margin-top:18px;
    font-size:22px;
    font-weight:600;
    color:#222;
}

.section-title h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    font-size:17px;
}

@media(max-width:768px){

    .certificate-box{
        width:100%;
        max-width:350px;
    }

    .section-title h2{
        font-size:30px;
    }
}

/*==========================
Projects
==========================*/

.projects-section{
    padding:100px 0;
    background:#f7f9fc;
}

.projects-section-title{
    max-width:700px;
    margin:0 auto 60px;
}

.projects-section-title span{
    display:inline-block;
    padding:8px 20px;
    background:#0b5ed7;
    color:#fff;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.projects-section-title h2{
    font-size:42px;
    font-weight:700;
    color:#0d1b2a;
    margin-bottom:18px;
}

.projects-section-title p{
    color:#6c757d;
    font-size:17px;
}




.project-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.4s;
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.project-image{
    position:relative;
    height:230px;
    overflow:hidden;
}

.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.project-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(9,30,66,.35);
    z-index:1;
}

.project-image i{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:70px;
    color:#fff;
    z-index:2;
}

.project-image .status{
    position:absolute;
    top:18px;
    right:18px;
    z-index:3;
}

/* Hover Effect */
.project-card:hover .project-image.no-image i{
    transform: scale(1.15) rotate(10deg);
}

.project-card:hover .project-image.no-image::before{
    background: rgba(9,30,66,.45);
}

/* Status Badge */
.project-image .status{
    position:absolute;
    top:18px;
    right:18px;
    z-index:3;
}


.status{
    position:absolute;
    top:20px;
    left:20px;
    padding:8px 18px;
    border-radius:30px;
    color:#fff;
    font-size:13px;
    font-weight:600;
}

.status.ongoing{
    background:#198754;
}

.status.completed{
    background:#0d6efd;
}

.ongoing{
    background:#198754;
}

.completed{
    background:#0d6efd;
}

.project-content{
    padding:30px;
}

.project-content h3{
    font-size:20px;
    margin-bottom:20px;
    color:#0d1b2a;
}



.project-meta{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin:25px 0;
}

.meta-item{
    display:flex;
    flex-direction:column;
    padding-bottom:12px;
    border-bottom:1px solid #ececec;
}

.meta-label{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#0b5ed7;
    font-weight:700;
    margin-bottom:4px;
}

.meta-value{
    font-size:15px;
    color:#444;
    line-height:1.7;
    word-break:break-word;
}

.project-content p{
    margin-top:14px;
    color:#666;
    line-height:1.4;
}

.project-btn{
    display:inline-block;
    margin-top:25px;
    padding:12px 28px;
    border-radius:40px;
    background:#0d1b2a;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.project-btn:hover{
    background:#0b5ed7;
    color:#fff;
}

/* Tablet */
@media (max-width: 991px) {
  .projects-section {
    padding: 40px 0;  }
	
	.projects-section-title h2 {
  font-size: 32px;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 12px;}
	
}

/* Mobile */
@media (max-width: 767px) {
  .projects-section {
    padding: 20px 0;  }
	
		.projects-section-title h2 {
  font-size:25px;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 12px;}
}
/*----------------Next page services-section----------------------*/

.service-page-section{
    padding:50px 0 0;
    background:#f8fafc; overflow:hidden;
}

.service-page-section p{
    padding:16px;
    background:#0b5ed7;
	display: block; margin: 20px 0; color: #fff;
}

.service-page-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    height:100%;
    transition:.4s;
    border-top:5px solid #0b5ed7;
}

.service-page-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.service-page-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.service-page-header i{
    flex:0 0 55px;
    height:55px;

    background:#0b5ed7;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.service-page-header h3{
    margin:0;
    font-size:21px;
    font-weight:700;
    color:#1b1b1b;
}

.service-page-list{
    list-style:none;
    padding:0;
    margin:0;
}

.service-page-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:15px;
    line-height:1.7;
    color:#555;
}

.service-page-list li i{
    color:#198754;
    margin-top:5px;
}

/* Tablet */
@media (max-width: 991px) {
	
	.service-page-header{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap:12px;
    }

    .service-page-header i{
        margin: 0;
    }


	
  .service-page-header h3{
    margin:0;
    font-size:16px; padding:0 5px;
    font-weight:700;
    color:#1b1b1b;}
	
	.service-page-section p{
    padding:15px;
    background:#0b5ed7;
	display: block; margin: 10px 0; color: #fff;
}
	
.service-page-list li {

  margin-bottom: 10px;
  line-height: 1.5;
font-size:14px;
}
	
}

/* Mobile */
@media (max-width: 767px) {
  
}

/*=========================
Clients Page
=========================*/

.clients-page-section{
    padding:100px 0;
    background:#f8fafc;
}

.clients-page-title{
    max-width:720px;
    margin:0 auto 60px;
    text-align:center;
}

.clients-page-title span{
    display:inline-block;
    padding:8px 22px;
    background:#0b5ed7;
    color:#fff;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.clients-page-title h2{
    font-size:42px;
    font-weight:700;
    color:#0d1b2a;
    margin-bottom:18px;
}

.clients-page-title p{
    color:#6c757d;
    font-size:17px;
}

.clients-page-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;

}

.clients-page-card{

    background:#fff;
    border-radius:16px;
    padding:35px;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:180px;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.clients-page-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.14);

}

.clients-page-card img{

    max-width:160px;
    max-height:80px;

    width:auto;
    height:auto;

    object-fit:contain;

    transition:.35s;

}

.clients-page-card:hover img{

    transform:scale(1.08);

}


/*======================================
        CONTACT PAGE
======================================*/

.contact-page{
    padding:80px 0;
    background:#f5f7fa;
}

.contact-page .inner-box{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.contact-page .row{
    align-items:stretch;
}

/*=========================
    Contact Page Title
=========================*/

.contact-page .section-title{
    margin-bottom:60px;
}

.contact-page .section-title span{
    display:inline-block;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#0d6efd;
    background:#eaf3ff;
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:15px;
	margin-top: 35px;
}

.contact-page .section-title h2{
    font-size:42px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:15px;
    line-height:1.2;
}

.contact-page .section-title p{
    max-width:650px;
    margin:0 auto;
    font-size:17px;
    line-height:1.8;
    color:#6c757d;
}

/* Responsive */

@media (max-width:991px){

    .contact-page .section-title h2{
        font-size:36px;
    }

}

@media (max-width:767px){

    .contact-page .section-title{
        margin-bottom:40px;
    }

    .contact-page .section-title h2{
        font-size:30px;
    }

    .contact-page .section-title p{
        font-size:15px;
    }

}
/*======================================
Left Card
======================================*/

.contact-card{
    background:#0f172a;
    color:#fff;
    height:100%;
    padding:50px;
}

.contact-card h3{
    font-size:32px;
    font-weight:700;
    margin-bottom:40px;
    color:#fff;
}

.contact-card hr{
    border-color:rgba(255,255,255,.15);
    margin:35px 0;
}

/*======================================
Contact Item
======================================*/

.contact-item{
    display:flex;
    gap:20px;
    margin-bottom:30px;
    align-items:flex-start;
}

.contact-item:last-child{
    margin-bottom:0;
}

.contact-item i{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:50%;
    background:#0d6efd;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
}

.contact-item h5{
    color:#fff;
    margin-bottom:8px;
    font-size:18px;
    font-weight:600;
}

.contact-item p{
    margin:0;
    color:#d7d7d7;
    line-height:1.8;
}

.contact-item a{
    display:block;
    color:#d7d7d7;
    text-decoration:none;
    margin-bottom:4px;
    transition:.3s;
}

.contact-item a:hover{
    color:#fff;
    padding-left:5px;
}

/*======================================
Form Card
======================================*/

.contact-form-card{
    background:#fff;
    height:100%;
    padding:50px;
}

.contact-form-card h3{
    font-size:32px;
    font-weight:700;
    margin-bottom:30px;
    color:#111827;
}

/*======================================
WPForms
======================================*/

.contact-form-card .wpforms-container{
    margin:0;
}

.contact-form-card .wpforms-field{
    padding:6px 0 !important;
}

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select{
    width:100%;
    border:1px solid #d8d8d8 !important;
    border-radius:8px !important;
    padding:14px 16px !important;
    font-size:15px;
    min-height:54px;
    transition:.3s;
}

.contact-form-card textarea{
    min-height:150px !important;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus{
    border-color:#0d6efd !important;
    box-shadow:0 0 0 3px rgba(13,110,253,.15);
}

.contact-form-card button,
.contact-form-card input[type=submit]{
    width:100%;
    border:none !important;
    background:#0d6efd !important;
    color:#fff !important;
    padding:15px !important;
    border-radius:8px !important;
    font-size:16px;
    font-weight:600;
    transition:.35s;
}

.contact-form-card button:hover,
.contact-form-card input[type=submit]:hover{
    background:#084298 !important;
}

/*======================================
Google Map
======================================*/

.map-section{
    margin-top:50px;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

/*======================================
Responsive
======================================*/

@media(max-width:991px){

    .contact-card,
    .contact-form-card{
        padding:35px;
    }

    .contact-page .section-title h2{
        font-size:34px;
    }

    .contact-card h3,
    .contact-form-card h3{
        font-size:28px;
    }
	
	

}

@media(max-width:767px){

    .contact-page{
        padding:60px 0;
    }

    .contact-card,
    .contact-form-card{
        padding:30px 25px;
    }

    .contact-item{
        gap:15px;
    }

    .contact-item i{
        width:45px;
        height:45px;
        min-width:45px;
        font-size:16px;
    }

    .contact-page .section-title h2{
        font-size:28px;
    }

    .map-section iframe{
        height:300px;
    }
	
	.contact-item{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .contact-item i{
        margin: 0 auto;
    }

    .contact-item h5,
    .contact-item p{
        text-align: center;
    }

}

/* ========================================
   WORK & FACILITIES
======================================== */

.work-facilities-section {
    padding: 90px 0;
    background: #f7f8fa;
}


/* Section Title */

.section-title {
    max-width: 800px;
    margin: 0 auto 45px;
}

.section-title span {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c69b5d;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1d2939;
    margin-bottom: 15px;
}

.section-title p {
    color: #667085;
    font-size: 16px;
    line-height: 1.8;
}


/* ========================================
   TABS
======================================== */

.facility-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 45px;
    border-bottom: 1px solid #ddd;
}

.facility-tab {
    border: none;
    background: transparent;
    padding: 15px 35px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #667085;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.facility-tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 3px;
    background: #c69b5d;
    transition: all 0.3s ease;
}

.facility-tab:hover,
.facility-tab.active {
    color: #1d2939;
}

.facility-tab.active::after {
    width: 100%;
}


/* ========================================
   TAB CONTENT
======================================== */

.facility-content {
    display: none;
    animation: fadeInFacility 0.5s ease;
}

.facility-content.active {
    display: block;
}

@keyframes fadeInFacility {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========================================
   HEADING
======================================== */

.facility-heading {
    margin-bottom: 25px;
}

.facility-heading h2 {
    font-size: 32px;
    line-height: 1.35;
    color: #1d2939;
    font-weight: 700;
}


/* ========================================
   TEXT
======================================== */

.facility-text p,
.facility-block p {
    font-size: 16px;
    line-height: 1.9;
    color: #667085;
    margin-bottom: 18px;
}


/* ========================================
   CONTENT BLOCK
======================================== */

.facility-block {
    margin-top: 45px;
   display:block; margin-bottom:30px;
   
}

.facility-block div{
    margin-top: 45px;
    padding: 35px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06); 
}

.facility-block h3 {
    font-size: 25px;
    color: #1d2939;
    margin-bottom: 18px;
    position: relative;
    padding-left: 18px;
}

.facility-block h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 25px;
    background: #c69b5d;
    border-radius: 3px;
}

.facility-features {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.facility-features li {
    position: relative;
    padding: 10px 0 10px 30px;
    color: #667085;
    font-size: 16px;
    line-height: 1.6;
}

.facility-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 12px;
    color: #c69b5d;
    font-size: 14px;
}

/* ========================================
   TABLE
======================================== */

.facility-table-wrap {
    overflow-x: auto;
    margin-top: 25px;
}

.facility-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.facility-table th,
.facility-table td {
    padding: 17px 20px;
    border: 1px solid #e5e7eb;
    text-align: left;
    font-size: 15px;
    line-height: 1.6;
}

.facility-table th {
    width: 35%;
    background: #f7f8fa;
    color: #1d2939;
    font-weight: 600;
}

.facility-table td {
    color: #667085;
}


/* ========================================
   CONTACT
======================================== */

.facility-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.contact-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.contact-icon {
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c69b5d;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
}

.contact-box h4 {
    font-size: 18px;
    margin: 0 0 8px;
    color: #1d2939;
}

.contact-box p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}

.contact-box a {
    color: #667085;
    text-decoration: none;
}

.contact-box a:hover {
    color: #c69b5d;
}


/* ========================================
   GALLERY
======================================== */

.facility-gallery {
    margin-top: 60px;
}

.gallery-heading {
    margin-bottom: 25px;
}

.gallery-heading h3 {
    font-size: 28px;
    color: #1d2939;
    margin-bottom: 8px;
}

.gallery-heading p {
    color: #667085;
}

.facility-gallery .col-lg-4,
.facility-gallery .col-md-6 {
    margin-bottom: 25px;
}

.facility-gallery a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

.facility-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.facility-gallery a:hover img {
    transform: scale(1.08);
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {

    .work-facilities-section {
        padding: 70px 0;
    }

.section-title {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .section-title span {
        display: block;
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 8px;
        letter-spacing: 2px;
    }

    .section-title h2 {
        font-size: 30px;
        line-height: 1.3;
        margin: 0 0 15px;
    }

    .section-title p {
        font-size: 15px;
        line-height: 1.7;
        margin: 0;
    }

    .facility-heading h2 {
        font-size: 28px;
    }

    .facility-contact {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 767px) {

    .work-facilities-section {
        padding: 55px 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .facility-tabs {
        gap: 0;
    }

    .facility-tab {
        padding: 13px 18px;
        font-size: 13px;
    }

    .facility-block {
        padding: 25px 20px;
    }

    .facility-heading h2 {
        font-size: 25px;
    }

    .facility-table th,
    .facility-table td {
        padding: 13px 15px;
        font-size: 14px;
    }

    .facility-gallery img {
        height: 240px;
    }

}


@media (max-width: 480px) {

    .facility-tab {
        padding: 12px 12px;
        font-size: 12px;
    }

    .facility-heading h2 {
        font-size: 22px;
    }

    .facility-text p,
    .facility-block p {
        font-size: 15px;
    }

    .contact-box {
        padding: 22px 18px;
    }

}

/* =========================
   Gallery Listing
========================= */

.gallery-listing {
    margin-top: 40px;
    margin-left: -10px;
    margin-right: -10px;
}

.gallery-listing .col-lg-4,
.gallery-listing .col-sm-6 {
    padding: 10px;
}

.gallery-listing .col-lg-4 > div,
.gallery-listing .col-sm-6 > div {
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);
}

.gallery-listing a {
    display: block;
    overflow: hidden;
    position: relative;
}

.gallery-listing img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.gallery-listing a:hover img {
    transform: scale(1.08);
}

/* Overlay */
.gallery-listing a::after {
    content: "\f00e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-listing a:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


/* =========================
   Tablet
========================= */

@media (max-width: 991px) {
    .gallery-listing img {
        height: 240px;
    }
}


/* =========================
   Mobile
========================= */

@media (max-width: 575px) {
    .gallery-listing {
        margin-top: 25px;
    }

    .gallery-listing .col-lg-4,
    .gallery-listing .col-sm-6 {
        padding: 7px;
    }

    .gallery-listing img {
        height: 220px;
    }
}

/*==============================
        CAREER SECTION
===============================*/

.career-section{
    padding:90px 0;
    /*background:#f7f9fc;*/
}

.career-heading{
    margin-bottom:60px;
}

.career-heading span{
    display:inline-block;
    background:#e9f2ff;
    color:#0d6efd;
    padding:8px 18px;
    border-radius:30px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    font-weight:600;
}

.career-heading h2{
    font-size:44px;
    font-weight:700;
    color:#0f172a;
    margin:20px 0 10px;
}

.career-heading .subtitle{
    font-size:20px;
    color:#6c757d;
}

.career-content h3{
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
}

.career-content p{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:18px;
}

.career-image{
    text-align:center;
}

.career-image img{
    width:100%;
    max-width:520px;
    height:auto;
    border-radius:15px;
    display:block;
    margin:0 auto;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.career-values{
    margin-top:70px;
}

.value-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;
    height:100%;
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-card i{
    width:70px;
    height:70px;
    line-height:70px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    font-size:28px;
    margin-bottom:20px;
}

.value-card h4{
    font-size:20px;
    font-weight:700;
    margin-bottom:15px;
}

.value-card p{
    color:#6c757d;
    line-height:1.7;
    margin:0;
}


.life-section{
    padding:90px 0;
    background:#fff;
}

.life-section .section-title{
    margin-bottom:60px;
}

.life-section .section-title span{
    color:#ff9800;
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.life-section .section-title h2{
    font-size:42px;
    font-weight:700;
    margin:15px 0;
    color:#173a8b;
}

.life-section .section-title p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.life-box{
    text-align:center;
    padding:30px 20px;
    transition:.3s;
}

.life-box:hover{
    transform:translateY(-8px);
}

.life-icon{
    width:90px;
    height:90px;
    margin:0 auto 20px;
    border:2px solid #ff9800;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.life-icon i{
    font-size:40px;
    color:#ff9800;
}

.life-box h4{
    font-size:24px;
    color:#173a8b;
    margin-bottom:12px;
}

.life-box p{
    color:#666;
    line-height:1.8;
}






/* Responsive */

@media(max-width:991px){

    .career-heading h2{
        font-size:36px;
    }

    .career-content{
        margin-bottom:30px;
    }

}

@media(max-width:767px){

    .career-section{
        padding:70px 0;
    }

    .career-heading h2{
        font-size:30px;
    }

    .career-heading .subtitle{
        font-size:17px;
    }

    .career-content h3{
        font-size:26px;
    }

}

/*==========================
OPEN POSITIONS
===========================*/

.career-job-section{

    padding:90px 0;
    background:#fff;

}

.job-item{

    border-bottom:1px solid #e9e9e9;

    padding:25px 0;

    transition:.35s;

}

.job-item:hover{

    background:#fafafa;

}

.job-thumb img{

    width:85px;

    height:85px;

    border-radius:10px;

    object-fit:cover;

}

.job-info h4{

    font-size:20px;

    font-weight:700;

    color:#173a8b;

    margin-bottom:12px;

}

.job-info span{

    background:#f2f2f2;

    padding:6px 14px;

    border-radius:4px;

    font-size:14px;

    color:#666;

}

.job-location{

    font-size:18px;

    color:#666;

}

.job-location i{

    color:#f7a637;

    margin-right:8px;

}

.apply-btn{

    display:inline-block;

    background:#f7a637;

    color:#fff;

    padding:14px 28px;

    border-radius:6px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.apply-btn:hover{

    background:#173a8b;

    color:#fff;

}

@media(max-width:991px){

.job-item{

text-align:center;

}

.job-thumb{

margin-bottom:20px;

}

.job-location{

margin:20px 0;

}

.apply-btn{

margin-top:20px;

display:inline-block;

}

}

/*==========================
Career Sidebar
==========================*/

.career-sidebar{

    padding-left:35px;

}

.career-sidebar h3{

    font-size:34px;

    color:#173a8b;

    font-weight:700;

    margin-bottom:35px;

}

.career-item{

    padding-bottom:28px;

    margin-bottom:28px;

    border-bottom:1px solid #ececec;

}

.career-item:last-child{

    border-bottom:none;

}

.career-item h4{

    font-size:20px;

    margin-bottom:10px;

    line-height:1.4;

}

.career-item h4 a{

    color:#173a8b;

    text-decoration:none;

}

.career-item h4 a:hover{

    color:#f6a536;

}

.career-location{

    color:#666;

    font-size:17px;

    margin-bottom:15px;

}

.career-location i{

    color:#f6a536;

    margin-right:8px;

}

.apply-btn{

    display:inline-block;

    background:#f6a536;

    color:#fff;

    padding:12px 28px;

    border-radius:4px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.apply-btn:hover{

    background:#173a8b;

    color:#fff;

}

@media(max-width:991px){

.career-sidebar{

padding-left:0;

margin-top:50px;

}

}
