/*==================================================
  GAZİANTEP YÜKSELİŞ KOLEJLERİ
  COLOR SYSTEM
==================================================*/

:root{

    /*==============================
      PRIMARY COLORS
    ==============================*/
    --primary: #1F1E58;
    --primary-hover: #171644;
    --primary-light: #35347A;
    --primary-soft: #F1F3FF;

    /*==============================
      SECONDARY COLORS
    ==============================*/
    --secondary: #F4D53A;
    --secondary-hover: #DDBA18;
    --secondary-light: #FFF8D6;

    /*==============================
      ACCENT
    ==============================*/
    --accent: #E31D2D;
    --accent-hover: #C81422;
    --accent-light: #FFECEE;

    /*==============================
      TEXT
    ==============================*/
    --text: #222222;
    --text-light: #666666;
    --text-muted: #8A8A8A;
    --text-white: #FFFFFF;

    /*==============================
      BACKGROUND
    ==============================*/
    --body: #F6F8FC;
    --white: #FFFFFF;
    --section: #FFFFFF;
    --section-light: #F9FAFD;

    /*==============================
      BORDER
    ==============================*/
    --border: #E4E9F2;
    --border-dark: #D6DCE7;

    /*==============================
      STATUS
    ==============================*/
    --success: #27AE60;
    --warning: #F39C12;
    --danger: #E74C3C;
    --info: #3498DB;

    /*==============================
      SHADOW
    ==============================*/
    --shadow-xs: 0 2px 6px rgba(31,30,88,.05);
    --shadow-sm: 0 6px 18px rgba(31,30,88,.08);
    --shadow: 0 12px 35px rgba(31,30,88,.12);
    --shadow-lg: 0 25px 60px rgba(31,30,88,.18);

    /*==============================
      RADIUS
    ==============================*/
    --radius-xs:6px;
    --radius-sm:10px;
    --radius:14px;
    --radius-lg:20px;
    --radius-xl:30px;

    /*==============================
      TRANSITION
    ==============================*/
    --transition:.30s ease;

    /*==============================
      GRADIENTS
    ==============================*/
    --gradient-primary: linear-gradient(135deg,#1F1E58,#34347A);

    --gradient-secondary: linear-gradient(135deg,#F4D53A,#E7BE16);

    --gradient-accent: linear-gradient(135deg,#E31D2D,#C81422);

    --gradient-hero: linear-gradient(135deg,#1F1E58 0%,#2C2B70 55%,#35347A 100%);

}

/*==================================================
  GLOBAL
==================================================*/

body{

    background:var(--primary);
    font-family:'Montserrat',sans-serif;
    color:#fff;
    overflow-x:hidden;

}

a{
    color:var(--primary);
    transition:var(--transition);
}

a:hover{
    color:var(--accent);
    text-decoration:none;
}

h1,h2,h3,h4,h5,h6{
    color:var(--primary);
    font-weight:700;
}

p{
    color:var(--text-light);
}

/*==================================================
  BUTTONS
==================================================*/

.btn-primary{
    background:var(--primary);
    border:1px solid var(--primary);
    color:#fff;
}

.btn-primary:hover{
    background:var(--primary-hover);
    border-color:var(--primary-hover);
}

.btn-secondary{
    background:var(--secondary);
    border:1px solid var(--secondary);
    color:var(--primary);
    font-weight:600;
}

.btn-secondary:hover{
    background:var(--secondary-hover);
    border-color:var(--secondary-hover);
}

.btn-danger{
    background:var(--accent);
    border:1px solid var(--accent);
    color:#fff;
}

.btn-danger:hover{
    background:var(--accent-hover);
}

/*==================================================
  CARDS
==================================================*/

.card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
    border-color:var(--secondary);
}

/*==================================================
  SECTIONS
==================================================*/

.section-white{
    background:#fff;
}

.section-light{
    background:var(--section-light);
}

.section-primary{
    background:var(--gradient-primary);
    color:#fff;
}

.section-primary h1,
.section-primary h2,
.section-primary h3,
.section-primary h4,
.section-primary h5,
.section-primary h6,
.section-primary p{
    color:#fff;
}

/*==================================================
  BADGES
==================================================*/

.badge-primary{
    background:var(--primary);
    color:#fff;
}

.badge-secondary{
    background:var(--secondary);
    color:var(--primary);
}

.badge-danger{
    background:var(--accent);
    color:#fff;
}

/*==================================================
  FORM
==================================================*/

.form-control{
    border:1px solid var(--border);
    border-radius:10px;
    box-shadow:none;
}

.form-control:focus{
    border-color:var(--secondary);
    box-shadow:0 0 0 .2rem rgba(244,213,58,.18);
}

/*==================================================
  SELECTION
==================================================*/

::selection{
    background:var(--primary);
    color:#fff;
}



/*==========================
    HEADER
===========================*/

.header-area{

    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    padding:18px 0;

}

.header-area .navbar{

    padding:0;

}

.navbar-brand{

    padding:0;

}

.navbar-brand img{

    height:120px;
    transition:.3s;

}

.navbar-nav{

    gap:14px;

}

.navbar-nav .nav-link{

    color:#fff;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.4px;
    padding:12px 10px !important;
    transition:.30s;

}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{

    color:var(--secondary);

}

.header-right{

    display:flex;
    align-items:center;
    gap:15px;

}

.header-search{

    width:46px;
    height:46px;
    border:1px solid rgba(255,255,255,.20);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    transition:.30s;
    text-decoration:none;

}

.header-search:hover{

    background:var(--secondary);
    color:var(--primary);
    border-color:var(--secondary);

}

/*==========================
    MOBILE
===========================*/

@media (max-width:991px){

    .header-area{

        position:relative;
        background:var(--primary);

    }

    .navbar-collapse{

        margin-top:20px;
        background:rgba(255,255,255,.08);
        border-radius:12px;
        padding:20px;

    }

    .navbar-nav{

        gap:0;

    }

    .navbar-nav .nav-link{

        padding:14px 0 !important;
        border-bottom:1px solid rgba(255,255,255,.08);

    }

    .header-right{

        margin-top:20px;
        justify-content:center;

    }

    .navbar-brand img{

        height:60px;

    }

}


/*=========================================
            HERO
==========================================*/

.hero-section{

    min-height:60vh;
    display:flex;
    align-items:center;
    padding:0px;
    position:relative;
    overflow:hidden;

}

/*======================
        SOL
=======================*/

.hero-content{

    position:relative;
    z-index:2;

}

.hero-subtitle{

    display:inline-block;
    font-size:34px;
    font-weight:700;
    color:#fff;
    margin-bottom:10px;
    letter-spacing:1px;

}

.hero-title{

    display:inline-block;
    font-size:108px;
    line-height:1;
    font-weight:900;
    color:#fff;
    background:var(--accent);
    padding:8px 24px 14px;
    margin-bottom:28px;

}

.hero-tag{

    display:inline-block;
    background:rgba(255,255,255,.25);
    backdrop-filter:blur(12px);
    color:#fff;
    padding:14px 26px;
    font-size:52px;
    font-style:italic;
    font-family:Georgia, serif;
    border-radius:8px;
    margin-bottom:30px;

}

.hero-text{

    color:rgba(255,255,255,.85);
    font-size:17px;
    line-height:1.9;
    max-width:500px;
    margin-bottom:35px;

}

.hero-buttons{

    display:flex;
    gap:15px;
    flex-wrap:wrap;

}

/*======================
        VIDEO
=======================*/

.hero-video{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    background:#000;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.hero-video::before{
    content:"";
    display:block;
    padding-top:56.25%;
}

.hero-video iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
}

/*======================
      RESPONSIVE
=======================*/

@media(max-width:991px){

    .hero-section{

        padding:120px 0 60px;
        text-align:center;

    }

    .hero-title{

        font-size:68px;

    }

    .hero-tag{

        font-size:34px;

    }

    .hero-text{

        margin:auto auto 30px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-video{

        margin-top:20px;

    }

}

@media(max-width:576px){

    .hero-title{

        font-size:52px;

    }

    .hero-subtitle{

        font-size:24px;

    }

    .hero-tag{

        font-size:26px;
        padding:10px 18px;

    }

}












/*==============================
        AKADEMİK
==============================*/

.academic-section{

    padding:110px 0;
    position:relative;

}

.section-title{

    margin-bottom:55px;

}

.section-title h2{

    color:#fff;
    font-size:54px;
    font-weight:800;
    letter-spacing:1px;

}

/*==============================*/

.academic-card{

    position:relative;
    display:block;
    overflow:hidden;
    border-radius:18px;
    height:560px;
    text-decoration:none;
    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.academic-card img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;

}

.academic-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(to top,
    rgba(0,0,0,.92),
    rgba(0,0,0,.35) 55%,
    rgba(0,0,0,.08));

    transition:.5s;

}

/*==============================*/

.academic-content{

    position:absolute;
    left:35px;
    right:35px;
    bottom:35px;
    color:#fff;
    z-index:3;

}

.academic-content h3{

    color:#fff;
    font-size:34px;
    font-weight:800;
    font-style:italic;
    margin:0;
max-width: 150px;
    position:relative;

}

.academic-content h3::after{

    content:"";
    width:110px;
    height:7px;
    background:var(--accent);
    display:block;
    margin-top:10px;

}

.academic-hover{

    max-height:0;
    opacity:0;
    overflow:hidden;

    transition:.45s;

}

.academic-hover p{

    color:#fff;
    font-size:17px;
    line-height:1.8;

    margin:30px 0;

}

.academic-hover span{

    display:flex;
    align-items:center;
    justify-content:space-between;

    font-size:26px;
    font-style:italic;

    color:#fff;

}

.academic-hover i{

    width:58px;
    height:58px;

    background:var(--secondary);

    color:var(--primary);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;

}

/*==============================
        HOVER
==============================*/

.academic-card:hover img{

    transform:scale(1.08);

}

.academic-card:hover .academic-overlay{

    background:
    linear-gradient(to top,
    rgba(15,15,15,.95),
    rgba(15,15,15,.65),
    rgba(15,15,15,.35));

}

.academic-card:hover .academic-hover{

    max-height:250px;
    opacity:1;
    margin-top:28px;

}

.academic-card:hover{

    transform:translateY(-8px);

}

/*==============================*/

@media(max-width:991px){

    .academic-card{

        height:430px;

    }

    .academic-content h3{

        font-size:28px;

    }

}




/*=================================
        ABOUT
==================================*/

.about-section{

    position:relative;
    padding: 0;
    overflow:hidden;
    

}

/* Arka plan desenleri */

.about-section::before{

    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    top:-180px;
    right:-120px;

}

.about-section::after{

    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    bottom:-120px;
    left:-120px;

}

/*======================*/

.about-image{

    position:relative;
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 25px 70px rgba(0,0,0,.25);

}

.about-image img{

    width:100%;
    display:block;
    transition:.6s;

}

.about-image:hover img{

    transform:scale(1.06);

}

/*======================*/

.section-mini-title{

    color:var(--secondary);
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:18px;
    display:inline-block;

}

.about-content{

    position:relative;
    z-index:2;

}

.about-content h2{

    color:#fff;
    font-size:48px;
    font-weight:800;
    line-height:1.25;
    margin-bottom:25px;

}

.about-content h2 span{

    color:var(--secondary);

}

.about-content p{

    color:rgba(255,255,255,.82);
    line-height:1.9;
    font-size:17px;
    margin-bottom:20px;

}

/*======================*/

.about-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:35px 0;

}

.feature-item{

    display:flex;
    align-items:center;
    gap:12px;

    color:#fff;
    font-weight:600;

}

.feature-item i{

    color:var(--secondary);
    font-size:20px;

}




/*==================================
            GALLERY
==================================*/

.gallery-section{

    padding: 0;
    position:relative;

}

.gallery-section .section-title span{

    color:var(--secondary);
    font-weight:700;
    letter-spacing:3px;
    font-size:14px;

}

.gallery-section .section-title h2{

    color:#fff;
    font-size:48px;
    font-weight:800;
    margin:15px 0;

}

.gallery-section .section-title p{

    color:rgba(255,255,255,.70);
    max-width:700px;
    margin:auto;

}

/*==============================*/

.gallery-item{

    position:relative;
    display:block;
    overflow:hidden;
    border-radius:18px;
    text-decoration:none;

}

.gallery-item img{

    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.6s;

}

/*==============================*/

.gallery-overlay{

    position:absolute;
    inset:0;

    background:rgba(31,30,88,.75);

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;

    transition:.35s;

}

.gallery-overlay i{

    width:70px;
    height:70px;

    border-radius:50%;

    background:var(--secondary);

    color:var(--primary);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    transform:scale(.5);

    transition:.35s;

}

/*==============================*/

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-item:hover .gallery-overlay i{

    transform:scale(1);

}

/*==============================*/

@media(max-width:768px){

.gallery-item img{

    height:220px;

}

.gallery-section{

    padding:80px 0;

}

.gallery-section .section-title h2{

    font-size:36px;

}

}















/*======================================
            BASINDA BİZ
=======================================*/

.news-section{

    padding:120px 0;
    overflow:hidden;

}

.newsSwiper{

    overflow:visible;
    margin-top:60px;

}

/*-------------------------*/

.news-card{

    display:block;

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    text-decoration:none;

    transition:.45s;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.news-image{

    position:relative;

}

.news-image img{

    width:100%;
    height:320px;
    object-fit:cover;

}

.news-date{

    position:absolute;
    left:20px;
    top:20px;

    background:var(--accent);

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;
    font-weight:600;

}

.news-content{

    padding:28px;

}

.news-content h3{

    font-size:26px;

    color:var(--primary);

    margin-bottom:15px;

    font-weight:700;

}

.news-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}

.news-link{

    color:var(--accent);

    font-weight:700;

}

.news-link i{

    margin-left:8px;

}

/*-------------------------*/

.newsSwiper .swiper-slide{

    transform:scale(.78);

    opacity:.35;

    transition:.45s;

}

.newsSwiper .swiper-slide-prev,
.newsSwiper .swiper-slide-next{

    opacity:.65;

    transform:scale(.88);

}

.newsSwiper .swiper-slide-active{

    opacity:1;

    transform:scale(1);

    z-index:20;

}

/*-------------------------*/

.newsSwiper .swiper-pagination{

    margin-top:40px;
    position:relative;

}

.newsSwiper .swiper-pagination-bullet{

    width:12px;
    height:12px;

    background:#fff;

    opacity:.4;

}

.newsSwiper .swiper-pagination-bullet-active{

    opacity:1;

    background:var(--secondary);

}



/*==================================
            FOOTER
===================================*/

.footer{

    padding:90px 0 0;

    border-top:1px solid rgba(255,255,255,.08);

    background:rgba(0,0,0,.12);

}

.footer-logo{

    width:90px;

    margin-bottom:25px;

}

.footer-text{

    color:rgba(255,255,255,.70);

    line-height:1.9;

    margin-bottom:30px;

}

.footer h5{

    color:#fff;

    font-size:20px;

    margin-bottom:25px;

    font-weight:700;

}

.footer ul{

    list-style:none;

    margin:0;

    padding:0;

}

.footer ul li{

    margin-bottom:14px;

}

.footer ul li a{

    color:rgba(255,255,255,.70);

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:var(--secondary);

    padding-left:6px;

}

/*==============================*/

.footer-social{

    display:flex;

    gap:12px;

}

.footer-social a{

    width:44px;

    height:44px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--secondary);

    color:var(--primary);

    transform:translateY(-4px);

}

/*==============================*/

.footer-contact li{

    display:flex;

    gap:12px;

    color:rgba(255,255,255,.75);

    margin-bottom:18px;

}

.footer-contact i{

    color:var(--secondary);

    margin-top:3px;

}

/*==============================*/

.footer-bottom{

    margin-top:70px;

    padding:25px 0;

    border-top:1px solid rgba(255,255,255,.08);

    color:rgba(255,255,255,.60);

    font-size:15px;

}

.footer-bottom strong{

    color:var(--secondary);

}

/*==============================*/

@media(max-width:991px){

.footer{

    text-align:center;

}

.footer-social{

    justify-content:center;

}

.footer-contact li{

    justify-content:center;

}

.footer-bottom{

    text-align:center;

}

.footer-bottom .text-md-end{

    margin-top:10px;

    text-align:center !important;

}

}










