.elementor-2719 .elementor-element.elementor-element-e1d999e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-baf99d0 *//* ==========================================
   CSS for Union Technology Group Website
   Colors: #00274E, #003459, #1DA9E4
   Font: Open Sans
   ========================================== */

/* ==========================================
   Global Styles & Reset
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #00274E;
    --primary-medium: #003459;
    --accent-blue: #1DA9E4;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --medium-gray: #E0E4E9;
    --dark-gray: #6B7280;
    --text-dark: #1F2937;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #1890c0;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ==========================================
   Top Header
   ========================================== */
.top-header {
    background-color: #003459;
    color: var(--white);
    padding: 10px 0;
    font-size: 0.875rem;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--white);
    white-space: nowrap;
}

.contact-info a:hover {
    color: var(--accent-blue);
}

.contact-info i {
    margin-right: 5px;
    color: var(--accent-blue);
}

.divider {
    color: var(--medium-gray);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-blue);
}

/* ==========================================
   Main Header
   ========================================== */
.main-header {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo img {
    height: 70px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile menu toggle animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================
   Mobile Responsive Styles
   ========================================== */

/* Tablets and below (768px) */
@media (max-width: 768px) {
    .top-header {
        padding: 8px 0;
        font-size: 0.8rem;
    }
    
    .top-header-content {
        justify-content: space-between !important;
        text-align: left;
        flex-wrap: nowrap;
    }
    
    .contact-info {
        gap: 10px;
        font-size: 0.75rem;
        flex-wrap: nowrap;
    }
    
    /* Hide some elements on smaller tablets */
    .contact-info .divider:last-of-type,
    .contact-info span:last-of-type {
        display: none;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;

        /* 🔹 Height fix starts here */
        height: 120vh;
        max-height: none;
        overflow-y: auto;
        /* 🔹 Height fix ends here */

        background-color: var(--primary-dark) !important;
        padding: 30px;
        padding-top: 30px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        visibility: hidden;
        margin: 0 !important;
    }
    
    .main-nav.active {
        right: 0;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
    }
    
    .main-nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 1rem;
        color: var(--white) !important;
    }
    
    .main-nav .nav-link:hover {
        color: var(--accent-blue) !important;
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .nav-link::after {
        display: none;
    }
}

/* Small tablets and large phones (600px) */
@media (max-width: 600px) {
    .top-header {
        font-size: 0.75rem;
    }
    
    .top-header-content {
        justify-content: space-between !important;
        flex-wrap: nowrap;
    }
    
    .contact-info {
        flex-direction: row;
        gap: 8px;
        width: auto;
        flex-wrap: nowrap;
    }
    
    /* Show only phone number on small screens */
    .contact-info span:not(.divider) {
        display: none;
    }
    
    .contact-info .divider {
        display: none;
    }
    
    .social-links {
        gap: 10px;
        font-size: 0.9rem;
    }
}

/* Mobile phones (480px) */
@media (max-width: 480px) {
    .top-header {
        padding: 6px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 12px 0;
    }
    
    .logo img {
        height: 45px;
    }
    
    .contact-info a {
        font-size: 0.8rem;
    }
    
    .main-nav {
        width: 100%;
        right: -100%;
        padding: 20px !important;
        margin: 0 !important;

        /* 🔹 Height fix for small screens */
        height: 120vh;
        max-height: none;
        overflow-y: auto;
    }
    
    .main-nav ul {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
    }
}

/* Very small screens (360px) */
@media (max-width: 360px) {
    .logo img {
        height: 40px;
    }
    
    .contact-info a {
        font-size: 0.75rem;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-links a {
        font-size: 0.85rem;
    }
}





/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 39, 78, 0.85), rgba(0, 52, 89, 0.75));
opacity: 0.8;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--light-gray);
    font-weight: 300;
    animation: fadeInUp 1.2s ease;
}

.hero-content .btn {
    animation: fadeInUp 1.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   Section Headers
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: auto;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



/* ==========================================
   About Section
   ========================================== */
.about {
  position: relative;
  background: url('https://uniontechnologygroup.com/wp-content/uploads/2025/11/Whisk_29016aa15aff985ad8e4bfc59fd82960dr.jpeg') center center/cover no-repeat;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 50px;
}
.text-white{
    color: white;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary-dark);
opacity: 0.9;
  z-index: -1;
}

.about .container {
  position: relative;
  z-index: 2;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.about-intro {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.about-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-item i {
    color: var(--accent-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-item h4 {
    margin-bottom: 5px;
    color: var(--white);
}

.feature-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--white);
}

/* ==========================================
   Projects Section
   ========================================== */
.projects {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.project-card {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 39, 78, 0.95), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-overlay p {
    color: var(--light-gray);
    margin: 0;
}

/* ==========================================
   Partners Section
   ========================================== */
.partners {
  background-color: var(--white);
  text-align: center;
  padding: 50px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 100px;
}

.partner-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
}

.partner-logo:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-logo:hover span {
    color: var(--white);
}
.partners-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}



/* ==========================================
   Contact Section
   ========================================== */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    color: var(--white);
}

.contact-info h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--light-gray);
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    color: var(--accent-blue);
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.125rem;
}

.contact-item p,
.contact-item a {
    color: var(--light-gray);
    margin: 0;
}

.contact-item a:hover {
    color: var(--accent-blue);
}

/* ==========================================
   Contact Form
   ========================================== */
.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--medium-gray);
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* ==========================================
   Quality Brands Section
   ========================================== */
.quality-brands {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.brand-item {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background-color: var(--primary-dark);
}

.brand-item i {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.brand-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.brand-item p {
    margin: 0;
    color: var(--dark-gray);
}

.brand-item:hover h4,
.brand-item:hover p {
    color: var(--white);
}

.brand-item:hover i {
    color: var(--white);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-col p {
    color: var(--light-gray);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--light-gray);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-blue);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--accent-blue);
    transform: translateY(-3px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--light-gray);
}

.footer-contact li i {
    color: var(--accent-blue);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--light-gray);
    margin: 0;
}

/* ==========================================
   Modal
   ========================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--dark-gray);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
    line-height: 1;
    padding: 5px 10px;
}

.modal-close:hover {
    color: var(--primary-dark);
}

.modal-body {
    padding: 50px 40px;
}

.modal-body h2 {
    margin-bottom: 20px;
}

.modal-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.modal-body ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.modal-body ul li {
    margin-bottom: 10px;
    color: var(--dark-gray);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ==========================================
   Back to Top Button
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1500;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Tablet */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .mobile-menu-toggle {
        display: flex;
    }


    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--medium-gray);
    }

    .nav-link::after {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .top-header-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 8px;
    }

    .divider {
        display: none;
    }

    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid,
    .projects-grid,
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
    }

    .modal-body {
        padding: 40px 25px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .logo img {
        height: 50px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ==========================================
   Utility Classes
   ========================================== */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* ==========================================
   Print Styles
   ========================================== */
@media print {
    .top-header,
    .main-header,
    .back-to-top,
    .modal {
        display: none;
    }
}
/* ==========================================
   Contact Page Section
   ========================================== */
.contact-page {
    padding: 60px 0;
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.contact-header p {
    font-size: 1.125rem;
    color: var(--dark-gray);
}

/* ==========================================
   Contact Content Layout
   ========================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

/* ==========================================
   Contact Information Cards
   ========================================== */
.contact-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.info-card {
    background-color: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-icon i {
    font-size: 1.75rem;
    color: var(--accent-blue);
}

.info-card:hover .info-icon {
    background-color: var(--accent-blue);
}

.info-card:hover .info-icon i {
    color: var(--white);
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.info-card p {
    margin: 0;
    color: var(--dark-gray);
    line-height: 1.8;
}

.info-card a {
    color: var(--accent-blue);
    font-weight: 600;
}

.info-card a:hover {
    color: var(--primary-dark);
}

/* ==========================================
   Contact Form Section
   ========================================== */
.contact-form-section {
    background-color: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
    text-align: center;
}

/* ==========================================
   Form Styles
   ========================================== */
.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--medium-gray);
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(29, 169, 228, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* ==========================================
   Button
   ========================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #1890c0;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Tablet */
@media (max-width: 992px) {
    .contact-header h1 {
        font-size: 2.5rem;
    }

    .contact-info-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-section {
        padding: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .contact-info-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-section {
        padding: 30px 25px;
    }

    .info-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .info-icon {
        width: 60px;
        height: 60px;
    }

    .info-icon i {
        font-size: 1.5rem;
    }
}

/* ==========================================
   Form Validation States
   ========================================== */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #10b981;
}

/* ==========================================
   Loading State
   ========================================== */
.btn-primary:disabled {
    background-color: var(--medium-gray);
    cursor: not-allowed;
    transform: none;
}

/* ==========================================
   Animation
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-header,
.contact-info-section,
.contact-form-section {
    animation: fadeInUp 0.6s ease;
}

.contact-info-section {
    animation-delay: 0.2s;
}

.contact-form-section {
    animation-delay: 0.4s;
}/* End custom CSS */