/* --- GLOBAL STYLES & VARIABLES --- */
:root {
  --primary-orange: #f37021;
 
  --text-color: #333;
  --text-light: #666;
  --bg-light: #f9f9f9;
  --bg-lightblue: #f0f7fa;
  --bg-offwhite: #fffaf7;
  --border-color: #ddd;
  --white: #fff;
  --font-main: 'Poppins', sans-serif;
}

* {
  /* box-sizing: border-box; */
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}




h1, h2, h3, h4 {
  font-weight: 700;
  /* margin-top: 0; */
}

h1 { font-size: 3.5rem; line-height: 1.1;  }
h2 { font-size: 2.5rem;  }
h3 { font-size: 1.5rem; color: var(); }
h4 { font-size: 1.1rem; }

p {
  /* color: var(--text-light); */
  margin-bottom: 1rem;
  margin-top: 0;
}

a {
  color: var(--primary-orange);
  text-decoration: none;
  transition: color 0.3s;
}
/* a:hover {
  color: var(--dark-blue);
} */

.btn {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
  border: 2px solid;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
}

.btn-primary {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  color: var(--white);
}
.btn-primary:hover {
  background-color: #e06010;
  border-color: #e06010;
  color: var(--white);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}
.btn-secondary:hover {
  /*background-color: var(--primary-orange);
  color: var(--white);*/
}

section {
    padding: 80px 0;
    overflow: hidden; 
}

.text-center { text-align: center; }

/* --- SCROLL ANIMATION --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}







/* --- HEADER --- */
   :root {
            --primary-orange: #f97316;
        
            --dark-text: #333333;
            --light-text: #555555;
            --white: #ffffff;
            --border-color: #e5e7eb;
            --header-bg: #ffffff;
            --font-family: 'Poppins', sans-serif;
            --transition-speed: 0.3s ease;
        }

        /* 2. GENERAL STYLES & RESET */
       

        body {
            margin: 0;
            font-family: var(--font-family);
            background-color: #f0f2f5; 
        }



        /* 3. HEADER & NAVIGATION STYLES */
        .main-header {
            background-color: var(--header-bg);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 5px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            /*display: flex;*/
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 58px; /* Adjust height as needed */
        }

        .nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 20px;
        }

        .nav-link {
            text-decoration: none;
            color: var(--primary-orange);
            font-weight: 600;
            font-size: 15px;
            transition: color var(--transition-speed);
        }

        .nav-link:hover {
            color: #dd6b18;
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown .nav-link {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: -15px;
            background-color: var(--white);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); border-radius: 5px;
            padding: 10px 0;
            list-style: none;
            width: 260px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
/*            transition: opacity var(--transition-speed), transform var(--transition-speed), visibility var(--transition-speed);*/
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 10px 20px;
            text-decoration: none;
            color: var(--dark-text);
            font-size: 0.95rem;
            font-weight: 500;
            transition: background-color var(--transition-speed), color var(--transition-speed);
        }

        .dropdown-menu a:hover {
            background-color: #f8f8f8;
            color: var(--primary-orange);
        }

        /* Header Actions (Right side) */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-info {
            font-size: 0.9rem;
            text-align: right;
            color: var(--light-text);
        }
        .phone {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone svg {
  width: 20px;
  height: 20px;
}
/*        .contact-info div {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 6px;
        }*/

        .contact-info svg {
            width: 16px;
            height: 16px;
        }

        .btn {
            padding: 10px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            transition: all var(--transition-speed);
            border: 2px solid transparent;
            font-size: 1rem;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--primary-orange);
            color: var(--white);
        }
        .btn-primary:hover {
            background-color: #dd6b18;
        }

        .btn-secondary {
            background-color: var(--white);
            color: var(--primary-orange);
            border-color: var(--primary-orange);
        }
        .btn-secondary:hover {
            background-color: #fff7f2;
        }
        
        /* Hamburger Menu Icon */
        .hamburger {
            display: none;
            cursor: pointer;
        }

        .hamburger .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background-color: var(--dark-text);
            transition: all var(--transition-speed);
        }
        
        /* 4. RESPONSIVE STYLES (Mobile & Tablet) */
        @media (max-width: 1100px) {
            .nav-menu {
                gap: 25px;
            }
            .header-actions {
                gap: 15px;
            }
            .contact-info {
                display: none;
            }
        }

        @media (max-width: 992px) {
  /* Show hamburger icon */
  .hamburger {
    display: block;
    z-index: 1001;
  }

  /* Mobile navigation menu */
  .nav-menu {
    position: fixed;
    top: 83px; /* Height of the header */
    left: -113%;
    width: 100vw;
    height: calc(100vh - 83px);
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
    gap: 20px;
    transition: left var(--transition-speed);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    z-index: 999;
  }

  /* When active, slide menu in */
  .nav-menu.active {
    left: 0;
  }

  /* Hide header buttons (like contact or CTA) */
  .header-actions {
    display: none;
  }

  /* Dropdown menu behavior on mobile */
  .dropdown {
    width: 100%;
  }

  .dropdown .nav-link {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown .dropdown-menu {
    position: static;
    display: none; /* toggled via JS */
    box-shadow: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 10px 0 0 15px;
  }

  .dropdown .dropdown-menu a {
    padding: 12px 0;
    display: block;
    width: 100%;
  }

  /* Optional: show dropdown on hover (for larger touch devices) */
  .dropdown:hover .dropdown-menu {
    display: block;
  }

  /* Hamburger icon turns into 'X' */
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}










/* --- HERO --- */
   :root {
            --primary-orange: #f97316;
            --white: #ffffff;
            --light-gray: #f8fafc;
            --text-gray: #4b5563;
            --border-color: #e5e7eb;
            --overlay-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black for the overlay */
        }

        body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
        }



        /* --- 2. Hero Section Styles --- */
        .hero {
            position: relative; /* Needed for the overlay to be positioned correctly */
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 80vh; /* Gives the section height */
            padding: 100px 20px;
            text-align: center;
            color: var(--white);
            
            /* Background Image */
            background-image: url('Image/home\ page\ logo1.png');
            background-size: cover;
            background-position: center;
            /* background-attachment: fixed;  */
        }

        /* Dark overlay to make text readable */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--overlay-color);
            z-index: 1; /* Sits between the background and the content */
        }

        /* Content container that sits on top of the overlay */
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        /* --- 3. Typography and Form Styles --- */
        .hero h1 {
            font-size: 3.8rem;
            font-weight: 700;
            line-height: 1.2;
            margin-top: 0;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .hero-quote-form {
            display: flex;
            justify-content: center;
            gap: 10px;
            max-width: 600px;
            margin: 0 auto;
        }

        /* The <select> dropdown element */
        .hero-quote-form select {
            flex-grow: 1; /* Allows the select box to take up available space */
            padding: 16px 20px;
            font-size: 1rem;
            border: 1px solid var(--border-color); border-radius: 5px;
            background-color: var(--white);
            color: var(--text-gray);
            cursor: pointer;
        }

        /* The "Get a Quote" button */
        .btn-primary {
            padding: 10px 15px;
            font-size: 1rem;
            font-weight: 700;
            background-color: var(--primary-orange);
            color: var(--white);
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            white-space: nowrap; /* Prevents text from wrapping on the button */
        }
        
        .btn-primary:hover {
            background-color: #fb923c; /* A slightly lighter orange for hover */
        }

        /* --- 4. Responsive Design --- */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.8rem; /* Smaller heading on tablets and below */
            }
            
            .hero p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 600px) {
            .hero h1 {
                font-size: 2.2rem; /* Even smaller heading on mobile */
            }

            /* Stack the form elements vertically on small screens */
            .hero-quote-form {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .hero-quote-form select,
            .hero-quote-form .btn-primary {
                       font-size: 14px;
                width: 296px;
                max-width: 400px; /* Prevents them from being too wide */
            }
        }

 


        















/* --- BRANDS --- */

/* General Body and Font Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #ffffff;
}

/* Main Brands Section Styling */
.brands {
    /* Uses a light grey background similar to the original image */
    background-color: #f8f9fa;
    padding: 50px 20px; /* Provides vertical and horizontal spacing */
    text-align: center;
     box-shadow: 0 4px 10px rgba(161, 161, 161, 0.3);
}

/* Container to center content and limit its width on large screens */


/* Title Styling */
.brands-title {
    font-size: 1.25rem; /* Base font size for mobile */
    color: #333;
    font-weight: 600;
    margin: 5px 0 15px 0; /* Space below the title */
}

/* Flexbox container for the logos */
.brand-logos {
    display: flex;
    flex-wrap: wrap;         /* Allows logos to wrap onto new lines on small screens */
    justify-content: center; /* Centers logos horizontally */
    align-items: center;     /* Aligns logos vertically */
    gap: 45px 35px;          /* Vertical and horizontal gap between logos */
}

/* Individual Logo Styling */
.brand-logos img {
    height: 35px;           /* Sets a consistent height for all logos */
    max-width: 140px;       /* Prevents any single logo from being too wide */
    width: auto;            /* Maintains the logo's aspect ratio */
    object-fit: contain;    /* Ensures the logo scales correctly within its box */
    
    /* Subtle effect for a modern feel */
    /* filter: grayscale(100%); */
    /* opacity: 0.6; */
    transition: all 0.3s ease-in-out;
}

/* Interactive hover effect for logos */
.brand-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1); /* Slightly enlarges the logo on hover */
}


/* --- Responsive Design using Media Queries --- */

/* Tablet and larger screens (768px and up) */
@media (min-width: 768px) {
    .brands-title {
        font-size: 1.5rem; /* Larger title on bigger screens */
    }

    .brand-logos {
        gap: 60px 50px; /* Increases the gap for more space */
    }

    .brand-logos img {
        height: 45px; /* Makes logos slightly larger */
    }
}

/* Desktop screens (1024px and up) */
@media (min-width: 1024px) {
    .brands {
        padding: 13px 40px;
    }
    
    .brand-logos {
        /* On large screens, spread the logos out evenly instead of centering them */
        justify-content: space-around;
        flex-wrap: nowrap; /* Prevents wrapping on desktop to keep them in one line */
    }
}











/* --- QUOTE FORM --- */



/* --- Global Styles & Fonts --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #fff;
    color: #333;
}

/* --- Main Section Layout --- */
.restaurant-quote-section {
    padding: 40px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.quote-container {
    width: 100%;
    max-width: 950px;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 40px 0;
}

/* --- Form Wrapper & Grid --- */
.form-wrapper {

    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
	border-radius: 10px;
background: #FDEBE2;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 16px;
}

/* --- Form Elements Styling --- */
.form-input {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
    background-color: #ffffff;
    border: 1px solid #dfe6e9; border-radius: 5px;
    text-align: left;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.form-input::placeholder {
    color: #555;
    opacity: 1;
}

.form-input:focus {
    outline: none;
    border-color: #f37321;
    box-shadow: 0 0 0 4px rgba(243, 115, 33, 0.15);
}

.submit-btn {
    margin-top: 15px;
    padding: 18px 43px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #f37321; /* Bright orange */
    border: none; border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.submit-btn:hover:not(:disabled) {
    background-color: #e0600c;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background-color: #fab488;
    cursor: not-allowed;
}

/* --- Feedback Message Area Styling --- */
.form-message-area {
    margin-top: 20px;
    padding: 15px; border-radius: 5px;
    font-weight: 500;
    display: none; /* Hidden by default */
}

.success-message {
    display: block;
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.error-message {
    display: block;
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}


/* --- Responsive Media Query for Tablets and Desktops --- */
@media (min-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .form-wrapper {
        padding: 30px;
    }

    .quote-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns on larger screens */
        gap: 25px;
    }
}









/* --- RELIABLE CHOICE --- */





/* --- Global Styles & Fonts --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    background-color: #ffffff;
}

/* --- Section & Main Container --- */
.reliable-choice-section {
    padding: 50px 20px; /* Padding for mobile */
}



/* 
  --- Main Layout Grid (Mobile-First) --- 
  Starts as a single column and switches to two columns on larger screens.
*/
.reliable-choice-container {
    display: grid;
    grid-template-columns: 1fr; /* Default single column */
    gap: 40px;
    align-items: center;
}

/* --- Left Column: Content Area --- */
.reliable-choice-content {
    text-align: center; /* Center-align text on mobile */
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f37321; /* Bright Orange */
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.section-subtext {
    font-size: 1rem;
    line-height: 1.6;
    color: #343a40; /* Dark, readable gray */
    max-width: 450px; /* Constrain line length for readability */
    margin: 0 auto;   /* Center the paragraph block on mobile */
}

/* --- Right Column: Features Grid --- */
.reliable-choice-features {
    display: grid;
    /* This creates a responsive grid that is 1 column on narrow screens and 2 on wider ones */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* --- Individual Feature Card Styling --- */
.feature-card {
    border: 1px solid rgb(233, 231, 231);
    background-color: #f8f9fa;
    padding: clamp(1rem, 2vw, 1.5rem); /* scales with viewport */ border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}


/* Hover effect (optional) */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .feature-card {
        border: 1px solid rgb(233, 231, 231);
        padding: 1.2rem;
                grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .feature-card {
        border: 1px solid rgb(233, 231, 231);
        padding: 2rem;
        border-radius: 6px;
    }
}


.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #212529; /* Black */
    margin: 0;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6c757d; /* Softer gray */
    margin: 0;
}

.feature-header .fa-solid {
    font-size: 1.6rem;
    color: #212529;
    margin-left: 15px;
}

/* --- Responsive Media Query for Tablets and Desktops --- */
@media (min-width: 992px) {
    .reliable-choice-section {
        padding: 20px 40px; /* More padding on larger screens */
    }
    
    /* Switch to a two-column layout for the entire section */
    .reliable-choice-container {
        grid-template-columns: 1fr 1.1fr; /* Left col | Right col (slightly wider) */
        gap: 80px; /* Increase gap between columns */
    }

    .reliable-choice-content {
        text-align: left; /* Align text to the left */
    }

    .section-heading {
        font-size: 3.0rem; /* Make heading larger */
    }

    .section-subtext {
        margin: 0; /* Remove auto margin to align left */
    }

    /* Force a 2x2 grid for features on desktop */
    .reliable-choice-features {
        grid-template-columns: 1fr 1fr;
    }
}







/* --- PASSION SECTION --- */





/* --- Global & Font Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    background-color: #ffffff;
    color: #212529; /* Default dark text color */
}

/* --- Section & Container --- */
.passion-section {
    padding: 50px 20px; /* Vertical and horizontal padding for mobile */
    display: flex;
    justify-content: center;
    align-items: center;
}


/* --- Main Layout Grid (Mobile-First) --- */
.passion-container {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 40px; /* Space between image and text on mobile */
    align-items: center; /* Vertically align items */
}

/* --- Image Styling --- */
.passion-image img {
    width: 100%;
    height: auto;
    display: block; /* Removes bottom space under image */
    border-radius: 16px; /* Rounded corners */
    object-fit: cover; /* Ensures image fills its container without distortion */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* --- Content Styling --- */
/* .passion-content {
    text-align: center; 
} */

.passion-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f37321; /* Bright Orange */
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.passion-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #343a40; /* Slightly softer dark gray */
    margin: 0 0 20px 0;
}

/* Remove bottom margin from the last paragraph */
.passion-content p:last-of-type {
    margin-bottom: 30px;
}

/* --- Button Styling --- */
.btn {
    display: inline-block;
   /* background-color: #f37321;*/
	 border: 2px solid #f37321;
/*    color: #ffffff;*/
    padding: 5px 10px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}


/* Responsive: Medium Screens */
@media (max-width: 768px) {
    .btn {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Responsive: Small Screens */
@media (max-width: 480px) {
    .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
}


.btn:hover {
   /* background-color: #e0600c; *//* Darker orange on hover */
    transform: translateY(-2px);
}

/* --- Responsive Media Query for Tablets & Desktops --- */
@media (min-width: 992px) {
    .passion-section {
        padding: 80px 40px; /* More padding on larger screens */
    }

    .passion-container {
        /* Switch to a two-column layout */
        grid-template-columns: repeat(2, 1fr);
        gap: 60px; /* Increase gap between columns */
    }

    .passion-content {
        text-align: left; /* Align text to the left on desktop */
    }

    .passion-content h2 {
        font-size: 2.5rem;
    }
}



















/* --- PROCESS SECTION --- */



/* --- Global & Font Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    color: #333; /* Default text color */
}

/* --- Section & Container --- */
.how-it-works-section {
    background-color: #fff7f2; /* Light peachy background from image */
    padding: 60px 20px; /* Vertical and horizontal padding */
}


/* --- Main Layout Grid (Mobile-First) --- */
.process-grid {
    display: grid;
    
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 50px; /* Space between cards when stacked */
}

/* --- Individual Card Styling --- */
.process-card {
    text-align: center;
}

.process-card img {
    width: 100%;
    height: 240px; /* Fixed height for all images */
    object-fit: cover; /* Prevents image distortion */
    border-radius: 16px;
    display: block;
    margin-bottom: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.process-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f37321; /* Bright Orange */
    margin: 0 0 15px 0;
}

.process-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057; /* A soft, dark gray */
    margin: 0;
    padding: 0 10px; /* Adds slight horizontal padding to text on mobile */
}

/* --- Responsive Media Query for Tablets & Desktops --- */
@media (min-width: 768px) {
    .how-it-works-section {
        padding: 80px 40px;
    }

    .process-grid {
        /* Switch to a three-column layout */
        grid-template-columns: repeat(3, 1fr);
        gap: 30px; /* Adjust gap for side-by-side view */
    }

    .process-card p {
        padding: 0; /* Remove horizontal padding on larger screens */
    }
}












/* --- TESTIMONIALS --- */



/* --- Global Styles --- */
  :root {
            --primary-orange: #FF6B00;
            --active-blue: #0095FF;
            --light-gray-bg: #F8F9FA;
            --text-dark: #212529;
            --text-gray: #6c757d;
            --dot-inactive: #d1d1d1;
        }

       

       
        /* --- Testimonials Section --- */
        .testimonials {
/*            width: 100%;*/
            text-align: center;
            padding: 60px 0;
            overflow: hidden; /* This is crucial for hiding the off-screen slides */
        }

        .testimonials h2 {
            font-size: clamp(2.2rem, 5vw, 3.5rem); /* Responsive font size */
            font-weight: 700;
            color: var(--primary-orange);
            margin: 0 0 50px 0;
        }

        /* --- Slider Wrapper & Cards --- */
        .slider-container {
            overflow: hidden;
            width: 100%;
            margin: 0 auto;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-card {
            background-color: var(--light-gray-bg);
            border-radius: 12px;
/*            padding: 30px;*/
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            margin: 0 20px; /* Creates a 30px gap between cards */
            flex-shrink: 0; 
            box-sizing: border-box;
            text-align: left;
            /* Default width for mobile (1 card) */
            width: calc(100% - 30px); 
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            /* align-items: flex-start; */
            /* margin-bottom: 20px; */
        }
        
        /* --- Card Content --- */
        .client-info {
            display: flex;
            align-items: center;
        }

        .client-info img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }

        .client-details h4 {
            margin: 0;
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .client-details p {
            margin: 0;
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        /* Using a ::before pseudo-element for the quote icon is more semantic */
        .quote-icon::before {
            content: '“'; /* Using the actual quote character */
            font-size: 5rem;
            color: var(--primary-orange);
            line-height: 0.9;
            font-family: 'Georgia', serif; /* A classic font for quotes */
            font-weight: bold;
            user-select: none;
        }

        .testimonial-text {
            color: #555;
            line-height: 1.7;
            margin: 0;
        }

        /* --- Navigation Dots & Link --- */
        .slider-dots {
            margin-top: 40px;
            margin-bottom: 30px;
            min-height: 15px; /* Prevents layout shift when dots appear/disappear */
        }

        .dot {
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: var(--dot-inactive);
            border-radius: 50%;
            display: inline-block;
            border: none;
            cursor: pointer;
            padding: 0;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .dot.active {
            background-color: var(--primary-orange);
            transform: scale(1.2);
        }

        .all-reviews-link {
            color: var(--primary-orange);
            text-decoration: underline;
            font-weight: 500;
            font-size: 1.1rem;
            display: inline-block;
        }
        
        /* --- Responsive Breakpoints --- */
        /* Tablet: 2 cards per view */
        @media (min-width: 768px) {
            .testimonial-card {
                width: calc(50% - 30px);
            }
        }

        /* Desktop: 3 cards per view */
        @media (min-width: 1024px) {
            .testimonial-card {
                width: calc(33.333% - 36px);
            }
        }










/* --- FOOTER --- */
 :root {
            --primary-orange: #f06a03;
            --text-dark: #3a3a3a;
            --text-light-gray: #5f5f5f;
            --border-color: #ced4da;
            --background-color: #ffffff;
        }

        /* --- Basic Body & Container Setup --- */
        body {
            font-family: 'Lato', sans-serif;
            background-color: #fff; 
            margin: 0;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

        /* --- Footer Main Styles --- */
        .footer {
            background-color: var(--background-color);
            padding: 60px 0;
            font-size: 15px;
        }

        .footer-grid {
            display: grid;
            /* Creates 4 columns, the first being slightly wider */
            grid-template-columns: 1.2fr 1fr 1fr 1fr;
            gap: 40px;
        }

        .footer-col h4 {
            color: var(--primary-orange);
            font-size: 16px;
            font-weight: 700;
            margin-top: 0;
            margin-bottom: 20px;
            text-transform: capitalize;
        }

        .footer-col p {
            color: var(--text-light-gray);
            margin: 0 0 15px 0;
        }

        /* Column 1: About Section */
        .footer-about .logo {
            margin: auto;
            max-width: 220px;
            margin-bottom: 20px;
        }
        
        /* Columns 2 & 3: Link Lists */
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul a {
            color: var(--text-light-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-col ul a:hover {
            color: var(--primary-orange);
        }
        
        /* Column 4: Newsletter & Social Icons */
        .newsletter-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-light-gray);
        }

        .newsletter-form .input-group {
            display: flex;
            margin-bottom: 30px;
        }
        
        .newsletter-form input {
            flex-grow: 1; /* Take remaining space */
            padding: 12px;
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 8px 0 0 8px;
            min-width: 0; /* Important for flex items */
        }
        .newsletter-form input:focus {
            outline: none;
            border-color: var(--primary-orange);
        }
        
        /* Correcting the form layout to match the image (stacked) */
        .newsletter-form .input-wrapper {
            margin-bottom: 30px;
        }
        
        .newsletter-form input[type="email"] {
            width: 100%;
            padding: 12px;
            border: 1px solid #c7d0d9; border-radius: 5px;
            box-sizing: border-box;
            margin-bottom: 12px;
        }
        
        .btn-subscribe {
            width: 100%;
            background-color: var(--primary-orange);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 5px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .btn-subscribe:hover {
            background-color: #d85e02;
        }

        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icons a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 38px;
            height: 38px;
            /* background-color: #000; */
            border-radius: 6px;
            transition: transform 0.2s ease;
        }
        
        .social-icons a:hover {
            transform: translateY(-2px);
        }

        .social-icons img {
            width: 100%; /* Control the size of the PNG icon */
            height: auto;
        }

        /* --- Responsive Design --- */
        
        /* Tablet layout (2x2 grid) */
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* Mobile layout (single column) */
        @media (max-width: 767px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .footer {
                text-align: center;
            }
            .footer-col ul {
                text-align: center;
            }
            .social-icons {
                justify-content: center;
            }
        }
















/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }

  .header-actions .contact-info {
    display: none;
  }

  .reliable-choice-container,
  .passion-container {
    /* grid-template-columns: 1fr; */
    /* text-align: center; */
  }

  .passion-container .passion-image {
    order: -1;
  }

  .passion-content {
    max-width: 600px;
    margin: 0 auto;
  }

  .process-grid,
  .testimonials-grid {
    /* grid-template-columns: 1fr; */
    max-width: 900px;
    margin: 0 auto;
  }

  .footer-grid {
    /* grid-template-columns: 1fr; */
    padding: 0 15px;
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }

  .header-actions {
    display: none;
  }
 .process-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .main-nav {
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    width: 100vw;
    z-index: 999;
    height: calc(100vh - 71px);
    background-color: var(--white);
    flex-direction: column;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .main-nav a {
    display: block;
    padding: 20px;
  }

  .mobile-menu-toggle {
    display: block;
  }

 

  .hero-quote-form .btn {
    width: 100%;
  }

  .brand-logos {
    gap: 20px 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand-logos img {
    max-height: 25px;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  /* .reliable-choice-features {
    grid-template-columns: 1fr;
  } */

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 15px;
  }

  .footer-about,
  .social-icons {
    justify-content: center;
    margin: 0 auto;
  }

  .newsletter-form {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .newsletter-form input {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 5px;
    border-right: 1px solid #555;
  }

  .newsletter-form button {
    width: 100%;
    border-radius: 5px;
  }

  .social-icons {
    flex-wrap: wrap;
    gap: 10px;
  }
}






.support-item {
	/*display: flex;*/
	align-items: flex-start;
	font-size: 12px;
	color: #333;
	line-height: 18px;
	min-height:22px;
}
.support-item i {
	font-size: 18px;
	margin-right: 6px;
	color: #0078D4;
	float:left;
	width: 20px;
  height: 18px;
}
.support-item i img { width:100%; height:auto;}

.support-container {
	text-align: left;
}

.brand-logos_text{ margin-top:20px;}

