/* Global Styles */
:root {
    --primary-color: #212121;      /* Dark Gray - Main text/primary color */
    --primary-light: #424242;      /* Medium Gray - Lighter shade of primary */
    --primary-dark: #000000;       /* Black - Darker shade of primary */
    --secondary-color: #757575;    /* Medium Gray - For secondary elements */
    --dark-color: #212121;         /* Dark Gray - For main text */
    --light-color: #f5f5f5;        /* Light Gray - For backgrounds */
    --text-color: #212121;         /* Dark Gray - Main text color */
    --text-muted: #757575;         /* Medium Gray - Muted text */
    --bg-light: #ffffff;           /* White - Main background */
    --bg-offwhite: #f5f5f5;        /* Off-white - Secondary background */
    --border-color: #e0e0e0;       /* Light Gray - Borders and dividers */
    --card-bg: #ffffff;            /* White - Card backgrounds */
    --success-color: #4caf50;      /* Green - Success states */
    --warning-color: #ff9800;      /* Orange - Warnings */
    --danger-color: #f44336;       /* Red - Errors */
    --info-color: #607d8b;         /* Blue Gray - Info */
}

.highlight_color {
    color: #e95c00;
}

/* Team List Styles */
.team-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.control-box.dnd-file-upload legend { 
	float: left; 
	width: 160px; 
} 
.control-box.dnd-file-upload fieldset {
	margin-block: 4px!important; 
}

.team-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.team-item:hover {
    background-color: #f1f1f1;
    transform: translateX(5px);
    border-left-color: #e95c00;
}

.team-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    margin-right: 1rem;
    color: #e95c00;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.wpcf7-response-output {
    display: none !important;
}

.team-item span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

#home p .highlight_color {
    font-weight: 700;
}

#applyNowModal textarea.wpcf7-form-control,
#contactUsModal textarea.wpcf7-form-control {
    		max-height: 120px;
		}

#applyNowModal label,
#contactUsModal label {
    color: #837d7f;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-item {
        padding: 0.6rem 0.8rem;
    }
    
    .team-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .team-item span {
        font-size: 0.9rem;
    }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#contact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff9f4 0%, #fff 100%);
    padding: 80px 0;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: 1;
}

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

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1485462537746-965f33f7f6a7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: 1;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff8a00, #e52e71, #ff8a00);
    background-size: 200% auto;
    animation: gradientBG 3s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#contact .container {
    position: relative;
    z-index: 1;
}

#contact h2.fw-bold {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
    position: relative;
    display: inline-block;
}

#contact h2.fw-bold::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    border-radius: 2px;
}

#contact .sub_head {
    font-size: 1.4rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

#contact .highlight_color {
    color: #ff6b00;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

#contact .highlight_color::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 107, 0, 0.2);
    z-index: -1;
    border-radius: 4px;
}

#contact .row.align-items-center {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

#contact .row.align-items-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,249,244,0.9) 100%);
    z-index: 0;
}

#contact .row.align-items-center > * {
    position: relative;
    z-index: 1;
}

#contact .row.align-items-center:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

#contact img {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#contact img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.signup_btn_sec .btn {
    background: #000000;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #ffffff;
}

.signup_btn_sec .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333333;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.signup_btn_sec .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 107, 0, 0.4);
}

.signup_btn_sec .btn:hover::before {
    opacity: 1;
}

.signup_cont h4 {
    font-size: 1.4rem;
    color: #2d2d2d;
    margin: 1.5rem 0;
    position: relative;
    display: inline-block;
}

.signup_cont h4:first-child {
    margin-top: 2.5rem;
}

.signup_cont h4:last-child {
    margin-bottom: 0;
}

.signup_cont h4::after {
    content: '✨';
    margin-left: 10px;
    display: inline-block;
    animation: bounce 2s infinite;
}

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

/* Responsive adjustments */
@media (max-width: 991.98px) {
    #contact .row.align-items-center {
        padding: 2rem;
    }
    
    #contact h2.fw-bold {
        font-size: 2.2rem;
    }
    
    #contact .sub_head {
        font-size: 1.2rem;
    }
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--bg-light);
    width: 100%;
    max-width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

a.btn-primary, button.btn-primary, input[type="button"].btn-primary, input[type="submit"].btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    transition: all 0.3s ease !important;
    border-width: 2px !important;
    box-shadow: 0 4px 6px rgba(33, 33, 33, 0.1) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Primary button styles */
.hero-section .btn-primary {
    background-color: var(--primary-color) !important;
    color: white !important;
    border: 2px solid var(--primary-color) !important;
    transition: all 0.3s ease !important;
}

.hero-section .btn-primary:hover,
.hero-section .btn-primary:focus {
    background-color: white !important;
    color: var(--primary-color) !important;
    border-color: #bdbdbd !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

a.btn-outline-light, button.btn-outline-primary, button.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-dark) !important;
    background-color: transparent !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    transition: all 0.3s ease !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-width: 2px !important;
    font-weight: 600 !important;
}

.navbar ul li.nav-item {
    padding: 0 10px;
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-light:hover {
    color: #fff !important;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-light:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: var(--bg-light) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    position: relative;
    transition: color 0.3s ease;
}

/* Navigation link hover and active states */
.nav-link:hover, .nav-link:focus {
    color: var(--primary-color) !important;
}

.about-mmsign {
    background: linear-gradient(135deg, #fff9f4 0%, #fff 100%);
}

/* Active navigation link underline effect - Desktop only */
@media (min-width: 992px) {
    /* Navigation link container styles */
    
    .nav-link {
        position: relative;
        overflow: visible;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background-color: #000000; /* Force black color for testing */
        transition: width 0.3s ease;
        display: block !important; /* Force display */
        z-index: 1;
        opacity: 1 !important; /* Ensure it's visible */
    }
    
    .nav-link:hover::after {
        width: 40px;
    }
    
    .nav-link.active {
        color: var(--primary-color) !important;
    }
    
    .nav-link.active::after {
        width: 30px !important;  /* Force width for active state */
        background-color: #000000 !important; /* Force black color */
    }
    
    .nav-link.active:hover::after {
        width: 50px;
    }
}

#mmsign {
    text-align: center;
}

.mm_sign {
    font-weight: 600;
    font-size: 27px;
    text-transform: capitalize;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

#mmsign .col-lg-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#mmsign img {
    max-width: 300px;
    margin: 1rem auto;
}

#mmsign p:last-child {
    margin-top: 1rem;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    #mmsign .row {
        flex-direction: column-reverse;
    }
    
    #mmsign .col-lg-6:first-child {
        margin-top: 2rem;
    }
    
    .mm_sign {
        font-size: 24px;
        line-height: 1.3;
    }
    
    #mmsign img {
        max-width: 250px;
    }
}

@media (max-width: 575.98px) {
    .mm_sign {
        font-size: 20px;
    }
    
    #mmsign img {
        max-width: 200px;
    }

    
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8)), 
                url('images/banner.jpg') no-repeat center center/cover;
    background-attachment: scroll;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: var(--text-color);
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero-overlay {
    display: none; /* Remove dark overlay for light theme */
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding-top: 180px; /* Increased padding to move content further down */
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
}

.hero-section p {
    font-size: 30px;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #fff;
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(111, 66, 193, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.icon-box i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Dream Team Section */
#dream_team {
    padding: 5rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

#dream_team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

#dream_team .container {
    position: relative;
    z-index: 1;
}

#dream_team h2 {
    color: #e95c00;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

#dream_team h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #e95c00;
}

#dream_team h3 {
    color: #1a1a1a;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    position: relative;
}

#dream_team .lead {
    color: #4a4a4a;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 90%;
    position: relative;
}

/* Own Fashion Brand Section */
#own_fashion_brand {
    position: relative;
    background: url('images/own-banner.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 6rem 0;
    overflow: hidden;
}

#own_fashion_brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

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

#own_fashion_brand h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

#own_fashion_brand h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: #e95c00;
    transition: width 0.3s ease;
}

#own_fashion_brand h2:hover::after {
    width: 120px;
}

#own_fashion_brand .lead {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

#own_fashion_brand .highlight_color {
    color: #e95c00;
    font-weight: 600;
}

#own_fashion_brand h3 {
    font-size: 1.8rem;
    margin: 1.5rem 0;
}

#own_fashion_brand p:last-child {
    font-size: 1.1rem;
    opacity: 0.9;
}

#own_fashion_brand .img-fluid {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

#own_fashion_brand .img-fluid:hover {
    transform: translateY(-5px);
}

#dream_team .img-fluid {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 350px;
    transform-origin: center;
    position: relative;
    overflow: hidden;
}

/* Subtle scale and shadow on hover */
#dream_team .img-fluid:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Subtle overlay effect */
#dream_team .img-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 12px;
}

#dream_team .img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.03);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

#dream_team .img-container:hover::before {
    opacity: 1;
}

/* Subtle zoom effect */
#dream_team .img-container {
    perspective: 1000px;
}

#dream_team .img-fluid {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#dream_team .img-container:hover .img-fluid {
    transform: scale(1.03);
}

#dream_team .row {
    align-items: center;
}

#dream_team .col-md-6:first-child {
    padding-right: 3rem;
}

#dream_team .col-md-6:last-child {
    padding-left: 3rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    #dream_team h2 {
        font-size: 2rem;
    }
    
    #dream_team .lead {
        font-size: 1.25rem;
        max-width: 100%;
    }
    
    #dream_team .col-md-6:first-child,
    #dream_team .col-md-6:last-child {
        padding: 0 15px;
    }
    
    #dream_team .img-fluid {
        margin-top: 2rem;
        min-height: 300px;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.service-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background-color: #fff;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
    text-align: center;
}

.portfolio-overlay h5 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

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

.portfolio-content {
    text-align: center;
    color: #fff;
    padding: 20px;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-content h5 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact-form .form-control {
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.25);
}

/* Pricing Section */
#pricing .card-body {
    font-size: 18px;
    background-color: #e6f0ff;
}

#pricing .card-body small {
    font-size: 16px !important;
}

/* Footer */
.footer {
    background-color: var(--bg-offwhite);
    color: var(--text-color);
    padding: 80px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer h5 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

/* Content + Image Sections */
.section-content {
    padding: 80px 0;
}

.section-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-content .lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Services Carousel */
.services-carousel {
    margin: 0 auto;
    padding: 5px 0 15px;
    max-width: 100%;
    width: 100%;
}

.services-carousel .owl-stage-outer {
    padding: 10px 0 20px;
}

.services-carousel .owl-item {
    display: flex;
    justify-content: center;
}

.service-card {
    padding: 5px;
    margin: 0 auto;
    max-width: 350px;
}

.service-card .card {
    height: 100%;
    margin: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card .card:hover {
    transform: translateY(-5px);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 1.25rem;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .services-carousel {
        padding: 0;
    }
    
    .service-card {
        padding: 5px 10px;
    }
    
    .service-card .card-img-top {
        height: 180px;
    }
    
    .service-card .card-body {
        padding: 1rem;
    }
}

.services-carousel .slick-prev:before,
.services-carousel .slick-next:before {
    color: var(--primary-color);
    font-size: 30px;
}

.services-carousel .slick-prev {
    left: -40px;
}

.services-carousel .slick-next {
    right: -40px;
}

.services-carousel .slick-dots {
    bottom: -30px;
}

.services-carousel .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
}

.services-carousel .slick-dots li.slick-active button:before {
    color: var(--primary-color);
    opacity: 1;
}

.service-card {
    padding: 10px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.process-step {
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.2);
}

.process-step h5 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.process-step p {
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero-section {
        height: auto;
        min-height: 80vh;
        padding: 100px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

/* Tablet View */
@media (max-width: 991.98px) {
    .section-content {
        padding: 60px 0;
        text-align: center;
    }
    
    .section-content h2 {
        font-size: 2rem;
    }
    
    .hero-section {
        height: auto;
        min-height: 70vh;
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .navbar-collapse {
        background-color: #fff;
        padding: 1rem;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
        padding: 0.5rem 0 !important;
        margin: 0.3rem 0;
        display: block;
    }
    
    .nav-link::after {
        display: none;
    }
}

/* Mobile View */
@media (max-width: 767.98px) {
    .section-content {
        padding: 40px 0;
    }
    
    .section-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        min-height: 60vh;
        padding: 60px 20px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
}
    
/* Process Step Styling */
.process-step {
    padding: 1.25rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Section Typography */
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Navigation Collapse */
.navbar-collapse {
        background-color: #fff;
        padding: 1rem;
        border-radius: 5px;
    }
    
    .nav-link {
        padding: 0.5rem 0 !important;
        margin: 0.3rem 0;
    }
    
    .nav-link::after {
        display: none;
    }


@media (max-width: 767.98px) {
    .section-content {
        text-align: center;
    }
    
    .section-content h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .img-fluid {
        margin-bottom: 2rem;
    }
    
    .hero-section {
        height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-img {
        margin-bottom: 2rem;
    }
    .hero-section {
        background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8)), 
                url('images/banner.jpg') no-repeat center center/cover;
    }
    .hero-section p {
        font-size: 26px !important;
    }

    .hero-section h1 {
        font-size: 2.2rem !important;
    }
}

/* About Section */
#about {
    background: linear-gradient(135deg, #f5f5f5 0%, #f0f0f0 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

#about h2 {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

#about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e95c00;
    border-radius: 2px;
}

#about .lead {
    color: #4a4a4a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

#about .img-fluid {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about .img-fluid:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

#about h3.h5 {
    color: #333;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

#about h3.h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #e95c00;
}

/* Pricing Section */
#pricing {
    background-color: #fff;
}

.pricing-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    background: white;
    border: 1px solid #e9ecef;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
    width: 140px;
    text-align: center;
}

.pricing-card .card-body {
    padding: 2.5rem;
}

.pricing-card h4 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pricing-card .display-4 {
    font-size: 3rem;
    margin: 1.5rem 0;
    color: var(--primary-color);
}

.pricing-card .display-4 span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-card ul {
    margin: 2rem 0;
    padding: 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.75rem;
}

.pricing-card ul li:before {
    content: '✓';
    color: #2ecc71;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-card .btn {
    margin-top: 1rem;
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
}

/* Contact Section */
#contact {
    background-color: var(--bg-offwhite);
    text-align: center;
    padding: 5rem 0;
}

#contact .btn {
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
    transition: all 0.3s ease;
    background-color: #000;
    color: #fff;
}

#contact .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.2);
    background-color: transparent;
    color: #000;
}

#contact i {
    margin-right: 8px;
}

.footer-links a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    margin-right: 12px;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Floating Buttons */
.signup,
.login {
    position: fixed;
    right: 0;
    padding: 15px 8px;
    border-radius: 8px 0 0 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 98;
    min-width: auto;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: none;
}

.signup {
    top: 36%;
    background-color: var(--primary-color);
    color: white;
    padding-right: 12px;
}

.login {
    top: 43%;
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-right: none;
    padding-right: 12px;
}

.signup:hover,
.login:hover {
    transform: none;
    right: 5px;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.2);
}

/* Hide floating buttons on desktop */
@media (min-width: 992px) {
    .signup,
    .login {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .signup_cont h4 {
        margin: 0;
    }
    
    .signup_cont h4:first-child {
        margin-top: 0;
    }   
}
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
    
    .hero-section h1 {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-img {
        margin-bottom: 2rem;
    }