/* Reset and Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: bold;
    color: #007bff;
}

.navbar-brand i {
    margin-right: 10px;
}

.nav-link {
    font-weight: 500;
    color: #333;
    position: relative;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #007bff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* About Section */
.about-content {
    padding-right: 5rem;
    margin-right: 2rem;
}

.section-header {
    margin-bottom: 2rem;
    position: relative;
}

.title-line {
    width: 50px;
    height: 3px;
    background: #007bff;
    margin-top: 1rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
    background: white;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #007bff;
}

.feature-text p {
    margin: 0;
    color: #666;
}

.about-image-wrapper {
    position: relative;
    padding: 2rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 0;
    background: #007bff;
    color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    transform: translateX(-30px);
    z-index: 1;
}

.badge-content {
    text-align: center;
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.experience-badge .text {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shape-1, .shape-2 {
    position: absolute;
    border-radius: 20px;
    z-index: -1;
}

.shape-1 {
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(0, 123, 255, 0.1);
    transform: rotate(45deg);
}

.shape-2 {
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: rgba(0, 123, 255, 0.05);
    transform: rotate(-30deg);
}

/* Hero Section */
.hero-section {
    position: relative;
    color: white;
    overflow: hidden;
    height: 100vh;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    animation: heroZoom 20s linear infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: #007bff;
    bottom: -10px;
    left: 0;
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

#contact .section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

#contact .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00e5ff);
    border-radius: 2px;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.contact-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
}

.info-item:last-child {
    margin-bottom: 0;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #00e5ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    transition: all 0.4s ease;
}

.info-item:hover .icon-wrapper {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #00e5ff, #007bff);
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: white;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.contact-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.1);
}

.form-control {
    height: 50px;
    padding: 0.75rem 1.2rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.1);
    background: white;
}

textarea.form-control {
    height: auto;
    resize: vertical;
}

.animated-button {
    position: relative;
    padding: 12px 30px;
    background: linear-gradient(135deg, #007bff, #00e5ff);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
}

.animated-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

.animated-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.animated-button:hover::before {
    left: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    color: #2d3436;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.form-control:focus + .form-label {
    color: #007bff;
}

/* Additional Contact Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

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

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#contact h4 {
    animation: float 3s ease-in-out infinite;
    background: linear-gradient(90deg, #2d3436, #007bff, #2d3436);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
    transition: all 0.3s ease;
}

#contact h4:hover {
    transform: scale(1.05);
    letter-spacing: 1px;
}

.contact-info {
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 3px;
    background: linear-gradient(135deg, #007bff, #00e5ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info:hover::before {
    opacity: 1;
}

.info-item {
    position: relative;
    z-index: 1;
    animation: slideIn 0.5s ease-out forwards;
    opacity: 0;
}

.info-item:nth-child(1) { animation-delay: 0.2s; }
.info-item:nth-child(2) { animation-delay: 0.4s; }
.info-item:nth-child(3) { animation-delay: 0.6s; }

.info-item:hover .icon-wrapper i {
    animation: rotateIcon 1s ease-in-out;
}

.info-item:hover h4 {
    color: #007bff;
    transform: translateX(5px);
}

.info-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #00e5ff);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.info-item:hover::after {
    width: 80%;
}

.contact-form .form-control {
    position: relative;
    overflow: hidden;
}

.contact-form .form-control:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
    border-color: #007bff;
}

.form-control:hover {
    border-color: rgba(0, 123, 255, 0.5);
    transform: translateY(-1px);
}

.animated-button {
    position: relative;
    z-index: 1;
    background: linear-gradient(45deg, #007bff, #00e5ff, #007bff);
    background-size: 200% auto;
    transition: all 0.5s ease;
    animation: pulse 2s infinite;
}

.animated-button:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

.animated-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00e5ff, #007bff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.animated-button:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .contact-info, .contact-form {
        margin-bottom: 2rem;
    }
    
    #contact h4 {
        font-size: 1.1rem;
    }
    
    .info-item {
        padding: 1rem;
    }
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M54 22c-2-2-2-4-4-4s-4 2-6 4-4 4-6 4-4-2-6-4-4-4-6-4-4 2-6 4-4 4-6 4-4-2-6-4-4-4-6-4-2 2-4 4C2 24 0 27 0 30s2 6 2 8c2 2 2 4 4 4s4-2 6-4 4-4 6-4 4 2 6 4 4 4 6 4 4-2 6-4 4-4 6-4 4 2 6 4 4 4 6 4 2-2 4-4c2-2 2-5 2-8s0-6-2-8z" fill="%23007bff" fill-opacity="0.05"/></svg>');
    opacity: 0.5;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00e5ff);
    border-radius: 2px;
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.info-card:hover .icon-wrapper {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, #007bff, #00e5ff);
}

.info-card:hover .info-content h4 {
    color: #007bff;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.6s ease;
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: #007bff;
    transition: all 0.3s ease;
}

.info-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2d3436;
    transition: all 0.3s ease;
}

.info-content p, .info-content a {
    color: #636e72;
    margin: 0;
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: #007bff;
    text-decoration: none;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control {
    height: 54px;
    padding: 0.75rem 1.2rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
}

textarea.form-control {
    height: auto;
    min-height: 150px;
    resize: vertical;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #007bff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.1);
}

.form-label {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.8rem;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #007bff 0%, #00e5ff 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00e5ff 0%, #007bff 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

.btn-submit:hover::before {
    opacity: 1;
}

.btn-submit span {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-submit:hover .button-icon {
    transform: translateX(5px) rotate(45deg);
}

.button-icon {
    margin-left: 10px;
    transition: all 0.3s ease;
}

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

.form-note {
    text-align: center;
    color: #636e72;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

/* Schedule Styles */
.schedule-card {
    display: flex;
    flex-direction: column;
}

.schedule-card h3 {
    margin-bottom: 2rem;
    color: #2d3436;
    position: relative;
}

.schedule-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00e5ff);
    border-radius: 2px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: rgba(0, 123, 255, 0.05);
    transform: translateX(10px);
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.schedule-item .day {
    font-weight: 600;
    color: #2d3436;
}

.schedule-item .hours {
    color: #007bff;
    font-weight: 500;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.1);
    border-color: #007bff;
}

.schedule-card h3 {
    color: #2d3436;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.schedule-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00e5ff);
    border-radius: 2px;
}

.schedule-item {
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: rgba(0, 123, 255, 0.05);
    transform: translateX(5px);
}

.schedule-item .day {
    color: #2d3436;
    font-size: 1.1rem;
}

.schedule-item .hours {
    color: #007bff;
    font-weight: 500;
}

/* Contact Form Styles */
.contact-form-card {
    padding: 2rem;
}

.contact-form-card h3 {
    color: #2d3436;
    position: relative;
    margin-bottom: 2rem;
}

.contact-form-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00e5ff);
    border-radius: 2px;
}

.form-control {
    height: 50px;
    padding: 0.75rem 1.2rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.1);
    background: white;
}

textarea.form-control {
    height: auto;
    resize: vertical;
}

.btn-submit {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #007bff, #00e5ff);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

.btn-submit:hover i {
    transform: translateX(5px) rotate(45deg);
}

.btn-submit i {
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        margin-bottom: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .info-card, .schedule-card, .contact-form-card {
        padding: 1.5rem;
    }
    
    .info-card .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .info-card .icon-wrapper i {
        font-size: 1.2rem;
    }
    
    .schedule-item {
        padding: 0.8rem;
    }
}
}

.contact-shapes .shape {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.1;
    animation: shapeFloat 15s infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #007bff, #00e5ff);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ff4081, #ff6b6b);
    bottom: -50px;
    left: -50px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #00e676, #1de9b6);
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(5deg); }
    50% { transform: translate(-5px, 5px) rotate(-5deg); }
    75% { transform: translate(-10px, -5px) rotate(3deg); }
}

.text-gradient {
    background: linear-gradient(45deg, #007bff, #00e5ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.contact-form.floating-labels {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, #007bff, #00e5ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 20px rgba(0, 123, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

.form-icon i {
    font-size: 2rem;
    color: white;
}

.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: white;
    border-color: #007bff;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.2);
    transform: translateY(-2px);
}

.form-label {
    position: absolute;
    top: 0;
    left: 15px;
    padding: 0 5px;
    background: white;
    transform: translateY(-50%) scale(0.85);
    color: #007bff;
    pointer-events: none;
}

.btn-submit {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #007bff, #00e5ff);
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-submit:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00e5ff, #007bff);
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.btn-submit:hover:before {
    opacity: 1;
}

.button-icon {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover .button-icon {
    transform: translateX(5px) rotate(45deg);
}

.form-note {
    color: #666;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-intro {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #00a6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-card:hover .icon-wrapper {
    transform: rotateY(180deg);
}

.icon-wrapper i {
    font-size: 1.2rem;
    color: white;
}

.info-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.info-content p {
    margin: 0;
    color: #666;
}

.info-content a {
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.contact-form:hover {
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.1);
    border-color: #007bff;
}

.form-control {
    border: 2px solid #eee;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.btn-submit {
    background: linear-gradient(135deg, #007bff, #00a6ff);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
    background: linear-gradient(135deg, #0056b3, #007bff);
}

/* About Section */
.about-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    color: #28a745;
    margin-right: 1rem;
}

.experience-badge {
    position: absolute;
    right: -20px;
    bottom: 30px;
    background: #007bff;
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

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

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: #007bff;
}

.service-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

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

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

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.gallery-info {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: all 0.3s ease;
    opacity: 0;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}

.gallery-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.gallery-zoom {
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.gallery-zoom:hover {
    color: #fff;
    transform: scale(1.2);
}

/* Goals Section */
.goals-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.goals-image:hover {
    transform: translateY(-10px);
}

.goals-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.goals-image:hover img {
    transform: scale(1.05);
}

.goals-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.goals-image:hover .overlay {
    opacity: 1;
}

/* Why Choose Us Section */
.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 4px solid transparent;
}

.why-us-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
    border-left-color: #007bff;
}

.why-us-item .icon-wrapper {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #00a6ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-us-item:hover .icon-wrapper {
    transform: rotate(5deg) scale(1.1);
}

.why-us-item .icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    top: -100%;
    left: -100%;
    transition: all 0.5s ease;
}

.why-us-item:hover .icon-wrapper::before {
    top: 100%;
    left: 100%;
}

.why-us-item .icon-wrapper i {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

.why-us-item .icon-wrapper i::before {
    content: '✓';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.why-us-item:hover .icon-wrapper i::before {
    font-size: 1.5rem;
    opacity: 1;
}

.why-us-item:hover .icon-wrapper i {
    transform: scale(1.2);
    animation: checkmark 0.5s ease forwards;
}

@keyframes checkmark {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1.2);
    }
}

.why-us-item .content {
    flex: 1;
}

.why-us-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.why-us-item:hover h4 {
    color: #007bff;
}

.why-us-item p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.why-us-item:hover p {
    color: #495057;
}

@media (max-width: 768px) {
    .why-us-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1rem;
    }

    .why-us-item .icon-wrapper {
        margin-bottom: 1rem;
    }
}

/* Contact Form */
.contact-form .form-control {
    border: none;
    border-bottom: 2px solid #dee2e6;
    border-radius: 0;
    padding: 0.8rem 0;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: #007bff;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-info .info-item i {
    font-size: 1.5rem;
    color: #007bff;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

/* Footer */
.footer {
    padding: 60px 0 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #007bff;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
.animated-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.animated-button:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .experience-badge {
        right: 0;
        bottom: 0;
    }
    
    .navbar {
        background: white;
    }
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: all;
}

.aos-animate {
    pointer-events: all;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
