/* assets/css/style.css - consolidated and modernized layout */
:root {
    --primary-color: #2C5282;
    --secondary-color: #4299E1;
    --accent-color: #F6AD55;
    --success-color: #48BB78;
    --text-color: #2D3748;
    --white-color: #fff;
    --icon-color: linear-gradient(135deg, #F6AD55, #F6E05E); /* Note: CSS color properties like 'color' cannot directly use gradients. This is typically used as a background. I will style icons using var(--primary-color) or var(--accent-color) where appropriate, or a fallback color for the icon-color variable if not used as a background. */
    --light-bg: #F7FAFC;
    --gradient-primary: linear-gradient(135deg, #2C5282, #4299E1);
    --gradient-accent: linear-gradient(135deg, #F6AD55, #F6E05E);
    --container: 1100px;
}
*{box-sizing:border-box}
body{font-family:'Poppins',sans-serif;color:var(--text-color);margin:0;background:#fff;line-height:1.6}
.container{max-width:var(--container);margin:0 auto;padding:1rem}

/* Header */
.navbar{background:#fff;box-shadow:0 0 10px rgba(0,0,0,0.1);position:sticky;top:0;z-index:50}
.navbar .brand{display:flex;align-items:center;gap:12px}
.navbar img.logo{width:110px;border-radius:8px}
.navbar nav ul{list-style:none;display:flex;gap:12px;margin:0;padding:0;align-items:center}
.navbar a{color:var(--text-color);text-decoration:none;padding:8px 10px}

/* Dropdown Navigation Styles (re-added for completeness) */
.dropdown { position: relative; display: inline-block; }
.dropbtn { display: block; padding: 10px 15px; text-decoration: none; color: inherit; }
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
    top: 100%;
    left: 0;
    border-top: 3px solid var(--primary-color);
}
.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    transition: background-color 0.3s;
}
.dropdown-content a:hover {
    background-color: #ddd;
    color: #000;
}
.dropdown:hover .dropdown-content { display: block; }


/* Hero Section */
.hero{
    background:var(--gradient-primary), url('../img/cover.jpg') center/cover no-repeat;
    color:#fff;
    padding:100px 0;
    position:relative;
    overflow:hidden;
}
.hero .lead{max-width:640px}

/* Trust Bar / Stats Strip (NEW) */
.trust-bar {
    background-color: var(--light-bg); 
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}
.stat-label {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
    opacity: 0.8;
}

/* Crèche Feature Section */
.creche-feature{
    background:var(--gradient-primary);
    color: #fff; /* Default text color */
    padding: 60px 0;
    position:relative;
    overflow:hidden;
}
.creche-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.creche-image-right {
    background: url('../img/creche.jpg') no-repeat center center; /* Corrected path to "../images/" */
    background-size: cover;
    border-radius: 8px;
    min-height: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
}
.creche-text-left {
    padding-right: 30px;
}
.creche-text-left ul {
    list-style-type: none; /* Already present in your version, but better to target .creche-list */
    padding-left: 0; /* Ensures list starts flush left */
}
.creche-list {
    list-style-type: none;
    padding-left: 0;
}
.creche-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Buttons and Cards */
.btn{display:inline-block;padding:10px 18px;border-radius:999px;text-decoration:none;border:none;cursor:pointer;transition:background 0.3s}
.btn-primary{background:var(--gradient-accent);color:var(--text-color)}
.btn-outline{background:transparent;border:2px solid #fff;color:#fff} /* Retained original white outline for Hero */

/* Specific Button Overrides (for sections where background is light, like Creche CTA and core-offerings) */
.creche-feature .btn-outline {
    border: 2px solid #fff;
    color: #fff;
}
.creche-feature .btn-outline:hover {
    background: #fff;
    color: var(--primary-color);
}
.btn-primary:hover{opacity:0.9}
.btn-outline:hover{background:var(--primary-color);color:#fff}


.services{padding:60px 0;background:var(--light-bg)}
.card{background:#fff;border-radius:14px;padding:24px;box-shadow:0 10px 25px rgba(0,0,0,0.06)}
.module-img{height:160px;object-fit:cover;border-radius:8px}
.cta{background:var(--gradient-primary);color:#fff;padding:60px 0;text-align:center}
.policy{background:var(--gradient-primary);color:#fff;padding:60px 0;}
footer{background:#1A202C;color:#fff;padding:30px 0}
.form label{display:block;margin-bottom:8px}
.form input,.form textarea,.form select{width:100%;padding:10px;border-radius:8px;border:1px solid #e6e6e6;margin-bottom:12px}

/* Grid Definitions */
.grid-3{display:grid;grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));gap:1.5rem}
.grid-4{display:grid;grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));gap:1.5rem}


/* Utility Classes for Spacing, Colors, and Layout (Consolidated from inline styles) */
.text-primary { color: var(--primary-color); }
.icon-color { color: var(--accent-color); } /* Using accent color for visual pop on dark background */
.fw-bold { font-weight: 700; }
.mb-3 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

/* Specific Spacing Classes (Replaces inline margin styles) */
.section-margin-vertical { margin-top: 40px; margin-bottom: 40px; }
.section-margin-top-lg { margin-top: 50px; }
.section-h2-margin { margin-bottom: 30px; }
.core-grid-margin-top { margin-top: 30px; }

/* Hero/Button Specific Spacing */
.hero-lead-margin { margin-bottom: 30px; }
.btn-margin-right { margin-right: 15px; }

/* Card Specific Spacing */
.card-padding-default { padding: 20px; }
.card-p-margin-top { margin-top: 15px; }

/* Crèche Specific Spacing */
.creche-h2-margin { margin-bottom: 10px; }
.creche-lead-margin { margin-bottom: 30px; max-width: 800px; }


/* Media Queries */
@media (max-width: 992px) {
    /* Adjustments for grids on smaller desktop/tablet */
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    /* Stack all multi-column grids on mobile */
    .grid-2, .grid-3, .grid-4, .creche-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    .creche-text-left {
        padding-right: 0;
        padding-bottom: 30px;
        text-align: center;
    }
    .creche-list {
        text-align: left; /* Keep list items left-aligned */
        padding-left: 20px;
    }
    .creche-image-right {
        min-height: 300px;
    }
    /* General cleanup for mobile */
    .navbar nav{display:none}
    .navbar nav.open{display:flex;flex-direction:column;width:100%;}
    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile for statistics */
        gap: 30px;
    }
}

/* Add these new styles to your existing style.css */

/* General Lead Text for Descriptions */
.lead-sm {
    font-size: 1.15rem;
    color: #6a7c8f; /* Slightly lighter text for descriptive lead */
    max-width: 700px;
    
    
}

/* Team Experts Section */
.team-experts {
   
}

.team-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content to the left within the card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards are same height in grid */
}

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

.expert-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    width: 100%; /* Occupy full width of card */
}

.expert-image-container {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0; /* Prevent image from shrinking */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-color); /* Matches the image's border in the example */
}

.team-img-style { /* Re-purposed from previous .team-member img */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 0; /* Reset previous margin */
    box-shadow: none; /* Reset previous shadow */
    border-radius: 50%; /* Ensure it stays round inside container */
}

.expert-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.2;
}

.expert-info p {
    font-size: 0.95rem;
    margin-top: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.expert-details p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 20px;
}

.qualifications-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 10px;
    width: 100%;
}

.qualifications-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    width: 100%;
}

.qualifications-list li {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.qualifications-list li i {
    font-size: 1.2em;
    margin-right: 12px;
    color: var(--primary-color); /* Using primary color for icons */
    margin-top: 2px; /* Align icon with text visually */
    flex-shrink: 0;
}

/* Responsive Adjustments for Team Cards */
@media (max-width: 768px) {
    .team-card {
        padding: 25px;
        align-items: center; /* Center content on smaller screens */
        text-align: center;
    }
    .expert-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }
    .expert-image-container {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .expert-info h3 {
        font-size: 1.5rem;
    }
    .expert-info p {
        font-size: 0.9rem;
    }
    .qualifications-list li {
        text-align: left; /* Keep list items left-aligned */
        padding-left: 0;
    }
}

/* Ensure these are in your CSS if not already */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.text-primary { color: var(--primary-color);}
.bg-light { background: var(--gradient-primary); }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }


/* Add these styles to your existing style.css */

/* Specific button style for large buttons with right margin (replaces inline styles) */
.btn-margin-right {
    margin-right: 15px;
}

/* Rounded corners for images */
.rounded-8 {
    border-radius: 8px;
}
.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Style for Module/Course Images (using your existing module-img class name) */
.module-img-style {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Course Features List Styling */
.course-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.course-features li {
    margin-bottom: 12px;
    padding-left: 0; /* Resetting padding if previous style had it */
    position: relative;
    font-size: 1rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
}
.course-features li .icon-color {
    /* Uses the icon-color variable defined in your :root */
    font-size: 1.2em; 
}

/* Ensure these Grid and Spacing Utilities are defined (they were in the last index.php update) */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.section-margin-vertical { margin-top: 40px; margin-bottom: 40px; }

.section-h2-margin { margin-bottom: 30px; }
.text-primary { color: var(--primary-color); }
.text-secondary {color: var(--white-color);}


/* Responsive adjustment for the 2-column course layout */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .course-details-left, .course-details-right, .workshop-details-right {
        order: 1 !important;
        padding-bottom: 30px;
    }
    .course-image-right, .course-image-left, .workshop-image-left {
        order: 2 !important;
    }
}
.nanny-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .nanny-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .nanny-card img {
            height: 250px;
            object-fit: cover;
        }
        .modal-animate {
            transform: scale(0.8);
            opacity: 0;
            transition: all 0.3s ease;
        }
        .nannyModal.show .modal-animate {
            transform: scale(1);
            opacity: 1;
        }
        .form-style-max-width {
            max-width: 600px;
        }
        .policy-list li {
            margin-bottom: 10px;
        }
        .policy-list li i {
            color: var(--accent-color, #F6AD55); /* Use your accent color for checks */
        }
        
        /* Custom styles for info cards (inherited from index/about) */
        .info-card {
            transition: all 0.3s ease;
        }
        .info-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
            background-color: #ffffff;
        }
        /* Add these styles to your existing style.css */

/* Registration Section Styles */
.gallery-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for small images */
    gap: 8px;
    align-items: center;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
}
.gallery-placeholder-grid img:first-child {
    grid-column: 1 / span 3; /* Make the first image span the top row */
    height: 180px;
    object-fit: cover;
}
.gallery-placeholder-grid img {
    height: 90px;
    object-fit: cover;
    width: 100%;
}

/* Check-list style (Used for Fees and Documents) */
.check-list {
    margin-bottom: 1.5rem;
}
.check-list li {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}
.check-list li .icon-color {
    margin-top: 4px; /* Adjust vertical alignment */
}

/* Story Images */
.story-img-style {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: top;
    border: 3px solid var(--accent-color);
}

/* Terms and Conditions List Styling */
.terms-list {
    padding-left: 20px;
}
.terms-list li {
    margin-bottom: 20px;
}
.terms-list ul { /* Sub-list styling */
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}
.terms-list ul li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}


/* Media Query Adjustment for Gallery */
@media (max-width: 768px) {
    .gallery-placeholder-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 10px;
        margin-top: 20px;
    }
    .gallery-placeholder-grid img:first-child {
        grid-column: 1 / span 2; 
        height: 150px;
    }
    .gallery-placeholder-grid img {
        height: 90px;
    }
}

/* --- New/Updated Styles for Register.php --- */

/* Generic 2 Column Section Grid (Replacing old .creche-grid) */
.section-grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; /* Increased gap for better spacing */
}
@media (max-width: 992px) {
    .section-grid-2-col {
        grid-template-columns: 1fr; /* Stack on smaller screens */
        gap: 40px;
    }
}

/* Styles for the new "Your Professional Journey" image grid */
.section-grid-right-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 15px; /* Spacing between images */
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 12px;
   
}

.section-grid-right-image-grid img {
    width: 100%;
    height: 120px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures images fill their space without distortion */
    border-radius: 8px; /* Rounded corners for images */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow on images */
    transition: transform 0.2s ease-in-out;
}

.section-grid-right-image-grid img:hover {
    transform: scale(1.03); /* Slight zoom on hover */
}

/* Specific image placement to match design (adjust as needed) */
.section-grid-right-image-grid img:nth-child(1) { /* Top left */
    grid-column: 1;
    grid-row: 1;
}
.section-grid-right-image-grid img:nth-child(2) { /* Top middle */
    grid-column: 2;
    grid-row: 1;
}
.section-grid-right-image-grid img:nth-child(3) { /* Top right */
    grid-column: 3;
    grid-row: 1;
}
.section-grid-right-image-grid img:nth-child(4) { /* Middle left */
    grid-column: 1;
    grid-row: 2;
}
.section-grid-right-image-grid img:nth-child(5) { /* Middle right */
    grid-column: 3;
    grid-row: 2;
}
.section-grid-right-image-grid img:nth-child(6) { /* Bottom left */
    grid-column: 2;
    grid-row: 2; /* Moved to row 2 for better alignment in the design */
    height: 180px; /* Larger vertical image */
    grid-column: 2 / span 1; /* Centered in column 2 */
    grid-row: 2 / span 2; /* Spanning two rows */
    align-self: start;
}
.section-grid-right-image-grid img:nth-child(7) { /* Bottom right */
    grid-column: 3;
    grid-row: 3;
}

/* Adjustments for smaller screens for the image grid */
@media (max-width: 768px) {
    .section-grid-right-image-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
        gap: 10px;
        padding: 15px;
    }
    .section-grid-right-image-grid img {
        height: 100px; /* Adjust height for mobile */
    }
    .section-grid-right-image-grid img:nth-child(6) { /* Adjust larger image placement */
        grid-column: 2 / span 1; 
        grid-row: 1 / span 2; 
        height: 220px;
    }
    /* Reorder images for a better flow on smaller screens if needed */
    .section-grid-right-image-grid img:nth-child(1) { order: 1; }
    .section-grid-right-image-grid img:nth-child(2) { order: 3; }
    .section-grid-right-image-grid img:nth-child(3) { order: 2; }
    .section-grid-right-image-grid img:nth-child(4) { order: 4; }
    .section-grid-right-image-grid img:nth-child(5) { order: 6; }
    .section-grid-right-image-grid img:nth-child(6) { order: 5; } /* The large image */
    .section-grid-right-image-grid img:nth-child(7) { order: 7; }
}


/* Feature Items List Styling */
.feature-items-list {
    margin-top: 30px;
    display: grid;
    gap: 20px;
}
.choose {
    
    align-items: center;
    gap: 20px; /* Space between icon and text */
    background-color: #fff; /* White background for each item */
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); /* Soft shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.feature-item {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between icon and text */
    background-color: #fff; /* White background for each item */
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); /* Soft shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 1.8rem; /* Larger icon size */
    color: var(--accent-color); /* Primary color for icons */
    min-width: 40px; /* Ensure consistent spacing */
    text-align: center;
}

.feature-item p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.5;
}


.rounded-8 { /* Custom class for slightly more rounded corners */
    border-radius: 0.8rem !important;
}


/* ==== Form Layout Enhancements (Modern Look) ==== */
#registration-form-only form {
  width: 100%;
}

/* Label styling */
#registration-form-only .form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--text-color, #2D3748);
}

/* Inputs, Textareas, Selects — Full width, clean borders, soft shadow */
#registration-form-only .form-control,
#registration-form-only textarea,
#registration-form-only select {
  width: 100%;
  display: block;
  border: 1px solid #d0d7de;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.3s ease-in-out;
}

/* Slightly taller textareas for comfort */
#registration-form-only textarea {
  min-height: 90px;
  resize: vertical;
}

/* Focus effect: blue glow */
#registration-form-only .form-control:focus {
  border-color: var(--primary-color, #2C5282);
  box-shadow: 0 0 0 0.2rem rgba(44, 82, 130, 0.15);
  background-color: #f8fafc;
  outline: none;
}

/* Placeholder color tone */
#registration-form-only .form-control::placeholder {
  color: #aaa;
}

/* Card that holds the form */
.form-standalone-card {
  max-width: 700px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Button styling */
#registration-form-only .btn-primary {
  border-radius: 10px;
  padding: 0.9rem 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(44, 82, 130, 0.2);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

#registration-form-only .btn-primary:hover {
  background-color: var(--secondary-color, #4299E1);
  box-shadow: 0 6px 16px rgba(44, 82, 130, 0.3);
}

/* Form spacing */
#registration-form-only .mb-3 {
  margin-bottom: 1.25rem !important;
}

/* Responsive spacing */
@media (max-width: 576px) {
  #registration-form-only .form-control,
  #registration-form-only textarea,
  #registration-form-only select {
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
  }
}

/* --- Modern Contact Form Styling --- */
.modern-form {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.modern-form .form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #2d3748;
    text-transform: capitalize;
}

.modern-input {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    background-color: #f9fafb;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.modern-input:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
    background-color: #fff;
}

.modern-form button {
    border-radius: 10px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.modern-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(66, 153, 225, 0.3);
}
