/* General Styling */
body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header Styling */
.header {
    background: #ffffff;
    padding: 0 0;           /* Reduced header height */
    transition: all 0.4s ease; 
    z-index: 999;
    width: 100%;
}

/* Sticky Header */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);  /* Subtle shadow */
    animation: slideDown 0.5s ease;              /* Smooth animation */
}

/* Logo */
.logo-img {
    height: 100px;            
    width: 100px;
    transition: transform 0.3s, height 0.4s ease; /* Smooth logo resize */
}

/* Smaller logo when sticky */
.sticky .logo-img {
    height: 60px;              /* Resize logo on sticky */
    width: auto;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Center Navigation */
.navbar-nav {
    display: flex;
    width: 100%;
}

/* Navigation Links */
.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 25px;  
    font-weight: 600 !important;   
    transition: color 0.3s ease;
}

/* Hover effect */
.nav-link:hover {
    color: #FF6600;            /* Hover color */
}

/* Active link color */
.nav-link.active {
    color: #E65C00 !important;
    font-weight: bold;
}

/* Login and Button Styling */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-link {
    color: #333;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.login-link:hover {
    color: #FF6600 !important;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .navbar-collapse {
        text-align: center;
    }

    .navbar-nav {
        display: block;
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
        font-size: 16px;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .logo-img {
        height: 50px;         /* Smaller logo for mobile */
        width: auto;
    }

    .sticky .logo-img {
        height: 35px;         /* Smaller sticky logo on mobile */
    }

    .btn-demo {
        padding: 8px 20px;    
        font-size: 14px;
    }
}

/* ✅ Smooth slide-down animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Section Styling */
.contact-section {
    background: #fff;
    color: #333;
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.form-container {
    max-width: 800px;
    background: #fdf8f2;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Form Fields */
label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-control {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
}

/* Button Styling */
.contact-btn {
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #e65c00;
}

/* Responsive */
@media (max-width: 768px) {
    .form-container {
        padding: 30px;
    }
}

/* Section Styling */
.contact-section {
    background: #fff;
    color: #333;
    padding: 80px 0;
}

.section-title {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

/* Form Container */
.form-container {
    max-width: 900px;
    background: #fdf8f2;  /* Light beige background */
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Form Labels */
.form-label {
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

/* Form Fields */
.form-control {
    border: 1px solid #2e2d2d !important;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
}

/* Submit Button */
.contact-btn7 {
    background: #ff6600; /* Orange button */
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    transition: background 0.3s;
}

.contact-btn7:hover {
    background: #ffc29a;
    color: black;
}

/* Responsive */
@media (max-width: 768px) {
    .form-container {
        padding: 30px;
    }
    
    .row .col-md-6 {
        margin-bottom: 15px;
    }
}


/* Section Styling */
.contact-cards {
    background: #fff;
    color: #333;
    padding: 80px 0;
}

/* Card Styling */
.card-item {
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
    min-height: 250px;          /* Consistent minimum height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hover Effect */
.card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icon Styling */
.icon {
    font-size: 28px;
    margin-bottom: 15px;
}

/* Card Colors */
.orange-card {
    background: #FF6600;   /* Orange */
}

.pink-card {
    background: #F8A8C3;    /* Light Pink */
    color: #000;            /* Black text for contrast */
}

.green-card {
    background: #1E4D3B;    /* Dark Green */
}

/* Typography */
h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-item {
        padding: 30px;
        text-align: center;
        min-height: auto;    /* Adjust height for smaller screens */
    }

    .icon {
        font-size: 24px;
    }

    h4 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }
}






/* Footer Styling */
.footer {
    background: #fff;          /* White background */
    color: #333;               /* Dark text */
    padding: 60px 0;
    font-family: Arial, sans-serif;
    border-top: 2px solid #ddd;
}


/* Full-Width Line Above Bottom Row */
.footer-full-line {
    width: 100%;
    height: 2px;
    background: #ddd;          /* Light grey line */
    margin: 50px 0;
}

/* Footer Logo */
.footer-logo {
    font-size: 120px;
    font-weight: bold;
    color: #f46c23;
    margin-bottom: 40px;
}

/* Footer Headings */
.footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Footer Links */
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
    transition: 0.3s;
}

.footer a:hover {
    color: #f46c23;
    transform: scale(1.05);
}

/* Icons with Spacing */
.footer i {
    margin-right: 10px;
}

/* Social Media Icons */
.footer .footer-icons a {
    font-size: 24px;
    margin: 0 10px;
    color: #555;
    transition: 0.3s;
}

.footer .footer-icons a:hover {
    color: #f46c23;
    transform: scale(1.1);
}

/* Bottom Row Styling */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: #777;
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
}

/* Privacy & Terms Links */
.footer-links a {
    color: #555;
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #f46c23;
}

/* Separator */
.footer-links .separator {
    color: #777;
    margin: 0 8px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-logo {
        font-size: 90px;
    }
}

@media (max-width: 992px) {
    .footer-logo {
        font-size: 70px;
    }

    .footer-icons a {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        font-size: 60px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-icons a {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .footer-logo {
        font-size: 50px;
    }

    .footer-icons a {
        font-size: 16px;
    }
}
