:root {
    --primary-color: #001f3f;
    --secondary-color: #00d2ff;
    --text-color: #333;
    --white: #ffffff;
    --light-bg: #f4f7f6;
    --gradient-hero: linear-gradient(135deg, #000428 0%, #004e92 100%);
    --gradient-expertise: radial-gradient(circle, #001f3f 0%, #000a1a 100%);
    --gradient-testimonial: linear-gradient(to right, #11998e, #38ef7d);
}

.poppins-thin {
  font-family: "Poppins thin", sans-serif ;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins extralight", sans-serif ;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins light", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins regular", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins regular", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins semibold", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins bold", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins extrabold", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins black", sans-serif;
  font-weight: 900;
  font-style: normal;
}
 

* {font-family: "Poppins light", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.footer-links-row > span > a{ font-size: 16px;    text-decoration: none;
    color: #000; }

.baslik{font-weight: 900; font-size: 18px;}

.h1slider{color: #17e3fd;}

.alanlar {font-size: 22px;}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {font-family: "Poppins extrabold", sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.section-title.white {
    color: var(--white);
}

/* Header */
header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px; font-family: "noto900;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a.active, nav ul li a:hover {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    color: var(--white);
}

.hero-swiper {
    height: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center; 
}

.hero-content {
    max-width: 1230px;line-height: initial; margin: 0px 0px 0px 260px; !important;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;line-height: 48px;
    font-family: "Poppins bold", sans-serif;
}

.hero-content h2 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;font-family: "Poppins semibold", sans-serif;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9; font-family: "Poppins light", sans-serif;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--white);
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

/* Welcome Section */
.welcome-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.welcome-block.reverse {
    direction: rtl;
}

.welcome-text-full{ width: 100%; }

.welcome-block.reverse .welcome-text {
    direction: ltr;
}

.welcome-block-full{width: 100%;}

.welcome-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Expertise Section */
.expertise {
    background-image: url(images/bg.jpg) ;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.expertise-card {
    background: var(--white);
    color: var(--primary-color);
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    transition: transform 0.3s;
}

.expertise-card:hover {
    transform: translateY(-10px);
}

.expertise-card i {
    font-size: 3rem;
    color: #294b74;
    margin-bottom: 20px;
}

.expertise-card h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* AI Assistant Section */
.ai-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ai-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.ai-image img {
    width: 100%;
    border-radius: 10px;
}

/* Testimonials Section */
.testimonials {
    background: url(../images/bg2.jpg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.testimonial-card h4 {
    margin-top: 20px;
    color: var(--primary-color);
}

.testimonial-card span {
    font-size: 0.9rem;
    color: #777;
}

/* Footer */
footer {
    background: #fff;
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 0.9rem;
}

.footer-links-row {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .welcome-block, .ai-container, .expertise-grid, .testimonial-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-block.reverse {
        direction: ltr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content {
    max-width: 1230px;line-height: initial; margin: 0px; ;
}
}







 
 
 

 

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--white);
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

 

/* Expertise Section */
.expertise {
    background: url(../images/bg.jpg);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.expertise-card {
    background: var(--white);
    color: var(--primary-color);
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    transition: transform 0.3s;
}

.expertise-card:hover {
    transform: translateY(-10px);
}

.expertise-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.expertise-card h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* AI Assistant Section */
.ai-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ai-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.ai-image img {
    width: 100%;
    border-radius: 10px;
}

 

 

/* New Pages Styles */
.page-hero {
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

.product-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--primary-color);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--secondary-color);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.map-placeholder img {
    width: 100%;
    border-radius: 10px;
    margin-top: 20px;
}

