        
/* Base Styles */
:root {
    --primary-color: #30B4C8;
    --primary-dark: #0e8a9d;
    --secondary-color: #0F0F1A;
    --accent-color: #4cc9f0;
    --text-light: #666;
    --text-dark: #333;
    --white: #fff;
    --light-bg: #f5fafd;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    overflow-x: hidden;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.9rem;
}

.slogan {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.contact-info a:hover {
    opacity: 0.8;
}

.contact-info i {
    font-size: 1rem;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

nav.scrolled {
    padding: 10px 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 55px;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.1);
}

.company-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-links li:hover::after {
    width: 100%;
}


/* Active page styling */
nav ul li a.active {
    color: var(--primary-color);
    font-weight: bold;
}


/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
    padding: 10px 0;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 400;
}

.dropdown-content a:hover {
    background-color: #f1f9fd;
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-toggle::after {
    content: '▾';
    margin-left: 5px;
    font-size: 0.8rem;
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: linear-gradient(120deg, #0b6e7f, #30B4C8);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.2s;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.4s;
    margin-top: 40px;
}

.primary-btn, .secondary-btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 18px;
    border: 2px solid white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn {
    background: transparent;
    color: white;
}

.secondary-btn {
    background: white;
    color: var(--primary-color);
}

.primary-btn:before, .secondary-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: all 0.4s ease;
    z-index: -1;
}

.secondary-btn:before {
    background: var(--primary-color);
    left: 100%;
}

.primary-btn:hover {
    color: var(--primary-color);
}

.primary-btn:hover:before {
    left: 0;
}

.secondary-btn:hover {
    color: white;
}

.secondary-btn:hover:before {
    left: 0;
}


/* Contact Details Section */
.aktech-contact-section {
text-align: center;
padding: 30px 20px;
background: #fff;
}

.aktech-contact-section h1 {
font-size: 40px;
font-weight: bold;
color: #222;
}

.aktech-underline {
width: 80px;
height: 4px;
background: #30B4C8;
margin: 15px auto;
border-radius: 2px;
}

.aktech-contact-section p {
font-size: 22px;
color: #666;
max-width: 600px;
margin: 0 auto;
font-weight: bold;
}

/* Quick Contact Cards */
.aktech-quick-contact {
padding: 30px 5%;
background: #f9f9f9;
}

.aktech-contact-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 15px;
max-width: 1100px;
margin: 0 auto;
}

.aktech-contact-card {
background: #fff;
padding: 25px;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.aktech-contact-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.aktech-card-icon {
width: 65px;
height: 65px;
background: #30B4C8;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 15px;
}

.aktech-card-icon i {
color: white;
font-size: 26px;
}

.aktech-contact-card h3 {
font-size: 20px;
color: #333;
margin-bottom: 10px;
}

.aktech-contact-card p {
color: #30B4C8;
font-weight: bold;
font-size: 16px;
}

.aktech-card-detail {
color: #666;
font-size: 14px;
margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
.aktech-contact-section h1 {
font-size: 28px;
}

.aktech-contact-cards {
grid-template-columns: 1fr;
}
}


/* Quick Contact Cards */
.quick-contact {
padding: 80px 5%;
background: #f8f9fa;
}

.contact-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
max-width: 1200px;
margin: 0 auto;
}

.contact-card {
background: var(--card-bg);
padding: 30px;
border-radius: 15px;
text-align: center;
transition: var(--transition);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-icon {
width: 60px;
height: 60px;
background: var(--primary-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.card-icon i {
color: white;
font-size: 24px;
}

.contact-card h3 {
margin-bottom: 10px;
color: var(--text-color);
}

.contact-card p {
color: var(--primary-color);
font-weight: 500;
margin-bottom: 5px;
}

.card-detail {
color: #666;
font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes patternMove {
from {
background-position: 0 0;
}
to {
background-position: 40px 40px;
}
}



/* Contact Section */
.contact-section {
    padding: 10px 0 100px 0;
    background-color: var(--light-bg);
}

.contact-container {
    display: flex;
    gap: 40px;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-box {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-box h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-box p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: #f9f9f9;
    transition: var(--transition);
}

input:focus, textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(48, 180, 200, 0.2);
    outline: none;
}

textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(48, 180, 200, 0.3);
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: var(--border-radius);
    background: #f9f9f9;
    transition: var(--transition);
}

.contact-item:hover {
    background: #e6f7ff;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: rgba(48, 180, 200, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    text-align: left;
}

.contact-item a,
.contact-item span {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: none;
    text-align: left;
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}



  /* Location Section Heading Styles */
.location-section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #098a9e;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    text-transform: capitalize;
  }
  
  .location-section-heading::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #098a9e;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }



/* Center Align on Small Screens */
@media screen and (max-width: 768px) {
.form-contact-heading {
text-align: center;
}

.form-contact-heading::after {
left: 50%;
transform: translateX(-50%);
}
}


/* Responsive Design */
@media screen and (max-width: 768px) {
.form-contact-container {
grid-template-columns: 1fr;
gap: 2rem;
}

.form-contact-content {
text-align: center;
}

.form-row {
flex-direction: column;
}

.form-contact-form-container {
padding: 2rem;
}
}


/* Map Section */
.map-section {
    height: 500px;
}


.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}



/* Footer */
.footer {
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-about p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(48, 180, 200, 0.3);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-link:before {
    content: "→";
    color: var(--primary-color);
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-link:hover:before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info-item i {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.newsletter-input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.newsletter-button {
    padding: 12px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(48, 180, 200, 0.3);
}

.back-to-top i {
    font-size: 1.2rem;
}




/* Responsive Design */
@media screen and (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-container {
        flex-direction: column;
    }

    .about-image, .about-content {
        text-align: center;
    }

    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    nav {
        padding: 15px;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        max-height: 500px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        padding: 15px;
        display: block;
        border-bottom: 1px solid #eee;
    }

    .dropdown-content {
        position: static;
        background: #f9f9f9;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown.active .dropdown-content {
        max-height: 300px;
    }

    .dropdown-toggle::after {
        float: right;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .contact-container {
        flex-direction: column;
    }

    .form-group {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .tagline, .description-title {
        font-size: 1.3rem;
    }

    .description {
        font-size: 1rem;
    }
}

