/* About Page Specific Styles - Large Display Optimization */
.ABT-about-hero {
    min-height: 70vh; /* Increased for large displays */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 40px; /* Increased padding for large displays */
    text-align: center;
    background-image: linear-gradient(
        rgba(10, 14, 20, 0.85), 
        rgba(20, 36, 52, 0.85)
    ), url("/Content/Gallery/5.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ABT-about-content {
    position: relative;
    z-index: 2;
    max-width: 1100px; /* Increased for large displays */
    margin: 0 auto;
}

.ABT-about-title {
    font-size: 3.5rem; /* Increased for large displays */
    font-weight: 800;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 1.5rem; /* Slightly increased for large displays */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.ABT-about-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.ABT-about-subtitle {
    font-size: 1.35rem; /* Increased for large displays */
    color: var(--light-gray);
    max-width: 900px; /* Increased for large displays */
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.ABT-about-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.ABT-features-section {
    padding: 100px 0; /* Increased for large displays */
    background-color: var(--darker);
}

.ABT-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); /* Increased min width for large displays */
    gap: 40px; /* Increased gap for large displays */
    margin-top: 60px; /* Increased for large displays */
    max-width: 1600px; /* Added max width for large displays */
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.ABT-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(126, 234, 251, 0.1);
    border-radius: var(--border-radius);
    padding: 35px; /* Increased padding for large displays */
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.ABT-feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.ABT-feature-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(126, 234, 251, 0.3);
}

.ABT-feature-icon {
    font-size: 2.8rem; /* Increased for large displays */
    color: var(--primary);
    margin-bottom: 1.8rem; /* Slightly increased for large displays */
    transition: all 0.4s ease;
}

.ABT-feature-card:hover .ABT-feature-icon {
    transform: scale(1.1);
}

.ABT-feature-title {
    font-size: 1.5rem; /* Increased for large displays */
    margin-bottom: 1.2rem; /* Slightly increased for large displays */
    color: var(--light);
}

.ABT-feature-desc {
    font-size: 1.05rem; /* Increased for large displays */
    color: var(--gray);
}

.ABT-mission-section {
    padding: 100px 0; /* Increased for large displays */
    background-image: linear-gradient(
        rgba(13, 17, 23, 0.9), 
        rgba(26, 42, 58, 0.9)
    ), url("/Content/Gallery/11.jpg");
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}

.ABT-mission-box {
    background: rgba(13, 17, 23, 0.7);
    border: 1px solid rgba(126, 234, 251, 0.2);
    border-radius: var(--border-radius);
    padding: 50px; /* Increased padding for large displays */
    backdrop-filter: blur(5px);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease;
    margin-top: 5rem; /* Increased for large displays */
    max-width: 1200px; /* Added max width for large displays */
    margin-left: auto;
    margin-right: auto;
}

.ABT-mission-box.visible {
    opacity: 1;
    transform: scale(1);
}

.ABT-mission-title {
    font-size: 2.2rem; /* Increased for large displays */
    margin-bottom: 1.8rem; /* Slightly increased for large displays */
    color: var(--primary);
}

.ABT-mission-text {
    font-size: 1.1rem; /* Increased for large displays */
    color: var(--light-gray);
    margin-bottom: 2.5rem; /* Slightly increased for large displays */
}

.ABT-vision-box {
    background: rgba(126, 234, 251, 0.1);
    border: 1px solid rgba(126, 234, 251, 0.3);
    border-radius: var(--border-radius);
    padding: 50px; /* Increased padding for large displays */
    margin-top: 40px; /* Increased for large displays */
    backdrop-filter: blur(5px);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease 0.2s;
    max-width: 1200px; /* Added max width for large displays */
    margin-left: auto;
    margin-right: auto;
}

.ABT-vision-box.visible {
    opacity: 1;
    transform: scale(1);
}

.ABT-vision-title {
    font-size: 2.2rem; /* Increased for large displays */
    margin-bottom: 1.8rem; /* Slightly increased for large displays */
    color: var(--primary);
}

.ABT-vision-text {
    font-size: 1.1rem; /* Increased for large displays */
    color: var(--light-gray);
}

/* Animation delays for feature cards */
.ABT-feature-card:nth-child(1) { transition-delay: 0.1s; }
.ABT-feature-card:nth-child(2) { transition-delay: 0.2s; }
.ABT-feature-card:nth-child(3) { transition-delay: 0.3s; }
.ABT-feature-card:nth-child(4) { transition-delay: 0.4s; }
.ABT-feature-card:nth-child(5) { transition-delay: 0.5s; }
.ABT-feature-card:nth-child(6) { transition-delay: 0.6s; }
.ABT-feature-card:nth-child(7) { transition-delay: 0.7s; }
.ABT-feature-card:nth-child(8) { transition-delay: 0.8s; }

/* Extra Large Screens (1920px and above) */
@media (min-width: 1920px) {
    .ABT-about-hero {
        min-height: 80vh;
        padding: 160px 60px;
    }
    
    .ABT-about-title {
        font-size: 4rem;
    }
    
    .ABT-about-subtitle {
        font-size: 1.5rem;
        max-width: 1000px;
    }
    
    .ABT-feature-grid {
        grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
        gap: 50px;
        max-width: 1800px;
    }
    
    .ABT-feature-card {
        padding: 40px;
    }
    
    .ABT-feature-icon {
        font-size: 3rem;
    }
    
    .ABT-feature-title {
        font-size: 1.6rem;
    }
    
    .ABT-feature-desc {
        font-size: 1.1rem;
    }
    
    .ABT-mission-box,
    .ABT-vision-box {
        max-width: 1400px;
        padding: 60px;
    }
    
    .ABT-mission-title,
    .ABT-vision-title {
        font-size: 2.5rem;
    }
    
    .ABT-mission-text,
    .ABT-vision-text {
        font-size: 1.2rem;
    }
}

/* Responsive Styles for smaller screens (unchanged) */
@media (max-width: 767.98px) {
    .ABT-about-hero {
        min-height: 50vh;
        padding: 80px 20px;
        text-align: center;
    }

    .ABT-about-title {
        font-size: 2rem;
    }

    .ABT-about-subtitle {
        font-size: 1rem;
    }

    .ABT-feature-grid {
        grid-template-columns: 1fr;
    }

    .ABT-mission-box,
    .ABT-vision-box {
        padding: 25px;
    }

    .ABT-mission-title,
    .ABT-vision-title {
        font-size: 1.5rem;
    }
}

/* About page style ends here */


/* Services Page Specific Styles - Large Display Optimization */
.SRV-hero {
    min-height: 60vh; /* Increased for large displays */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 30px; /* Increased padding for large displays */
    text-align: center;
    background-image: linear-gradient(rgba(13, 17, 23, 0.9), rgba(26, 42, 58, 0.9)), url("/Content/Gallery/4.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.SRV-hero-content {
    margin-top: 3.5rem; /* Slightly increased for large displays */
    max-width: 1000px; /* Increased for large displays */
    position: relative;
    z-index: 2;
}

.SRV-hero-title {
    font-size: 3.5rem; /* Increased for large displays */
    font-weight: 700;
    margin-bottom: 1.8rem; /* Slightly increased for large displays */
    background: linear-gradient(135deg, var(--light) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.SRV-hero-subtitle {
    font-size: 1.4rem; /* Increased for large displays */
    color: var(--light-gray);
    line-height: 1.6;
}

.SRV-services-section {
    padding: 100px 0; /* Increased for large displays */
    background-color: var(--darker);
}

.SRV-service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(126, 234, 251, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px; /* Increased for large displays */
    transition: all 0.4s ease;
    max-width: 1200px; /* Added max width for large displays */
    margin-left: auto;
    margin-right: auto;
}

.SRV-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(126, 234, 251, 0.3);
}

.SRV-service-header {
    padding: 25px; /* Increased padding for large displays */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13, 17, 23, 0.5);
}

.SRV-service-title {
    font-size: 1.5rem; /* Increased for large displays */
    margin: 0;
    color: var(--primary);
}

.SRV-service-toggle {
    font-size: 1.4rem; /* Increased for large displays */
    color: var(--primary);
    transition: transform 0.3s ease;
}

.SRV-service-toggle.rotated {
    transform: rotate(180deg);
}

.SRV-service-content {
    padding: 0 25px; /* Increased padding for large displays */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.SRV-service-content.show {
    padding: 25px; /* Increased padding for large displays */
    max-height: 2000px;
}

.SRV-service-description {
    color: var(--light-gray);
    margin-bottom: 25px; /* Increased for large displays */
    font-size: 1.05rem; /* Increased for large displays */
}

.SRV-service-images {
    display: flex;
    gap: 20px; /* Increased gap for large displays */
    margin-bottom: 25px; /* Increased for large displays */
    flex-wrap: wrap;
}

.SRV-service-image {
    flex: 1 1 350px; /* Increased min width for large displays */
    height: 250px; /* Increased height for large displays */
    border-radius: var(--border-radius);
    overflow: hidden;
}

.SRV-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.SRV-service-image:hover img {
    transform: scale(1.05);
}

.SRV-download-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 12px 30px; /* Slightly larger for large displays */
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Slightly increased for large displays */
    margin-bottom: 25px; /* Increased for large displays */
    transition: all 0.3s ease;
    font-size: 1.05rem; /* Slightly larger for large displays */
}

.SRV-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(126, 234, 251, 0.3);
    color: var(--dark);
}

.SRV-service-features {
    margin-bottom: 25px; /* Increased for large displays */
}

.SRV-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px; /* Slightly increased for large displays */
}

.SRV-feature-icon {
    color: var(--primary);
    margin-right: 12px; /* Slightly increased for large displays */
    font-size: 1rem; /* Slightly larger for large displays */
    margin-top: 4px; /* Slightly increased for large displays */
}

.SRV-feature-text {
    color: var(--light-gray);
    font-size: 1rem; /* Slightly larger for large displays */
}

/* Extra Large Screens (1920px and above) */
@media (min-width: 1920px) {
    .SRV-hero {
        min-height: 70vh;
        padding: 140px 40px;
    }
    
    .SRV-hero-title {
        font-size: 4rem;
    }
    
    .SRV-hero-subtitle {
        font-size: 1.6rem;
    }
    
    .SRV-service-card {
        max-width: 1400px;
    }
    
    .SRV-service-header {
        padding: 30px;
    }
    
    .SRV-service-title {
        font-size: 1.7rem;
    }
    
    .SRV-service-description {
        font-size: 1.1rem;
    }
    
    .SRV-service-images {
        gap: 25px;
    }
    
    .SRV-service-image {
        flex: 1 1 400px;
        height: 280px;
    }
    
    .SRV-download-btn {
        padding: 14px 35px;
        font-size: 1.1rem;
    }
    
    .SRV-feature-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 767.98px) {
    .SRV-hero {
        min-height: 60vh;
        padding: 80px 20px;
    }
    
    .SRV-hero-title {
        font-size: 2.2rem;
    }
    
    .SRV-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .SRV-service-images {
        flex-direction: column;
    }
    
    .SRV-service-image {
        flex: 1 1 auto;
    }
}

@media (max-width: 575.98px) {
    .SRV-hero-title {
        font-size: 1.8rem;
    }
    
    .SRV-hero-subtitle {
        font-size: 1rem;
    }
}

/* Services page style end here */

/* Contact Page Specific Styles - Large Display Optimization */
.CNT-hero {
    min-height: 60vh; /* Increased for large displays */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 30px; /* Increased padding for large displays */
    text-align: center;
    background-image: linear-gradient(rgba(13, 17, 23, 0.9), rgba(26, 42, 58, 0.9)), url("/Content/Gallery/4.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.CNT-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px; /* Increased for large displays */
    margin: 0 auto;
}

.CNT-hero-title {
    margin-top: 2.5rem; /* Slightly increased for large displays */
    font-size: 3.5rem; /* Increased for large displays */
    font-weight: 700;
    margin-bottom: 1.2rem; /* Slightly increased for large displays */
    background: linear-gradient(135deg, var(--light) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(126, 234, 251, 0.3);
}

.CNT-hero-subtitle {
    font-size: 1.4rem; /* Increased for large displays */
    color: var(--light-gray);
    margin-bottom: 0rem;
    max-width: 700px; /* Increased for large displays */
    margin-left: auto;
    margin-right: auto;
}

.CNT-contact-section {
    padding: 80px 0; /* Increased for large displays */
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    position: relative;
}

.CNT-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(126, 234, 251, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(126, 234, 251, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.CNT-contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* Increased min width for large displays */
    gap: 60px; /* Increased gap for large displays */
    max-width: 1400px; /* Increased for large displays */
    margin: 0 auto;
    padding: 0 30px; /* Increased padding for large displays */
    position: relative;
    z-index: 1;
}

.CNT-contact-info {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(126, 234, 251, 0.2);
    border-radius: var(--border-radius);
    padding: 50px; /* Increased padding for large displays */
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.CNT-contact-info::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), transparent, var(--primary));
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.1;
}

.CNT-contact-title {
    font-size: 2rem; /* Increased for large displays */
    margin-bottom: 2.5rem; /* Increased for large displays */
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.CNT-contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px; /* Slightly increased for large displays */
    left: 0;
    width: 60px; /* Increased for large displays */
    height: 4px; /* Increased for large displays */
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
}

.CNT-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px; /* Increased for large displays */
    padding: 18px; /* Increased padding for large displays */
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    position: relative;
}

.CNT-info-item:hover {
    background: rgba(126, 234, 251, 0.05);
    transform: translateX(5px);
}

.CNT-info-icon {
    color: var(--primary);
    font-size: 1.5rem; /* Increased for large displays */
    margin-right: 25px; /* Increased for large displays */
    margin-top: 4px; /* Slightly increased for large displays */
    min-width: 25px; /* Increased for large displays */
}

.CNT-info-content h4 {
    font-size: 1.2rem; /* Increased for large displays */
    margin-bottom: 10px; /* Slightly increased for large displays */
    color: var(--light);
    font-weight: 500;
}

.CNT-info-content p,
.CNT-info-content a {
    color: var(--light-gray);
    font-size: 1.05rem; /* Increased for large displays */
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.CNT-info-content a:hover {
    color: var(--primary);
}

.CNT-contact-form {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(126, 234, 251, 0.2);
    border-radius: var(--border-radius);
    padding: 50px; /* Increased padding for large displays */
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.CNT-contact-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), transparent, var(--primary));
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.1;
}

.CNT-form-group {
    margin-bottom: 30px; /* Increased for large displays */
    position: relative;
}

.CNT-form-label {
    display: block;
    margin-bottom: 12px; /* Slightly increased for large displays */
    color: var(--light-gray);
    font-size: 1.05rem; /* Increased for large displays */
    font-weight: 500;
    transition: color 0.3s ease;
}

.CNT-form-control {
    width: 100%;
    padding: 18px 25px; /* Increased padding for large displays */
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(126, 234, 251, 0.2);
    border-radius: var(--border-radius);
    color: var(--light);
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem; /* Increased for large displays */
    transition: all 0.3s ease;
    position: relative;
}

.CNT-form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(126, 234, 251, 0.1);
    background: rgba(255, 255, 255, 0.12);
}

.CNT-form-control::placeholder {
    color: var(--gray);
    transition: color 0.3s ease;
}

.CNT-form-control:focus::placeholder {
    color: transparent;
}

textarea.CNT-form-control {
    min-height: 180px; /* Increased for large displays */
    resize: vertical;
}

.CNT-submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 18px 45px; /* Increased padding for large displays */
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius);
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px; /* Slightly increased for large displays */
    font-size: 1.1rem; /* Increased for large displays */
    position: relative;
    overflow: hidden;
}

.CNT-submit-btn::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: left 0.5s ease;
}

.CNT-submit-btn:hover::before {
    left: 100%;
}

.CNT-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(126, 234, 251, 0.4);
}

.CNT-submit-btn:active {
    transform: translateY(-1px);
}

.CNT-social-links {
    display: flex;
    gap: 20px; /* Increased gap for large displays */
    margin-top: 50px; /* Increased for large displays */
    flex-wrap: wrap;
}

.CNT-social-link {
    width: 55px; /* Increased for large displays */
    height: 55px; /* Increased for large displays */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.3rem; /* Increased for large displays */
    position: relative;
    overflow: hidden;
}

.CNT-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.CNT-social-link:hover::before {
    opacity: 1;
}

.CNT-social-link.facebook {
    background: linear-gradient(135deg, #3b5998, #2d4373);
}

.CNT-social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.CNT-social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.CNT-social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Error message styles */
.CNT-error-message {
    color: #ff6b6b;
    font-size: 0.9rem; /* Slightly larger for large displays */
    margin-top: 10px; /* Slightly increased for large displays */
    display: none;
    padding: 6px 12px; /* Slightly increased for large displays */
    background: rgba(255, 107, 107, 0.1);
    border-radius: 4px;
    border-left: 3px solid #ff6b6b;
}

/* Loading spinner */
.CNT-loading {
    display: none;
    width: 22px; /* Slightly larger for large displays */
    height: 22px; /* Slightly larger for large displays */
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--dark);
    animation: CNT-spin 1s ease-in-out infinite;
    margin-right: 10px; /* Slightly increased for large displays */
}

@keyframes CNT-spin {
    to { transform: rotate(360deg); }
}

/* Success message */
.CNT-success-message {
    display: none;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2), rgba(40, 167, 69, 0.1));
    color: #28a745;
    padding: 25px; /* Increased padding for large displays */
    border-radius: var(--border-radius);
    margin-top: 30px; /* Increased for large displays */
    text-align: center;
    border: 1px solid rgba(40, 167, 69, 0.3);
    font-weight: 500;
    font-size: 1.05rem; /* Slightly larger for large displays */
}

/* Form validation styles */
.CNT-form-control.CNT-invalid {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
}

.CNT-form-control.CNT-valid {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.05);
}

/* Extra Large Screens (1920px and above) */
@media (min-width: 1920px) {
    .CNT-hero {
        min-height: 70vh;
        padding: 140px 40px;
    }
    
    .CNT-hero-title {
        font-size: 4rem;
        margin-top: 3rem;
    }
    
    .CNT-hero-subtitle {
        font-size: 1.6rem;
        max-width: 800px;
    }
    
    .CNT-contact-container {
        max-width: 1600px;
        gap: 70px;
    }
    
    .CNT-contact-info,
    .CNT-contact-form {
        padding: 60px;
    }
    
    .CNT-contact-title {
        font-size: 2.2rem;
    }
    
    .CNT-info-icon {
        font-size: 1.6rem;
    }
    
    .CNT-info-content h4 {
        font-size: 1.3rem;
    }
    
    .CNT-info-content p,
    .CNT-info-content a {
        font-size: 1.1rem;
    }
    
    .CNT-form-label {
        font-size: 1.1rem;
    }
    
    .CNT-form-control {
        padding: 20px 30px;
        font-size: 1.1rem;
    }
    
    textarea.CNT-form-control {
        min-height: 200px;
    }
    
    .CNT-submit-btn {
        padding: 20px 50px;
        font-size: 1.2rem;
    }
    
    .CNT-social-link {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}

/* Responsive Design for smaller screens (unchanged) */
@media (max-width: 991.98px) {
    .CNT-contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767.98px) {
    .CNT-hero {
        min-height: 40vh;
        padding: 60px 15px;
    }
    
    .CNT-hero-title {
        font-size: 2.2rem;
    }
    
    .CNT-hero-subtitle {
        font-size: 1rem;
    }
    
    .CNT-contact-section {
        padding: 60px 0;
    }
    
    .CNT-contact-container {
        padding: 0 15px;
    }
    
    .CNT-contact-info,
    .CNT-contact-form {
        padding: 30px;
    }
    
    .CNT-contact-title {
        font-size: 1.5rem;
    }
    
    .CNT-social-links {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .CNT-hero-title {
        font-size: 1.8rem;
    }
    
    .CNT-contact-info,
    .CNT-contact-form {
        padding: 25px;
    }
    
    .CNT-form-control {
        padding: 12px 15px;
    }
    
    .CNT-submit-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Animation for page load */
@keyframes CNT-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.CNT-contact-info,
.CNT-contact-form {
    animation: CNT-fadeInUp 0.8s ease-out;
}

.CNT-contact-form {
    animation-delay: 0.2s;
}

/* contact page style ends here */