@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: "Raleway", sans-serif;
    --nav-font: "Montserrat", 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: #323b3b;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2f345b;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #c59c3d;
  /* 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. */
  --secondary-color: #f2cd74;
  --transparent-color: #2f345b0c;
  --bg-transparent-color: #c59c3d1c;
  /* 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: #2f345b;
  /* The default color of the main navmenu links */
  --nav-hover-color: #c59c3d;
  --nav-transparent-color: #c59c3d0c;
  /* 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: #2f345b;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #c59c3d;

    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
    --style-font: "Montez", cursive;
    --title-font: "Manrope", sans-serif;
}

/* 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: #f2cc741c;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #081b12;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #1f3028;
    --contrast-color: #ffffff;
}


.accent-background {
    --background-color: #077f46;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --accent-color: #ffffff;
    --surface-color: #2a8f5f;
    --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: 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);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* Preloader styling */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.6s ease-in-out; /* smoother fade */
}

.loader {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 9999;
}

/* Animation to reveal the image */
@keyframes slideImage {
    to {
        clip-path: inset(0 -100% 0 0);
        /* Reveals the image by animating the clip-path */
    }
}

/* Loader image styling */
.loader-img {
    width: 100%;
    height: auto;
    clip-path: inset(0 100% 0 0);
    /* Initially hides the image */
    animation: slideImage 2s steps(20) infinite;
    /* Adjust number of steps based on logo width */
    z-index: 9999;
}

@media (max-width: 767px) {

    /* Tablet (landscape) / Small laptop */
    .loader-img {
        width: 60%;
    }
}


/* =====================================
   Minimal Thumb-Only Custom Scrollbar
   ===================================== */

/* WebKit Browsers */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: transparent; /* No track background */
}

::-webkit-scrollbar-track {
    background: transparent !important; /* Fully invisible */
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color); /* Gold thumb */
    border-radius: 10px;
    transition: background 0.3s ease, opacity 0.3s ease;
    opacity: 0.6; /* subtle by default */
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
    opacity: 1; /* stronger visibility when interacting */
}

/* Firefox */
* {
    scrollbar-width: thin; /* minimal */
    scrollbar-color: var(--accent-color) transparent; /* thumb + invisible track */
}


/*--------------------------------------------------------------
# Scroll Top Button & Whatsapp
--------------------------------------------------------------*/

.scroll-div {
    height: 2.5rem;
    width: 2.5rem;
    display: block;
    position: fixed;
    bottom: 4rem;
    right: 2rem;
    z-index: 9999;
}

.scroll-to-top {
    height: 2.5rem;
    width: 2.5rem;
    background: #c59c3d;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;

}

.scroll-to-top:hover {
    opacity: 1;
}

.scroll-to-top img {
    width: 80%;
}


.whatsapp-icon-main-div {
    position: fixed;
    bottom: 1rem;
    right: 2rem;
    z-index: 9999;
}

.whatsapp-icon-div a img {
    width: 2.5rem;
    height: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Animation */
.whatsapp-icon-div a img:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 255, 0, 0.5);
}

/* Click (Active) Animation */
.whatsapp-icon-div a img:active {
    transform: scale(0.95);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.whatsapp-icon-div a img {
    animation: pulse 2s infinite ease-in-out;
}


@media (max-width: 1199px) {

    /* Tablet (landscape) / Small laptop */
    .scroll-div {
        right: 1rem;
    }

    .whatsapp-icon-main-div {
        right: 1rem;
    }


}

@media (max-width: 767px) {
    /* Tablet (landscape) / Small laptop  */
    .scroll-div {
        height: 2rem;
        width: 2rem;
        bottom: 3.5rem;
        right: 1rem;
    }

    .scroll-to-top {
        height: 2rem;
        width: 2rem;
    }

    .whatsapp-icon-main-div {
        position: fixed;
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-icon-div a img {
        width: 2rem;
        height: 2rem;
    }
}

/* OUR NEW CSS CODE BELOW */
.purpose-chip {
    border-radius: 6px !important;
    padding: 12px 0;
    border: 1px solid var(--accent-color) !important;
    color: var(--accent-color) !important;
    transition: 0.25s ease;
    user-select: none;
}

.btn-check:checked + .purpose-chip {
    background: var(--accent-color) !important;
    color: #fff !important;
    font-weight: bold;
}

.purpose-chip:hover {
    background: var(--accent-color) !important;
    color: #fff !important;
}


/* Make video responsive */
.styled-video {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto; /* center on page */

    /* Border & Shadow */
    border: 3px solid var(--accent-color, #00ADB5); /* accent color */
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);

    /* Smooth hover effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover scale and shadow */
.styled-video:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* Optional: Make it look like a card on smaller screens */
@media (max-width: 768px) {
    .styled-video {
        border-width: 2px;
        border-radius: 6px;
    }
}


/* ====================================================================== */
/* =======================  SERVICE CARDS  (START)  ====================== */
/* ====================================================================== */

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.service-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .icon i {
    font-size: 28px;
    color: var(--accent-color);
}

.service-card ul {
    padding: 0;
    list-style: none;
    margin-top: 15px;
}

.service-card ul li {
    font-size: 15px;
    padding: 4px 0;
}

/* ====================================================================== */
/* =======================  SERVICE CARDS  (END)  ======================== */
/* ====================================================================== */
