:root {
    --primary: #ADD8E6;
    --primary-dark: #7FB3D5;
    --secondary: #2C3E50;
    --accent: #3498DB;
    --text: #333;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #28a745;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f8f9fa;
    color: var(--text);
    overflow-x: hidden;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-50 {
    margin-top: 50px;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-dark);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}


/* Logo container */
.logo,
.logo-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  line-height: 0;
}



/* Logo image – bigger but responsive */
.responsive-logo {
  max-height: 70px;     /* BIGGER size */
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Sticky navbar adjustment */
.navbar.sticky .responsive-logo {
  max-height: 60px;
}

/* Tablet */
@media (max-width: 992px) {
  .responsive-logo {
    max-height: 60px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .responsive-logo {
    max-height: 50px;
  }
}








/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: 0.5s;
}

.navbar.sticky {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--secondary);
}

.logo-icon {
    margin-right: 10px;
    font-size: 2rem;
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-dark);
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    transition: 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(173, 216, 230, 0.1);
    color: var(--primary-dark);
}

.dropdown-menu a::after {
    display: none;
}

.menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text);
}

.hero-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
    top: -200px;
    left: -100px;
}

.hero-shape:nth-child(2) {
    bottom: -200px;
    right: -100px;
    animation-delay: 2s;
}

.hero-3d {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Section Styles */
.section {
    padding: 100px 50px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--primary);
    left: 25%;
    bottom: -10px;
}

.section-title p {
    color: var(--text);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-shape {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--primary);
    border-radius: 50%;
    z-index: -1;
}

.about-shape:nth-child(1) {
    top: -20px;
    left: -20px;
}

.about-shape:nth-child(2) {
    bottom: -20px;
    right: -20px;
    background: var(--accent);
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    transition: 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--accent);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-desc {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Projects Section */
.projects-section {
    background: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    overflow: hidden;
    height: 100%;
}

.project-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.project-info p {
    color: var(--text);
    margin-bottom: 10px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tags span {
    background: rgba(173, 216, 230, 0.2);
    color: var(--primary-dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
}

.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-container {
    display: flex;
    overflow: hidden;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    transition: 0.5s;
}

.testimonial-content {
    margin-bottom: 30px;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.author-info p {
    color: var(--text);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.slider-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
    transition: 0.3s;
}

.slider-btn:hover {
    color: var(--primary-dark);
}

.slider-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--primary-dark);
}

/* Team Section */
.team-section {
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    overflow: hidden;
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.5s;
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.6);
    transition: 0.3s;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    color: var(--secondary);
    font-size: 1rem;
    transition: 0.3s;
}

.team-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.team-info p {
    color: var(--text);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 50px;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: white;
    padding: 60px 50px 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-col p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a, .footer-col a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover, .footer-col a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-5px);
}

.newsletter {
    margin-top: 20px;
}

.newsletter h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    height: 45px;
}

.newsletter-form input {
    flex: 1;
    padding: 0 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 0.9rem;
}

.newsletter-form button {
    width: 45px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.footer-bottom-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

/* 3D Animation Styles */
.scene {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    perspective: 1000px;
    overflow: hidden;
}

.cube {
    position: absolute;
    width: 150px;
    height: 150px;
    transform-style: preserve-3d;
    animation: rotate 20s infinite linear;
}

.cube-1 {
    top: 20%;
    left: 15%;
}

.cube-2 {
    top: 60%;
    right: 15%;
    animation-duration: 25s;
    animation-direction: reverse;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(173, 216, 230, 0.2);
    border: 1px solid rgba(173, 216, 230, 0.5);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(173, 216, 230, 0.3);
}

.cube-face-front {
    transform: translateZ(75px);
}

.cube-face-back {
    transform: rotateY(180deg) translateZ(75px);
}

.cube-face-right {
    transform: rotateY(90deg) translateZ(75px);
}

.cube-face-left {
    transform: rotateY(-90deg) translateZ(75px);
}

.cube-face-top {
    transform: rotateX(90deg) translateZ(75px);
}

.cube-face-bottom {
    transform: rotateX(-90deg) translateZ(75px);
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 30%;
    animation-delay: 2s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 40%;
    animation-delay: 3s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--secondary);
    animation: float 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

/* Service Detail Page */
.service-detail {
    padding: 150px 50px 100px;
}

.service-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-header h1 {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text);
}

.service-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.service-main {
    flex: 2;
    min-width: 300px;
}

.service-sidebar {
    flex: 1;
    min-width: 300px;
}

.service-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.service-image img {
    width: 100%;
    height: auto;
}

.service-text h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-text ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-cta {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.service-cta h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-cta p {
    margin-bottom: 20px;
}

.service-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.service-info h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-right: 15px;
    min-width: 30px;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.service-features {
    margin-top: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.feature-desc {
    line-height: 1.6;
}

.service-process {
    margin-top: 50px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.step-desc {
    line-height: 1.6;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 45px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--primary);
    z-index: -1;
}

.process-step:last-child::after {
    display: none;
}

/* Project Detail Page */
.project-detail {
    padding: 150px 50px 100px;
}

.project-header {
    text-align: center;
    margin-bottom: 50px;
}

.project-header h1 {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.project-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
}

.meta-icon {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-right: 10px;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.project-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.project-main {
    flex: 2;
    min-width: 300px;
}

.project-sidebar {
    flex: 1;
    min-width: 300px;
}

.project-text h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.project-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.project-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.project-info h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--secondary);
}

.project-video {
    margin-top: 50px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Team Page */
.team-detail {
    padding: 150px 50px 100px;
}

.team-member-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.member-image {
    flex: 1;
    min-width: 300px;
}

.member-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.member-info {
    flex: 2;
    min-width: 300px;
}

.member-info h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.member-position {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.member-bio {
    margin-bottom: 30px;
    line-height: 1.8;
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-dark);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
}

.member-social a:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.member-skills {
    margin-top: 30px;
}

.member-skills h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.skill-item {
    margin-bottom: 15px;
}

.skill-name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.skill-bar {
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--primary-dark);
    border-radius: 5px;
}

/* Contact Page */
.contact-page {
    padding: 150px 50px 100px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-info-container {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(173, 216, 230, 0.3);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-right: 15px;
    min-width: 30px;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.contact-text p, .contact-text a {
    color: var(--text);
    text-decoration: none;
    transition: 0.3s;
}

.contact-text a:hover {
    color: var(--primary-dark);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar {
        padding: 15px 30px;
    }
    .navbar.sticky {
        padding: 10px 30px;
    }
    .section {
        padding: 80px 30px;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .process-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    .navbar.sticky {
        padding: 10px 20px;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        margin: 15px 0;
    }
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-top: 10px;
        display: none;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
    .menu-btn {
        display: block;
        z-index: 1002;
    }
    .section {
        padding: 60px 20px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .about-content, .contact-container, .service-content, .project-content, .team-member-detail {
        flex-direction: column;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .btn {
        padding: 10px 25px;
    }
    .testimonial-card {
        padding: 30px 20px;
    }
}