@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    max-width: 100vw;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 25px;
}

h4 {
    font-size: 20px;
}

p {
    font-size: 18px;
    line-height: 1.6;
}

.container {
    width: 90%;
    margin: 0 auto;
}

nav.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.15);
    z-index: 100;
    top: 0;
}

nav.header img {
    width: 170px;
    height: auto;
}

nav.header ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
    text-transform: uppercase;
}

nav.header ul li a{
    text-decoration: none;
    font-weight: 600;
    color: black;
    letter-spacing: .6px;
    transition: .3s ease-in;
}

nav.header ul li a.header-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 40px;
    background-color: #2a3990;
    color: white;
    border-radius: 20px;
}

nav.header ul li a:hover {
    color: #2a3990;
    font-size: 16.3px;
}

nav.header ul li a.header-button:hover {
    background-color: #1f2a6b;
    color: white;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 8px;
    padding: 8px 0;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: #333 !important;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f6fbfd;
    color: #2a3990 !important;
    font-size: 14px !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown > a::after {
    content: " ▼";
    font-size: 10px;
    margin-left: 5px;
}

/* Mobile Menu Button Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
    outline: none;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #1f2a6b;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(100vh - 114px);
    margin-top: 120px;
    gap: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 3rem;
}

.hero img.hero-image {
    width: 700px;
}


.hero .hero-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.hero .hero-row {
    display: flex;
    align-items: center;
    gap: 12%;
}

.hero h2 {
    font-size: 45px;
    color: #2a3990;
}

.hero h3 {
    font-size: 25px;
    font-weight: 400;
}

.hero h3 b {
    font-weight: 700;
    color: #2a3990;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-buttons a:last-child {
    background-color: white !important;
    color: #2a3990 !important;
    border: 2px solid #2a3990 !important;
}

.hero-buttons a:last-child:hover {
    background-color: #2a3990 !important;
    color: white !important;
}

.hero a.hero-button {
    display: flex;
    height: 50px;
    width: 250px;
    justify-content: center;
    align-items: center;
    background-color: #2a3990;
    color: white;
    border-radius: 30px;
    font-weight: 500;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero a.hero-button:hover {
    background-color: #1f2a6b;
}

/* Scroll Indicator Styles */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    padding-bottom: 30px;
}

.scroll-indicator:hover {
    opacity: 0.7;
}

.scroll-text {
    color: #2a3990;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 5px;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid #2a3990;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    color: #2a3990;
    font-size: 16px;
    animation: arrow-move 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes arrow-move {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

.about-us {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: #f6fbfd;
    padding: 3rem 5%;
}

.about-us h2 b {
    color: #2a3990;
}

.about-us-row {
    display: flex;
    gap: 3rem;
}

.about-us img {
    width: 350px;
}

.about-us-box {
    flex: 1;
    padding: 20px 40px;
    border-radius: 10px;
}

.about-us-box.misyon {
    background-color: #b7ccd4;
}

.about-us-box.vizyon {
    background-color: #d8e4e4;
}

.services {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 10rem 0;
}

.services > p {
    max-width: 70%;
}

.service-item {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 20px;
    width: 500px;
    box-sizing: border-box;
}

.service-item h3 {
    margin-bottom: 20px;
}

.service-item i {
    margin-right: 10px;
}

.service-item.denizyolu {
    background-color: #f6fbfd;
}

.service-item.denizyolu b {
    color: #00ccff;
}

.service-item.havayolu {
    background-color: #d8e4e4;
}

.service-item.havayolu b {
    color: #347a7a;
}   

.service-item.karayolu {
    background-color: #ffe9d7;
}

.service-item.karayolu b {
    color: #bd6b28;
}

.service-item.demiryolu {
    background-color: #e8e3f6 ;
}

.service-item.demiryolu b {
    color: #6A55A1; 
}


.service-item.lojistik {
    background-color: #f1f5e6;
}

.service-item.lojistik b {
    color: #4a7c4a;
}

/* Service Page Styles */
.service-page {
    padding-top: 100px;
    min-height: 100vh;
}

.service-header {
    background: linear-gradient(135deg, #e6eaf7 0%, #d1daf2 100%);
    padding: 4rem 3rem;
    margin: 4rem 0;
    border-radius: 15px;
}

.service-header-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.service-header-text {
    flex: 2;
}

.service-header-text h1 {
    font-size: 3rem;
    color: #1f2a6b;
    margin-bottom: 1rem;
}

.service-header-text h1 i {
    margin-right: 15px;
}

.service-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.service-header-image {
    flex: 1;
    text-align: center;
}

.service-header-image i {
    font-size: 8rem;
    color: #1f2a6b;
    opacity: 0.3;
}

.service-features {
    margin-bottom: 4rem;
}

.service-features h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2a6b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: #1f2a6b;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.service-details {
    margin-bottom: 4rem;
}

.service-details-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-info h2 {
    color: #1f2a6b;
    margin-bottom: 2rem;
}

.info-section {
    margin-bottom: 2rem;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

.info-section h3 {
    color: #1f2a6b;
    margin-bottom: 1rem;
}

.info-section h3 i {
    margin-right: 10px;
}

.info-section ul {
    list-style: none;
    padding: 0;
}

.info-section li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.info-section li:last-child {
    border-bottom: none;
}

.service-stats {
    background: #1f2a6b;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
}

.service-stats h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.service-process {
    margin-bottom: 4rem;
}

.service-process h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2a6b;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #1f2a6b;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    line-height: 1.5;
}

.cta-section {
    background-color: #f6fbfd;
    padding: 2.5rem 0;
    margin: 3rem 0;
    border-radius: 15px;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 0.5rem;
    color: #1f2a6b;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0;
    color: #000;
    max-width: 70%;
}

.cta-text {
    flex: 1;
    text-align: left;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.cta-button.primary {
    background-color: #1f2a6b;
    color: white;
    box-shadow: 0 2px 4px rgba(52, 122, 122, 0.2);
}

.cta-button.primary:hover {
    background-color: #1f2a6b;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(52, 122, 122, 0.3);
}

.cta-button.secondary {
    background-color: white;
    color: #1f2a6b;
    border: 1px solid #1f2a6b;
}

.cta-button.secondary:hover {
    background-color: #f6fbfd;
    color: #1f2a6b;
    transform: translateY(-1px);
}

footer {
    display: flex;
    justify-content: space-between;
    padding-bottom: 2rem;
}

footer img {
    width: 200px;
}

footer .column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 20%;
}

footer .column ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    list-style: none;
    padding: 0;
}

footer .column ul li a{
    text-decoration: none;
    color: black;
}

footer ul.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer ul.footer-links li {
    list-style: none;
}

footer ul.footer-links li a {
    text-decoration: none;
    color: black;
}

iframe.footer-map {
    width: 40%;
    border-radius: 20px;
}

.author {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.author a {
    color: #1f2a6b;
    text-decoration: none;
}

.author a:hover {
    text-decoration: underline;
}

/* Common Page Styles */
.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    color: #1f2a6b;
    font-size: 42px;
    margin-bottom: 20px;
}

.page-header p {
    color: #666;
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Common Hover Effects */
.hover-lift-small {
    transition: transform 0.3s ease;
}

.hover-lift-small:hover {
    transform: translateY(-5px);
}

.hover-lift-medium {
    transition: transform 0.3s ease;
}

.hover-lift-medium:hover {
    transform: translateY(-8px);
}

.hover-lift-subtle {
    transition: all 0.3s ease;
}

.hover-lift-subtle:hover {
    transform: translateY(-2px);
}

/* Common Card Styles */
.card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card-hover {
    border: 2px solid transparent;
}

.card-hover:hover {
    border-color: #1f2a6b;
    box-shadow: 0 15px 40px rgba(31, 42, 107, 0.15);
}

/* Common Icon Styles */
.primary-gradient {
    background: linear-gradient(135deg, #1f2a6b 0%, #2a3990 100%);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-circle i {
    font-size: 32px;
    color: white;
}

.icon-circle-small {
    width: 60px;
    height: 60px;
}

.icon-circle-small i {
    font-size: 24px;
}

.icon-circle-large {
    width: 100px;
    height: 100px;
}

.icon-circle-large i {
    font-size: 40px;
}

.icon-circle-medium {
    width: 70px;
    height: 70px;
}

.icon-circle-medium i {
    font-size: 28px;
}



/* Contact Page Styles */
.contact-page {
    padding-top: 120px;
    padding-bottom: 80px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #1f2a6b;
    margin-bottom: 30px;
    font-size: 32px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1f2a6b;
}

.submit-btn {
    background: linear-gradient(135deg, #1f2a6b 0%, #2a3990 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 42, 107, 0.3);
}

.contact-info-grid {
    display: grid;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1f2a6b 0%, #2a3990 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-details h4 {
    color: #1f2a6b;
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-details p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.quick-contact {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.quick-contact h3 {
    color: #1f2a6b;
    margin-bottom: 20px;
    text-align: center;
}

.quick-buttons {
    display: grid;
    gap: 15px;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    color: #1f2a6b;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.quick-btn:hover {
    background: #1f2a6b;
    color: white;
    transform: translateY(-2px);
}

.quick-btn.whatsapp:hover {
    background: #25d366;
}

.map-section {
    margin-top: 40px;
}

.map-section h3 {
    color: #1f2a6b;
    margin-bottom: 20px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Sectors Page Styles */
.sectors-page {
    padding-top: 120px;
    padding-bottom: 80px;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px 0 80px;
}

.sector-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sector-card:hover {
    transform: translateY(-8px);
    border-color: #1f2a6b;
    box-shadow: 0 20px 50px rgba(31, 42, 107, 0.15);
}

.sector-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1f2a6b 0%, #2a3990 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.sector-icon i {
    font-size: 32px;
    color: white;
}

.sector-card h3 {
    color: #1f2a6b;
    margin-bottom: 20px;
    font-size: 26px;
}

.sector-card > p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.sector-features {
    list-style: none;
    margin-bottom: 30px;
}

.sector-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #666;
}

.sector-features li i {
    color: #1f2a6b;
    font-size: 14px;
}

.sector-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #f8f9fa;
}

.stat {
    text-align: center;
}

.sectors-page .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #1f2a6b;
    margin-bottom: 5px;
}

.sectors-page .stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-choose-sectors {
    margin: 80px 0;
}

.why-choose-sectors h2 {
    text-align: center;
    color: #1f2a6b;
    margin-bottom: 60px;
    font-size: 42px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1f2a6b 0%, #2a3990 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 28px;
    color: white;
}

.benefit-item h4 {
    color: #1f2a6b;
    margin-bottom: 15px;
    font-size: 20px;
}

.benefit-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Scroll indicator responsive styles */
    .scroll-indicator {
        padding-bottom: 20px;
    }

    .scroll-text {
        font-size: 12px;
    }

    .scroll-arrow {
        width: 35px;
        height: 35px;
    }

    .scroll-arrow i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .sector-card {
        padding: 25px;
    }
}

.about-us-page {
    padding-top: 100px;
    padding-bottom: 80px;
}

.about-us-page-who {
    display: flex;
    flex-direction: column;
}

.about-us-page-who .row {
    justify-content: space-between;
    align-items: center;
    display: flex;
    gap: 10%;
}

.about-us-page-who img {
    width: 700px;
}

.about-us-page-mv {
    display: flex;
    justify-content: space-between;
    gap: 5%;
    margin-top: 5rem;
}

.about-us-page-mv .box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 20px;
    padding: 20px;
}

.sertificates {
    display: flex;
    flex-direction: column;
    margin: 5rem 0;
    gap: 2rem
}

.sertificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sertificates .sertificate {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 1rem;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.sertificates .sertificate:hover {
    transform: translateY(-5px);
}

.sertificate-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1f2a6b 0%, #2a3990 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sertificate-icon i {
    font-size: 28px;
    color: white;
}

.sertificates .sertificate h3 {
    color: #1f2a6b;
}

.sertificates .sertificate p {
    margin-bottom: 4rem;
}

.sertificates .sertificate a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s ease;
    background-color: #1f2a6b;
    padding: 10px 15px;
    border-radius: 20px;
    width: 90%;
    position: absolute;
    bottom: 20px;
}

.sertificates .sertificate a:hover {
    color: #f6fbfd;
    background-color: #2a3990;
}



/* Responsive Design */

/* Hero Responsive Styles */

@media screen and (max-width: 1680px) {
    .hero h2 {
        font-size: 42px;
    }

    .hero img.hero-image {
        width: 100%;
        max-width: 650px;
    }
}

@media screen and (max-width: 1560px) {
    .hero img.hero-image {
        max-width: 600px !important;
    }
}

@media screen and (max-width: 1500px) {
    .hero h2 {
        font-size: 40px;
    }

    .hero h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 1460px) {
    .hero img.hero-image {
        max-width: 550px !important;
    }
}
 
@media screen and (max-width: 1400px) {
    .hero h2 {
        font-size: 35px;
    }

    .hero h3 {
        font-size: 18px;
    }

    a.hero-button {
        width: 220px !important;
        font-size: 18px !important;
    }
}

@media screen and (max-width: 1310px) {
    .hero img.hero-image {
        max-width: 500px !important;
    }
}

@media screen and (max-width: 1250px) {
    .hero {
        overflow: hidden;
    }

    .hero h2 {
        font-size: 32px;
    }
} 

@media screen and (max-width: 900px) {

    .hero h2 {
        font-size: 35px;
    }

    .hero h3 {
        font-size: 20px;
    }

    .hero .hero-col {
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-row {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

}

@media screen and (max-width: 550px) {
    .hero h2 {
        font-size: 30px;
    }

    .hero h3 {
        font-size: 18px;
    }

}

@media screen and (max-width: 550px) {
    .hero h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 510px) {
    .hero a.hero-button {
        width: 180px !important;
        font-size: 16px !important;
    }
}

@media screen and (max-width: 450px) {
    .hero h2 {
        font-size: 26px;
    }
}




/* Home Page About Us Responsive Styles */

@media screen and (max-width: 1000px) {
    .about-us img {
        display: none;
    }
}

/* Home Page Services Responsive Styles */

@media screen and (max-width: 1200px) {
    .services >p {
        max-width: 100%;
    }
}

@media screen and (max-width: 620px) {
    .service-item {
        width: 400px;
    }

    p.service-slogan {
        font-size: 15.5px;
    }
}

@media screen and (max-width: 520px) {
    .service-item {
        width: 310px;
    }

    .service-item h3 {
        font-size: 20px;
    }

    p.service-slogan {
        font-size: 11px;
        margin-bottom: 10px
    }
}

/* CTA Styles */

@media screen and (max-width: 900px) {
    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-content p {
        max-width: 100%;
    }
}

/* Footer Styles */

@media screen and (max-width: 1100px) {
    footer {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
    }

    footer .column {
        max-width: 40%;
    }

    iframe.footer-map {
        width: 100%;
        height: 300px;
    }
}

@media screen and (max-width: 670px) {
    footer {
        justify-content: flex-start;
        gap: 2rem;
    }

    footer .column {
        max-width: 100%;
    }

    ul.footer-links {
        display: none;
    }

    .author {
        flex-direction: column;
    }
}

/* About Us Page Responsive Styles */

@media screen and (max-width: 1600px) {
    .about-us-page-who .row img {
        width: 600px;
    }
}

@media screen and (max-width: 1400px) {
    .about-us-page-who .row img {
        width: 500px;
    }

    .sertificates-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

@media screen and (max-width: 1200px) {
    .about-us-page-who .row img {
        display: none;
    }
}

@media screen and (max-width: 940px) {
    .about-us-page-mv {
        flex-direction: column;
        gap: 2rem;
    }
}

@media screen and (max-width: 800px) {
    .sertificates-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}

    


/* Service Page Responsive Styles */

@media screen and (max-width: 650px) {
    .service-header {
        position: relative;
    }
    .service-header-image {
        position: absolute;
        top: 0;
        right: 0;
        padding: 20px;
    }

    .service-header-image i {
        opacity: 0.2
         !important;
    }

    .service-details-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 500px) {
    .service-header {
        padding: 3rem 2rem;
    }
}

@media screen and (max-width: 450px) {
    .service-header-text h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 400px) {
    .service-header-text h1 i {
        margin-right: 0;
    }

    .service-header-text h1 {
        font-size: 2.2rem;
        line-height: 40px;
    }
}


/* Mobile Menu Styles */

@media screen and (max-width: 1200px) {
    .mobile-menu-btn {
        display: flex !important;
    }

    nav.header img {
        width: 120px;
    }

    /* Hide desktop navigation items except mobile menu button */
    nav.header ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 20px;
    }

    nav.header ul.active {
        right: 0;
    }

    nav.header ul li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    nav.header ul li:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    nav.header ul li a {
        font-size: 16px;
        padding: 10px 0;
        display: block;
        width: 100%;
    }

    nav.header ul li a.header-button {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    /* Mobile dropdown styles */
    .dropdown {
        position: relative !important;
        width: 100% !important;
    }

    .dropdown > a {
        cursor: pointer !important;
        user-select: none !important;

    }

    /* Dropdown adjustments for mobile */
    .dropdown-content {
        position: static !important;
        display: none !important;
        box-shadow: none !important;
        min-width: auto !important;
        padding-left: 10px;
    }

    .dropdown-content a {
        font-size: 15px !important;
        background-color: white !important;
        padding: 15px 12px !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }

    .dropdown-content a:last-child {
        border-bottom: none !important;
    }

    .dropdown.active .dropdown-content {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown > a::after {
        float: right !important;
        transition: transform 0.3s ease !important;
        content: " ▼" !important;
        font-size: 10px !important;
        margin-left: 5px !important;
    }

    .dropdown.active > a::after {
        transform: rotate(180deg) !important;
    }

    /* Mobile dropdown content links */

    .dropdown-content a:hover {
        background-color: #e9ecef !important;
        color: #1f2a6b !important;
    }

    /* Disable desktop hover behavior on mobile */
    .dropdown:hover .dropdown-content {
        display: none !important;
    }

    /* Override hover behavior for active dropdowns on mobile */
    .dropdown.active:hover .dropdown-content {
        display: block !important;
    }
}

/* Cloudflare Turnstile Styles */
.cf-turnstile {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

/* Contact Form Loading States */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form validation styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #dc3545;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #28a745;
}

/* Success message styling */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    margin: 15px 0;
    text-align: center;
}

/* Error message styling */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    margin: 15px 0;
    text-align: center;
}

