:root {
    --google-blue: #4285F4;
    --google-red: #EA4335;
    --google-yellow: #FBBC04;
    --google-green: #34A853;
    --dark-text: #202124;
    --light-text: #0f0f0f;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Google Sans', 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--dark-text);
    overflow-x: hidden;
}

/* Typography Helpers */
.google-blue { color: var(--google-blue); }
.google-green { color: var(--google-green); }
.google-red { color: var(--google-red); }
.google-yellow { color: var(--google-yellow); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--google-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.btn-primary.cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--google-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.btn-primary:hover {
    background-color: #3367d6;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: white;
    color: var(--google-blue);
    border: 2px solid var(--google-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e8f0fe;
}

.section-padding {
    padding: 80px 0;
}

.bg-light-alt {
    background-color: var(--bg-light);
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--google-blue), var(--google-green), var(--google-yellow), var(--google-red));
    margin: 0 auto;
    border-radius: 2px;
}

.text-center { text-align: center; }
.text-left { text-align: left; } /* Added for event section */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #5f6368;
    font-size: 1.2rem;
    font-weight: 500;
}

.footer {
    display: flex;
    margin: 0px;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
}

.logo img {
    height: 30px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--google-blue);
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-text);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 60px;
}

.hero-content {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    margin-top: 40px;
    gap: 40px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--dark-text);
}

.stat-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* Background Abstract Shapes */
.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
}

.shape-1 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--google-blue);
}

.shape-2 {
    bottom: -50px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--google-yellow);
}

/* 3D Cube Animation */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    z-index: 2;
    height: 400px;
}

.scene {
    width: 200px;
    height: 200px;
    perspective: 600px;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 15s infinite linear;
}

.cube__face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e0e0e0;
    line-height: 200px;
    font-size: 80px;
    font-weight: bold;
    color: white;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cube__face--front  { transform: rotateY(  0deg) translateZ(100px); color: var(--google-blue); }
.cube__face--right  { transform: rotateY( 90deg) translateZ(100px); color: var(--google-red); }
.cube__face--back   { transform: rotateY(180deg) translateZ(100px); color: var(--google-green); }
.cube__face--left   { transform: rotateY(-90deg) translateZ(100px); color: var(--google-yellow); }
.cube__face--top    { transform: rotateX( 90deg) translateZ(100px); color: var(--google-blue); }
.cube__face--bottom { transform: rotateX(-90deg) translateZ(100px); color: var(--google-red); }

@keyframes rotate {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

/* What We Do Cards */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.icon-box.red { background-color: var(--google-red); }
.icon-box.blue { background-color: var(--google-blue); }
.icon-box.green { background-color: var(--google-green); }
.icon-box.yellow { background-color: var(--google-yellow); }

.card h3 { margin-bottom: 15px; }
.card p { color: var(--light-text); font-size: 0.95rem; line-height: 1.6; }

/* About Section */
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img { flex: 1; }
.about-content { flex: 1; }

.img-placeholder {
    width: 100%;
    height: 350px;
    background-color: #ddd;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.2rem;
}

.img-placeholder i { font-size: 3rem; margin-bottom: 10px; }

.about-content p { margin-bottom: 20px; color: var(--light-text); line-height: 1.6; }

.tech-list {
    list-style: none;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.tech-list li {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}




/* --- Events Slider & Modern Card Styles (Revised) --- */

/* Header Layout for Events Section */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.subtitle {
    font-size: 0.9rem;
    color: var(--google-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

/* Custom Navigation Buttons */
.slider-nav-btns {
    display: flex;
    gap: 15px;
}

.swiper-button-next-custom, 
.swiper-button-prev-custom {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-text);
}

.swiper-button-next-custom:hover, 
.swiper-button-prev-custom:hover {
    background-color: var(--google-blue);
    color: white;
    border-color: var(--google-blue);
}

/* Swiper Container */
.swiper {
    width: 100%;
    padding-bottom: 50px !important; /* Space for pagination dots */
}

/* Card Styling */
.event-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.card-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card-modern:hover .card-image-wrapper img {
    transform: scale(1.05);
}

/* Date Badge */
.date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    padding: 8px 12px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
    min-width: 60px;
}

.date-badge .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1;
}

.date-badge .month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--light-text);
    text-transform: uppercase;
}

/* Category Tag */
.category-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(234, 67, 53, 0.9); /* Default Red */
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.category-tag.blue { background: rgba(66, 133, 244, 0.9); }
.category-tag.green { background: rgba(52, 168, 83, 0.9); }
.category-tag.yellow { background: rgba(251, 188, 4, 0.95); color: #333; }

/* Card Body */
.card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--dark-text);
}

.location-info {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-info i { color: var(--google-red); }

.card-body p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Actions (Bottom Buttons) */
.card-actions {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-card-outline, .btn-card-fill {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-card-outline {
    border: 1px solid #ddd;
    color: var(--dark-text);
    background: transparent;
}

.btn-card-outline:hover {
    border-color: var(--dark-text);
    background: #f8f9fa;
}

.btn-card-fill {
    background: var(--google-blue);
    color: white;
    border: 1px solid var(--google-blue);
}

.btn-card-fill:hover {
    background: #3367d6;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.25);
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet-active { background-color: var(--google-blue) !important; }


/* Partners */
.partners-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-logo {
    width: 150px;
    height: 80px;
    background: white;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ccc;
    font-weight: bold;
}

/* Team Section */
/*.team-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
/*    gap: 30px;*/
/*}*/

.team-grid {
    display: grid;
    /* Adjust 'repeat(auto-fit, minmax(250px, 1fr))' if you need a specific number of columns, 
       but this auto-fit ensures responsiveness. */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px;
    margin-top: 40px;
}

/*.team-card {*/
/*    background: white;*/
/*    padding: 30px 20px;*/
/*    border-radius: 15px;*/
/*    text-align: center;*/
/*    box-shadow: var(--shadow);*/
/*    transition: transform 0.3s;*/
/*}*/

/* 2. TEAM CARD (Controls the card itself) */
.team-card {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

/*.team-img-box {*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    margin: 0 auto 15px;*/
/*}*/

/* 3. TEAM IMAGE BOX (CRUCIAL: Creates the circular container) */
.team-img-box {
    width: 150px; /* Define a fixed width */
    height: 150px; /* Define a fixed height */
    border-radius: 50%; /* Makes the box perfectly circular */
    overflow: hidden; /* **Clips the square image into a circle** */
    margin: 0 auto 20px; /* Centers the image box horizontally */
    display: block; /* Ensures margin auto works */
    border: 4px solid var(--google-blue); /* Optional: nice blue border */
}

/* 4. TEAM PHOTO (Ensures the image fills the circular box properly) */
.team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* **Scales the image to fill the box without stretching** */
    display: block;
}

/* 5. Team Text Styles (Check these for vertical spacing) */
.team-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-card p {
    color: var(--light-text);
    margin-bottom: 15px;
}

/* Join Team Card Styling */
.join-team-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; /* Center align all text */
    grid-column: 1 / -1; /* ADD THIS - Span all columns */
    justify-self: center; /* ADD THIS - Center within the spanned area */
    max-width: 320px; /* ADD THIS - Match your card width */
}

.join-team-card h3 {
    font-size: 1.1rem;
    text-align: center;
    margin: 1rem 0;
    line-height: 1.5;
}

.join-team-card .team-img-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-team-card .team-photo {
    opacity: 0.7;
}

.join-team-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4285f4; /* Google Blue */
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.join-team-btn:hover {
    background-color: #357ae8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.question-mark-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #4285f4;
}

.circle-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #eee;
}

/*.team-card h3 { font-size: 1.1rem; margin-bottom: 5px; }*/
/*.team-card p { color: var(--light-text); font-size: 0.9rem; margin-bottom: 15px; }*/

.social-links a { margin: 0 5px; color: #888; transition: color 0.3s; }
.social-links a:hover { color: var(--google-blue); }

/* Feeds */
.feeds-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feed-widget {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.feed-header {
    padding: 15px 20px;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feed-widget.twitter .feed-header { background: #1DA1F2; }
.feed-widget.instagram .feed-header { background: #E1306C; }

.feed-content { padding: 20px; }

.tweet {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.tweet-user { font-weight: bold; font-size: 0.9rem; margin-bottom: 5px; }
.tweet p { font-size: 0.9rem; color: #444; }

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 20px;
}

.insta-post {
    background-color: #eee;
    padding-bottom: 100%; /* Square aspect ratio */
}

.feed-footer {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #eee;
}

.feed-footer a { text-decoration: none; font-size: 0.9rem; font-weight: 500; }
.feed-widget.twitter a { color: #1DA1F2; }
.feed-widget.instagram a { color: #E1306C; }

/* Footer */
footer {
    background: #202124;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 { margin-bottom: 20px; font-size: 1.2rem; }
.footer-col p { color: #bdc1c6; line-height: 1.6; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #bdc1c6; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: white; padding-left: 5px; }

.footer-socials { margin-top: 20px; }
.footer-socials a { color: white; font-size: 1.2rem; margin-right: 15px; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #3c4043;
    padding-top: 20px;
    color: #9aa0a6;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; 
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active { display: flex; }
    .hamburger { display: block; }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        justify-content: center;
    }
    
    .hero-text h1 { font-size: 2.5rem; }
    
    .hero-stats {
        justify-content: center;
    }
    /* ADD THESE LINES FOR CUBE RESPONSIVENESS */
    .hero-visual {
        height: 250px; /* Reduce height */
        margin-top: 200px; /* Add some spacing */
        margin-bottom: 50px; /* Add some spacing */
    }
    
    .scene {
        width: 100px; /* Reduce from 200px */
        height: 100px; /* Reduce from 200px */
    }
    
    .cube__face {
        width: 100px; /* Match scene size */
        height: 100px; /* Match scene size */
        font-size: 40px; /* Reduce icon size from 80px */
        line-height: 100px; /* Match height */
    }

    .cube__face--front  { transform: rotateY(  0deg) translateZ(50px); } /* Reduced from 100px */
    .cube__face--right  { transform: rotateY( 90deg) translateZ(50px); }
    .cube__face--back   { transform: rotateY(180deg) translateZ(50px); }
    .cube__face--left   { transform: rotateY(-90deg) translateZ(50px); }
    .cube__face--top    { transform: rotateX( 90deg) translateZ(50px); }
    .cube__face--bottom { transform: rotateX(-90deg) translateZ(50px); }
     /* END CUBE RESPONSIVENESS */
    .about-wrapper { flex-direction: column; }
    
    .feeds-container { grid-template-columns: 1fr; }
    
    .cube__face { opacity: 0.9; }

    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .details-grid { grid-template-columns: 1fr; }
    .event-header-modern h1 { font-size: 2rem; }
    .slider-nav-btns { display: none; } /* Hide buttons on mobile, rely on dots/swipe */
}
/* --- Modal (Popup) Styles --- */

/* The Modal Backdrop */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 10000; /* Ensure it is on top of everything */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* Modal Content Box */
.modal-content {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 15px;
}

.modal-header h2 {
    font-size: 1.8rem;
    color: var(--dark-text);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--light-text);
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: var(--google-red);
}

.modal-body p {
    color: var(--light-text);
    margin-bottom: 25px;
}

/* Form Styling (Consistent Design) */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--dark-text);
    transition: border-color 0.3s;
    background: #fcfcfc;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--google-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

