/*!
Theme Name: globalsecora
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: globalsecora
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

globalsecora is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
.contact-section .form-select option {
  color: black;
}
/* Tablet */
@media (max-width: 992px) {
  .nav-tabs .nav-link {
    padding: 8px 12px;
    font-size: 14px;
  }
	.hero-3 .hero-image img {
        margin-left: 0;
        width: 80%;
    }
	.hero-3 .hero-image {
		position: relative;
		text-align: center;
		padding: 15px;
	}
	.hero-2 {
		padding: 50px 0;
		position: relative;
		z-index: 9;
	}
}

/* Mobile */
@media (max-width: 576px) {
  .nav-tabs .nav-link {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }
	.hero-3 .hero-image img {
        margin-left: 0;
        width: 80%;
    }
	.hero-3 .hero-image {
		position: relative;
		text-align: center;
		padding: 15px;
	}
	.hero-3 .hero-content .hero-btn {
    	gap: 10px;
	}
	.hero-2 {
		padding: 50px 0;
		position: relative;
		z-index: 9;
	}
	.mv-wrapper::before{
		width:0;
	}
	.unique-section p {
		color: #cbd5e1;
		font-size: 16px;
	}
	
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
  }

  .about-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
  }

  .about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }

  .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .section-title p {
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5f5;
  }

  .highlight {
    color: #38bdf8;
    font-weight: 600;
  }

.project-box-items {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Content - 60% */
.project-box-items .content {
    flex: 0 0 60%;
    max-width: 60%;
}

/* Image - 40% */
.project-box-items .thumb {
    flex: 0 0 40%;
    max-width: 40%;
}

.project-box-items .thumb img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}


.post-content ul {
    list-style: disc !important;
    padding-left: 40px;
    margin-left: 0;
}

.post-content ul li {
    display: list-item;
    list-style: disc;
}

/* Responsive */
@media (max-width: 991px) {
    .project-box-items {
        flex-direction: column;
    }

    .project-box-items .content,
    .project-box-items .thumb {
        flex: 0 0 100%;
        max-width: 100%;
    }
}