@charset "UTF-8";

/* Fonts */
:root {
--default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--heading-font: "Josefin Sans",  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: #40524d; /* Default color used for the majority of the text content across the entire website */
--heading-color: #0d1f1a; /* Color for headings, subheadings and title throughout the website */
--accent-color: #ff800f; /* 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: rgba(255, 255, 255, 0.6);  /* The default color of the main navmenu links */
--nav-hover-color: #ffffff; /* 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: #40524d; /* Used for navigation links of the dropdown items in the navigation menu. */
--nav-dropdown-hover-color: #2f5d50; /* 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: #f1f6f5;
--surface-color: #ffffff;
}

.dark-background {
--background-color: #2f5d50;
--default-color: #ffffff;
--heading-color: #ffffff;
--surface-color: #2e2b28;
--contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

html {
  scroll-behavior: smooth;
}

body {
color: var(--default-color);
background-color: var(--background-color);
font-family: var(--default-font);
}

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: var(--heading-font);
}

  .hero { height: 90vh; background: url('../images/hero-bg.webp') center/cover no-repeat; color: white; }
  .overlay { background: rgba(0,0,0,0.6); height: 100%; }

.hero h1{
  color:#fff;
  font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
    
 .section { padding: 60px 0; }


.btn-primary {
background-color: #FF800F !important;
border-color: #FF800F !important;
}

.btn-primary:hover {
background-color: #e67300 !important;
border-color: #e67300 !important;
}

.navbar {
  border-top:4px solid #ff800f
}
.navbar ul li a{
font-family: var(--nav-font);
}

.top-bar{
  background-color: #ff800f;
  color:#fff;
  padding:3px
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
}
 .card {
      background-color: #2e5298;
      color: #ffffff;
      border: none;
      transition: 0.3s ease;
    }

    .card-img-top {
      height: 250px;
      object-fit: cover;
    }

    .card:hover {
      background-color: #ff800f;
      color: #ffffff;
      transform: translateY(-5px);
    }


    /* CTA BOX */
    .cta-box {
      background: linear-gradient(135deg, #ff800f, #ff9f40);
      color: #fff;
      border-radius: 12px;
      padding: 30px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      box-shadow: 0 10px 25px rgba(0,0,0,0.4);
      transition: 0.3s ease;
    }

    .cta-box:hover {
      transform: scale(1.05);
    }

    .cta-title {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .cta-phone {
      font-size: 32px;
      font-weight: bold;
      margin: 15px 0;
    }

    .cta-text {
      font-size: 16px;
      margin-bottom: 20px;
    }

    .cta-btn {
      background-color: #000;
      color: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 500;
    }

    .cta-btn:hover {
      background-color: #222;
    }


.features i{
  color:#ff800f !important
}


.bg-dark{
  background-color: #000 !important
}

.text-primary {
  color : #ff800f !important
}

.call-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 15px;
  background: #25D366;
  color: white;
  font-size: 22px;
  padding: 12px 16px;
  border-radius: 50%;
  z-index: 999;
}

footer a{
  color:#fff
}
 @media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
    .cta-box {
    margin-top: 20px;
  }
}
